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

:root {
  /* Color Scheme - Modern Dutch-inspired palette with professional touch */
  --color-primary: #1E5C97; /* Dutch blue - trustworthy, professional */
  --color-secondary: #FF6B35; /* Vibrant orange - energy, change */
  --color-tertiary: #2A9D8F; /* Teal - growth, transformation */
  --color-accent: #F9C80E; /* Warm yellow - optimism, clarity */
  --color-neutral: #F7F7F7; /* Light background */
  --color-neutral-dark: #E5E5E5; /* Darker background for contrast */
  --color-text: #2D3748; /* Main text color - dark blue-gray */
  --color-text-light: #718096; /* Secondary text color */
  --color-white: #FFFFFF;
  --color-black: #000000;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Font Sizes - Desktop */
  --fs-h1: 3.5rem;
  --fs-h2: 2.75rem;
  --fs-h3: 2.25rem;
  --fs-h4: 1.75rem;
  --fs-h5: 1.5rem;
  --fs-h6: 1.25rem;
  --fs-body: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  /* Line Heights */
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Section Padding */
  --section-padding-desktop: 100px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 60px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-neutral);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: var(--lh-heading);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

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

h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

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

small {
  font-size: var(--fs-small);
}

.text-highlight {
  color: var(--color-secondary);
  font-weight: 500;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

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

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

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

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

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

/* Card Styles */
.card {
  background-color: var(--color-white);
  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(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-xxl {
  margin-bottom: var(--space-xxl);
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.125rem;
    --fs-body: 1rem;
  }
  
  section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.125rem;
    --fs-body: 1rem;
  }
  
  section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  position: relative;
  z-index: 100;
}

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

/* Logo Styles */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  border-bottom: none;
  transition: transform var(--transition-normal);
}

.header__logo:hover {
  transform: translateY(-2px);
  border-bottom: none;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.header__logo-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 1;
}

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

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

.header__logo-tagline {
  color: var(--color-text-light);
  font-size: var(--fs-xs);
  font-weight: 400;
}

/* Navigation Styles */
.header__nav {
  display: flex;
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
  align-items: center;
}

.header__nav-item {
  position: relative;
}

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

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

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

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

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

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

.header__nav-link--cta {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.header__nav-link--cta:hover {
  background-color: #E55A29;
  color: var(--color-white);
  transform: translateY(-2px);
}

.header__nav-link--cta:hover::after {
  display: none;
}

.header__nav-link--cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
  color: var(--color-white);
}

/* Mobile Toggle Button */
.header__mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}

.header__mobile-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 9998;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.header__mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
}

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

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

.header__mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  transition: color var(--transition-normal);
}

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

.header__mobile-nav {
  margin-bottom: auto;
}

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

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

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

.header__mobile-nav-link--cta {
  color: var(--color-secondary);
}

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

.header__mobile-footer-links {
  display: flex;
  list-style: none;
  margin: 0 0 var(--space-md) 0;
  padding: 0;
  gap: var(--space-md);
}

.header__mobile-footer-link {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-normal);
  border-bottom: none;
}

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

.header__mobile-footer-tagline {
  color: var(--color-text-light);
  font-size: var(--fs-small);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .header__logo-tagline {
    display: none;
  }
  
  .header__nav-list {
    gap: var(--space-md);
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__mobile-menu {
    display: block;
  }
  
  .header--menu-open .header__mobile-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .header--menu-open .header__mobile-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .header--menu-open .header__mobile-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .header--menu-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
  }
}

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

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--section-padding-desktop) 0;
  overflow: hidden;
}

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

.main .hero-text-container {
  grid-area: text;
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.main .hero-eyebrow {
  display: inline-block;
  font-weight: 500;
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main .hero h1 {
  margin-bottom: var(--space-lg);
  position: relative;
}

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

.main .hero-description {
  font-size: var(--fs-h6);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.main .hero-accent {
  grid-area: accent;
  display: flex;
  justify-content: space-around;
  margin-top: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-md);
}

.main .hero-accent-item {
  text-align: center;
  padding: 0 var(--space-lg);
}

.main .hero-accent-number {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-sm);
}

.main .hero-accent-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  max-width: 200px;
  margin: 0 auto;
}

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

.main .section-header {
  margin-bottom: var(--space-xxl);
}

.main .section-description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.main .post-content p {
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
  flex-grow: 1;
}

.main .section-cta {
  margin-top: var(--space-xl);
}

/* Methodiek Section */
.main .methodiek {
  padding: var(--section-padding-desktop) 0;
}

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

.main .methodiek-card {
  background-color: var(--color-white);
  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 .methodiek-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-tertiary);
  transition: width var(--transition-normal);
}

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

.main .methodiek-card:hover::before {
  width: 10px;
}

.main .methodiek-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(30, 92, 151, 0.1);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

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

.main .methodiek-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.main .methodiek-features {
  list-style: none;
  margin-top: var(--space-lg);
}

.main .methodiek-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
}

.main .methodiek-features i {
  margin-right: var(--space-sm);
  font-size: var(--fs-small);
}

/* Process Section */
.main .process {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

.main .process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.main .process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

.main .process-step {
  position: relative;
  margin-bottom: var(--space-xxl);
  padding-left: 80px;
}

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

.main .process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  font-weight: 700;
  z-index: 2;
}

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

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

.main .process-image-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
}

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

.main .process-image-container:hover .process-image {
  transform: scale(1.05);
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--section-padding-desktop) 0;
}

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

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

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

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

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

.main .testimonial-quote p {
  position: relative;
  z-index: 1;
  padding-top: var(--space-md);
  font-style: italic;
  color: var(--color-text-light);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
}

.main .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-right: var(--space-md);
  border: 3px solid var(--color-primary);
}

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

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

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

/* Contact Section */
.main .contact {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

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

.main .contact-content {
  max-width: 500px;
}

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

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

.main .contact-feature {
  display: flex;
  align-items: flex-start;
}

.main .contact-feature i {
  margin-right: var(--space-md);
  margin-top: 5px;
}

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

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

.main .form-group {
  display: flex;
  flex-direction: column;
}

.main .form-group label {
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast);
}

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

.main .form-privacy {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.main .form-privacy input {
  margin-top: 5px;
  margin-right: var(--space-md);
}

.main .btn-full {
  width: 100%;
}

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

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

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

.main .cookie-content p {
  margin-bottom: 0;
  margin-right: var(--space-lg);
}

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

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .main .hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "text"
      "visual"
      "accent";
  }
  
  .main .hero-text-container,
  .main .hero-accent {
    max-width: 100%;
  }
  
  .main .posts-grid,
  .main .methodiek-grid,
  .main .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .contact-content {
    max-width: 100%;
  }
  
  .main .featured-posts,
  .main .methodiek,
  .main .process,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-content p {
    margin-bottom: var(--space-md);
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .main .hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .main .hero-cta {
    flex-direction: column;
  }
  
  .main .hero-image-container {
    height: 300px;
  }
  
  .main .hero-accent {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .main .posts-grid,
  .main .methodiek-grid,
  .main .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .main .process-timeline::before {
    left: 20px;
  }
  
  .main .process-step {
    padding-left: 60px;
  }
  
  .main .process-number {
    width: 40px;
    height: 40px;
    font-size: var(--fs-h5);
  }
  
  .main .featured-posts,
  .main .methodiek,
  .main .process,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-mobile) 0;
  }
}

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

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

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

.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 100% 100% 0 0;
  transform: translateX(-25%);
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
  padding: var(--space-xl) 0;
  position: relative;
}

.footer__brand {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  transition: width var(--transition-normal);
}

.footer__brand:hover .footer__title::after {
  width: 120px;
}

.footer__tagline {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-neutral);
  max-width: 90%;
}

.footer__nav-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
}

.footer__nav-column {
  min-width: 180px;
}

.footer__nav-title {
  color: var(--color-white);
  font-size: var(--fs-h6);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer__nav-title::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__nav-column:hover .footer__nav-title::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

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

.footer__nav-item {
  margin-bottom: var(--space-sm);
  transform: translateX(0);
  transition: transform var(--transition-normal);
}

.footer__nav-item:hover {
  transform: translateX(5px);
}

.footer__nav-link {
  color: var(--color-neutral);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color var(--transition-fast), border-bottom var(--transition-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--color-neutral);
  margin: 0;
  position: relative;
  z-index: 2;
}

.footer__shape {
  position: absolute;
  opacity: 0.05;
  z-index: 1;
}

.footer__shape--circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  top: -30px;
  left: 15%;
  transform: translateX(-50%);
}

.footer__shape--square {
  width: 70px;
  height: 70px;
  background-color: var(--color-tertiary);
  top: 20px;
  right: 20%;
  transform: rotate(45deg);
}

.footer__shape--triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--color-accent);
  bottom: -40px;
  left: 70%;
}

@media screen and (max-width: 1023px) {
  .footer__main {
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
  }
  
  .footer__nav-container {
    gap: var(--space-xl);
  }
  
  .footer__shape--circle {
    width: 80px;
    height: 80px;
  }
  
  .footer__shape--square {
    width: 60px;
    height: 60px;
  }
  
  .footer__shape--triangle {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--color-accent);
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: var(--space-xl);
    margin-top: var(--space-xxl);
  }
  
  .footer__wave-container {
    height: 40px;
    top: -40px;
  }
  
  .footer__main {
    flex-direction: column;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
  }
  
  .footer__brand {
    min-width: 100%;
  }
  
  .footer__tagline {
    max-width: 100%;
  }
  
  .footer__nav-container {
    width: 100%;
    justify-content: space-between;
  }
  
  .footer__nav-column {
    min-width: 45%;
  }
  
  .footer__shape--circle {
    width: 60px;
    height: 60px;
    left: 10%;
  }
  
  .footer__shape--square {
    width: 40px;
    height: 40px;
    right: 15%;
  }
  
  .footer__shape--triangle {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--color-accent);
    left: 80%;
  }
}

/* Privacy Page Styles */
.privacy-page {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
  padding-bottom: var(--space-xxxl);
}

.privacy-page__header {
  background-color: var(--color-primary);
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-xxl);
}

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

.privacy-page__last-updated {
  color: var(--color-neutral);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

.privacy-page__content {
  padding: 0 var(--space-md);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-neutral-dark);
  padding-bottom: var(--space-sm);
}

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

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

.privacy-page__contact-info {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-tertiary);
}

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

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

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .privacy-page__section {
    padding: var(--space-lg);
  }
  
  .privacy-page__header {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page__list li {
    margin-bottom: var(--space-sm);
  }
}

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

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

.terms-page__last-updated {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  margin-top: var(--space-md);
}

.terms-page__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-md);
}

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

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

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-neutral-dark);
}

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

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

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

@media screen and (max-width: 1023px) {
  .terms-page__content {
    padding: var(--space-xl);
  }
}

@media screen and (max-width: 767px) {
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-h5);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  background-color: var(--color-neutral);
  padding: var(--section-padding-desktop) 0;
  font-family: var(--font-primary);
}

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

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

.cookie-page__updated {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

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

.cookie-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

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

.cookie-page__subsection h3 {
  color: var(--color-tertiary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

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

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

.cookie-page p {
  color: var(--color-text);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
}

/* Responsive styles */
@media screen and (max-width: 1023px) {
  .cookie-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .cookie-page .container {
    padding: var(--space-xl);
  }
}

@media screen and (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page .container {
    padding: var(--space-lg);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
}

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

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

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

.thank-page__message {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xxl);
}

.thank-page__message h2 {
  color: var(--color-tertiary);
  font-size: var(--fs-h3);
}

.thank-page__message h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
}

.thank-page__message p {
  color: var(--color-text);
  line-height: var(--lh-body);
}

.thank-page__confirmation {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-tertiary);
}

.thank-page__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.thank-page__keyword {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 500;
}

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

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

@media screen and (max-width: 1023px) {
  .thank-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .thank-page__message {
    padding: var(--space-xl);
  }
}

@media screen and (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__message {
    padding: var(--space-lg);
  }
  
  .thank-page__keywords {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}

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

/* Hero Section */
.category-page__hero {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral);
}

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

.category-page__hero-description {
  font-size: var(--fs-h6);
  line-height: var(--lh-body);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

/* Posts Grid Section */
.category-page__posts-grid {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

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

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

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

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

.post-card h3 {
  font-size: var(--fs-h5);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  margin-bottom: 0;
  color: var(--color-primary);
}

.post-card p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
  color: var(--color-text-light);
}

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

/* Framework Section */
.category-page__framework {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-dark);
}

.category-page__framework-content h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

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

.category-page__framework-item {
  padding: var(--space-xl);
}

.category-page__framework-item .icon-text {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.category-page__framework-item .icon {
  font-size: var(--icon-md);
  margin-right: var(--space-md);
}

.category-page__framework-item h4 {
  margin-bottom: 0;
  color: var(--color-primary);
}

.category-page__framework-item p {
  margin-bottom: 0;
}

/* Best Practices Section */
.category-page__best-practices {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

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

.category-page__practice-item h4 {
  margin-bottom: var(--space-sm);
}

.category-page__practice-list {
  list-style-type: none;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.category-page__practice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color-tertiary);
  border-radius: 50%;
}

.category-page__practices-stats {
  display: flex;
  align-items: flex-start;
}

.category-page__stats-card {
  width: 100%;
  padding: var(--space-xl);
}

.category-page__stat-item {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.category-page__stat-item:last-child {
  margin-bottom: 0;
}

.category-page__stat-percentage {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .category-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .category-page__framework-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .category-page__practices-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .category-page__hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__posts-grid,
  .category-page__framework,
  .category-page__best-practices {
    padding: var(--section-padding-tablet) 0;
  }
}

@media screen and (max-width: 767px) {
  .category-page__grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero-description {
    font-size: var(--fs-body);
  }
  
  .category-page__hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .category-page__posts-grid,
  .category-page__framework,
  .category-page__best-practices {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Base Post Styles */
.post-page {
  font-family: var(--font-primary);
  color: var(--color-text);
}

/* Breadcrumbs Navigation */
.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-neutral);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-page .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .breadcrumbs a:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

/* Hero Section */
.post-page .post-hero {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.post-page .post-hero h1 {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-body);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
}

/* Content Sections */
.post-page .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-page .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.post-page .content-section h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.post-page .content-section p {
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

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

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

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

.post-page .bg-primary h2,
.post-page .bg-primary h3 {
  color: var(--color-white);
}

/* Section Grid Layout */
.post-page .section-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-page .section-grid.reverse {
  grid-template-columns: 2fr 3fr;
}

.post-page .section-grid.reverse .section-text {
  order: 2;
}

.post-page .section-grid.reverse .section-image {
  order: 1;
}

.post-page .section-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Feature List */
.post-page .feature-list {
  margin-bottom: var(--space-xl);
  list-style-type: none;
}

.post-page .feature-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
}

.post-page .feature-list li:before {
  content: "✓";
  color: var(--color-tertiary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.post-page .text-highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Communication Cards */
.post-page .communication-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-page .communication-card {
  padding: var(--space-xl);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .communication-card h3 {
  font-size: var(--fs-h5);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Quote Block */
.post-page .quote-block {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xxl) 0;
  position: relative;
}

.post-page .quote-block blockquote {
  font-family: var(--font-secondary);
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.post-page .quote-block blockquote:before {
  content: "";
  font-size: 4rem;
  color: var(--color-neutral-dark);
  position: absolute;
  top: var(--space-sm);
  left: var(--space-lg);
  opacity: 0.3;
}

.post-page .quote-author {
  text-align: right;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Numbered List */
.post-page .numbered-list {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-page .numbered-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

/* Takeaways Section */
.post-page .takeaways-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-xxl);
}

.post-page .takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-page .takeaway-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition-normal);
}

.post-page .takeaway-card:hover {
  transform: translateY(-5px);
}

.post-page .takeaway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: var(--space-md);
}

.post-page .takeaway-card h3 {
  color: var(--color-white);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-page .takeaway-card p {
  color: var(--color-white);
  margin-bottom: 0;
}

.post-page .conclusion-text {
  font-size: var(--fs-h6);
  line-height: var(--lh-body);
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Related Posts Section */
.post-page .related-posts-section {
  padding: var(--section-padding-desktop) 0;
}

.post-page .related-posts-section h2 {
  margin-bottom: var(--space-xxl);
}

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

.post-page .related-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .related-post-card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-xl);
}

.post-page .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-page .related-post-card p {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

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

/* Text Center Utility */
.post-page .text-center {
  text-align: center;
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .post-page .post-hero,
  .post-page .content-section,
  .post-page .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .section-grid,
  .post-page .section-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-page .section-grid .section-text,
  .post-page .section-grid .section-image,
  .post-page .section-grid.reverse .section-text,
  .post-page .section-grid.reverse .section-image {
    order: initial;
  }
  
  .post-page .communication-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .takeaways-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media screen and (max-width: 767px) {
  .post-page .post-hero,
  .post-page .content-section,
  .post-page .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--fs-h2);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--fs-body);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .quote-block blockquote {
    font-size: var(--fs-h6);
  }
  
  .post-page .conclusion-text {
    font-size: var(--fs-body);
  }
}

  /* Base Styles for Post Page */
  .post-page {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: var(--lh-body);
  }
  
  /* Breadcrumbs Navigation */
  .post-page .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-text-light);
    background-color: var(--color-neutral);
  }
  
  .post-page .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-page .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-page .post-hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--section-padding-desktop) 0;
    margin-bottom: var(--space-xxl);
    position: relative;
    overflow: hidden;
  }
  
  .post-page .post-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-h1);
    max-width: 800px;
  }
  
  .post-page .post-hero .lead {
    font-size: var(--fs-h6);
    line-height: var(--lh-subheading);
    max-width: 800px;
    margin-bottom: 0;
  }
  
  /* Content Sections */
  .post-page .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-page .content-section h2 {
    margin-bottom: var(--space-xl);
    position: relative;
  }
  
  .post-page .content-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
  }
  
  .post-page .content-section h3 {
    color: var(--color-tertiary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
  }
  
  .post-page .content-section h4 {
    color: var(--color-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
  }
  
  /* Two Column Layout */
  .post-page .two-column-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-page .content-column {
    order: 1;
  }
  
  .post-page .image-column {
    order: 2;
  }
  
  .post-page .section-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  /* Feature List */
  .post-page .feature-list {
    list-style-type: none;
    margin: var(--space-lg) 0;
    padding: 0;
  }
  
  .post-page .feature-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
  }
  
  .post-page .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-tertiary);
    font-weight: bold;
  }
  
  /* Strategy Cards */
  .post-page .strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .post-page .strategy-card {
    background-color: var(--color-white);
    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-page .strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-page .card-icon {
    font-size: var(--icon-lg);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
  }
  
  /* Implementation Framework */
  .post-page .implementation-framework {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xxl) 0;
    box-shadow: var(--shadow-md);
  }
  
  .post-page .numbered-list {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
  }
  
  .post-page .numbered-list li {
    margin-bottom: var(--space-md);
  }
  
  /* Case Study */
  .post-page .case-study {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xxl);
    box-shadow: var(--shadow-md);
    align-items: center;
  }
  
  .post-page .case-study-image {
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  /* Capability Grid */
  .post-page .capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
  }
  
  .post-page .capability-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
  }
  
  .post-page .capability-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  /* Conclusion */
  .post-page .conclusion {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xxl);
    border-left: 5px solid var(--color-tertiary);
  }
  
  /* Related Posts */
  .post-page .related-posts {
    background-color: var(--color-neutral-dark);
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-page .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xxl);
  }
  
  .post-page .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .post-page .post-card {
    background-color: var(--color-white);
    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-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-page .post-card h3 {
    margin-top: 0;
    font-size: var(--fs-h5);
  }
  
  .post-page .post-card h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    border-bottom: none;
  }
  
  .post-page .post-card h3 a:hover {
    color: var(--color-secondary);
  }
  
  .post-page .post-card p {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
  }
  
  .post-page .post-card .btn-tertiary {
    align-self: flex-start;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
  }
  
  .post-page .post-card .btn-tertiary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 1023px) {
    .post-page .post-hero {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-page .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-page .related-posts {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-page .strategy-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-page .post-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 767px) {
    .post-page .post-hero {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-page .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-page .related-posts {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-page .two-column-layout {
      grid-template-columns: 1fr;
    }
    
    .post-page .content-column {
      order: 2;
    }
    
    .post-page .image-column {
      order: 1;
      margin-bottom: var(--space-lg);
    }
    
    .post-page .strategy-cards {
      grid-template-columns: 1fr;
    }
    
    .post-page .case-study {
      grid-template-columns: 1fr;
    }
    
    .post-page .capability-grid {
      grid-template-columns: 1fr;
    }
    
    .post-page .post-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Page-specific styling */
  .post-werkplekflexibiliteit-veranderingskatalysator .post-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .strategy-card .card-icon {
    background-color: rgba(30, 92, 151, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* Page-specific styling */
.post-werkplekflexibiliteit-veranderingskatalysator {
  overflow-x: hidden;
}

/* Breadcrumbs */
.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-neutral);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-page .breadcrumbs a {
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.post-page .breadcrumbs a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Hero Section */
.post-page .post-hero {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
  text-align: center;
  position: relative;
}

.post-page .post-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-tertiary) 100%);
}

.post-page .post-hero h1 {
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .post-hero .lead {
  font-size: var(--fs-h6);
  line-height: var(--lh-subheading);
  color: var(--color-text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* Content Sections */
.post-page .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-page .content-section h2 {
  margin-bottom: var(--space-xl);
}

.post-page .content-section h3 {
  color: var(--color-tertiary);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h5);
}

.post-page .content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

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

/* Feature List */
.post-page .feature-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.post-page .feature-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-page .feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* Sector Cards */
.post-page .sector-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-page .sector-card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-page .sector-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-page .sector-card ul {
  padding-left: var(--space-lg);
}

.post-page .sector-card li {
  margin-bottom: var(--space-sm);
}

.post-page .section-image {
  margin-top: var(--space-xxl);
}

.post-page .section-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Best Practices */
.post-page .best-practices {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-page .numbered-list {
  padding-left: var(--space-xl);
}

.post-page .numbered-list li {
  margin-bottom: var(--space-md);
}

.post-page .numbered-list strong {
  color: var(--color-primary);
}

/* Case Study */
.post-page .case-study {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-tertiary);
}

/* Takeaways */
.post-page .takeaways {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-page .highlight-list {
  list-style: none;
}

.post-page .highlight-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-page .highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-tertiary);
  font-weight: bold;
}

/* Related Posts Section */
.post-page .related-posts-section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-dark);
}

.post-page .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

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

.post-page .post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-page .post-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-page .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

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

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

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .post-page .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .content-image {
    order: -1;
  }
  
  .post-page .sector-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-page .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .sector-cards {
    grid-template-columns: 1fr;
  }
  
  .post-page .related-posts {
    grid-template-columns: 1fr;
  }
  
  .post-page .post-hero .lead {
    font-size: var(--fs-body);
  }
}

.post-werkplekflexibiliteit-veranderingskatalysator {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
}

/* Breadcrumbs */
.post-werkplekflexibiliteit-veranderingskatalysator .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-werkplekflexibiliteit-veranderingskatalysator .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-werkplekflexibiliteit-veranderingskatalysator .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-werkplekflexibiliteit-veranderingskatalysator .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 92, 151, 0.85);
  z-index: 1;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h1);
  line-height: 1.2;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-weight: 300;
}

.post-werkplekflexibiliteit-veranderingskatalysator .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content Sections */
.post-werkplekflexibiliteit-veranderingskatalysator .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-section h2 {
  margin-bottom: var(--space-xxl);
  position: relative;
  display: inline-block;
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

.post-werkplekflexibiliteit-veranderingskatalysator .bg-white {
  background-color: var(--color-white);
}

.post-werkplekflexibiliteit-veranderingskatalysator .bg-neutral {
  background-color: var(--color-neutral);
}

.post-werkplekflexibiliteit-veranderingskatalysator .bg-neutral-dark {
  background-color: var(--color-neutral-dark);
}

/* Content Grid Layout */
.post-werkplekflexibiliteit-veranderingskatalysator .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-grid.reverse .content-text,
.post-werkplekflexibiliteit-veranderingskatalysator .content-grid.reverse .content-image {
  direction: ltr;
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-text p {
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

.post-werkplekflexibiliteit-veranderingskatalysator .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Feature List */
.post-werkplekflexibiliteit-veranderingskatalysator .feature-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.post-werkplekflexibiliteit-veranderingskatalysator .feature-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.post-werkplekflexibiliteit-veranderingskatalysator .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--color-tertiary);
  border-radius: 50%;
}

/* Implementation Steps */
.post-werkplekflexibiliteit-veranderingskatalysator .implementation-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

.post-werkplekflexibiliteit-veranderingskatalysator .step-card {
  background-color: var(--color-neutral);
  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-werkplekflexibiliteit-veranderingskatalysator .step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-werkplekflexibiliteit-veranderingskatalysator .step-card h4 {
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

/* Conclusion */
.post-werkplekflexibiliteit-veranderingskatalysator .conclusion {
  background-color: var(--color-neutral);
  border-left: 4px solid var(--color-tertiary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-xxl);
}

.post-werkplekflexibiliteit-veranderingskatalysator .conclusion h3 {
  color: var(--color-tertiary);
  margin-bottom: var(--space-md);
}

/* Related Posts Section */
.post-werkplekflexibiliteit-veranderingskatalysator .related-posts {
  padding: var(--section-padding-desktop) 0;
}

.post-werkplekflexibiliteit-veranderingskatalysator .related-posts h2 {
  margin-bottom: var(--space-xxl);
  position: relative;
  display: inline-block;
}

.post-werkplekflexibiliteit-veranderingskatalysator .related-posts h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

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

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

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

.post-werkplekflexibiliteit-veranderingskatalysator .post-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-content h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-content p {
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  flex-grow: 1;
}

.post-werkplekflexibiliteit-veranderingskatalysator .post-content .btn-tertiary {
  align-self: flex-start;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--transition-normal);
  display: inline-block;
  margin-top: auto;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .post-werkplekflexibiliteit-veranderingskatalysator .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .related-posts {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .implementation-steps {
    grid-template-columns: 1fr;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media screen and (max-width: 767px) {
  .post-werkplekflexibiliteit-veranderingskatalysator .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .post-hero h1 {
    font-size: var(--fs-h2);
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .post-hero .lead {
    font-size: var(--fs-h6);
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .related-posts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .content-grid,
  .post-werkplekflexibiliteit-veranderingskatalysator .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    direction: ltr;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .content-image {
    order: -1;
  }
  
  .post-werkplekflexibiliteit-veranderingskatalysator .post-grid {
    grid-template-columns: 1fr;
  }
}

/* Page-specific styles */
.post-digitale-transformatie-nederlandse-bedrijven {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
}

/* Breadcrumbs */
.post-digitale-transformatie-nederlandse-bedrijven .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-digitale-transformatie-nederlandse-bedrijven .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-digitale-transformatie-nederlandse-bedrijven .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-digitale-transformatie-nederlandse-bedrijven .post-hero {
  background-color: var(--color-white);
  padding: var(--section-padding-desktop) 0;
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-digitale-transformatie-nederlandse-bedrijven .post-hero h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.post-digitale-transformatie-nederlandse-bedrijven .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-text);
  margin-bottom: var(--space-xxl);
  max-width: 85%;
}

.post-digitale-transformatie-nederlandse-bedrijven .hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

/* Content Sections */
.post-digitale-transformatie-nederlandse-bedrijven .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-digitale-transformatie-nederlandse-bedrijven .content-section h2 {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-xxl);
  position: relative;
}

.post-digitale-transformatie-nederlandse-bedrijven .content-section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.post-digitale-transformatie-nederlandse-bedrijven .content-section h3 {
  font-size: var(--fs-h4);
  color: var(--color-tertiary);
  margin-bottom: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-bedrijven .content-section h4 {
  font-size: var(--fs-h6);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-digitale-transformatie-nederlandse-bedrijven .text-highlight {
  color: var(--color-secondary);
  font-weight: 500;
}

/* Content Grid Layout */
.post-digitale-transformatie-nederlandse-bedrijven .content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-digitale-transformatie-nederlandse-bedrijven .content-text {
  padding-right: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-bedrijven .content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-digitale-transformatie-nederlandse-bedrijven .content-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Strategy Section */
.post-digitale-transformatie-nederlandse-bedrijven .strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-digitale-transformatie-nederlandse-bedrijven .strategy-list {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-digitale-transformatie-nederlandse-bedrijven .strategy-list ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.post-digitale-transformatie-nederlandse-bedrijven .strategy-list li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.post-digitale-transformatie-nederlandse-bedrijven .strategy-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-digitale-transformatie-nederlandse-bedrijven .strategy-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Challenges Section */
.post-digitale-transformatie-nederlandse-bedrijven .challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-bedrijven .factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-digitale-transformatie-nederlandse-bedrijven .factor-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-digitale-transformatie-nederlandse-bedrijven .factor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-transformatie-nederlandse-bedrijven .factor-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-digitale-transformatie-nederlandse-bedrijven .factor-card p {
  color: var(--color-text);
  font-size: var(--fs-body);
  margin-bottom: 0;
}

/* Leadership Quote */
.post-digitale-transformatie-nederlandse-bedrijven .leadership-quote {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xxl) 0;
  position: relative;
  box-shadow: var(--shadow-md);
  font-family: var(--font-secondary);
  font-size: var(--fs-h5);
  line-height: 1.5;
}

.post-digitale-transformatie-nederlandse-bedrijven .leadership-quote:before {
  content: "";
  font-size: 4rem;
  position: absolute;
  top: -15px;
  left: 10px;
  color: var(--color-accent);
  opacity: 0.5;
}

.post-digitale-transformatie-nederlandse-bedrijven .leadership-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  font-style: normal;
  text-align: right;
}

/* Related Posts Section */
.post-digitale-transformatie-nederlandse-bedrijven .related-posts-section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-dark);
}

.post-digitale-transformatie-nederlandse-bedrijven .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-primary);
  position: relative;
}

.post-digitale-transformatie-nederlandse-bedrijven .related-posts-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.post-digitale-transformatie-nederlandse-bedrijven .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

.post-digitale-transformatie-nederlandse-bedrijven .related-post-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-transformatie-nederlandse-bedrijven .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.post-digitale-transformatie-nederlandse-bedrijven .related-post-card h3 {
  font-size: var(--fs-h5);
  margin: var(--space-lg) var(--space-lg) var(--space-md);
  color: var(--color-primary);
}

.post-digitale-transformatie-nederlandse-bedrijven .related-post-card p {
  margin: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text);
  font-size: var(--fs-body);
  flex-grow: 1;
}

.post-digitale-transformatie-nederlandse-bedrijven .related-post-card .btn {
  margin: 0 var(--space-lg) var(--space-lg);
  align-self: flex-start;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .post-digitale-transformatie-nederlandse-bedrijven .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .content-grid,
  .post-digitale-transformatie-nederlandse-bedrijven .strategy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .content-text {
    padding-right: 0;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .post-digitale-transformatie-nederlandse-bedrijven .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .post-hero h1 {
    font-size: var(--fs-h2);
    max-width: 100%;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .post-hero .lead {
    font-size: var(--fs-body);
    max-width: 100%;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .factors-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-transformatie-nederlandse-bedrijven .leadership-quote {
    font-size: var(--fs-body);
    padding: var(--space-lg);
  }
}

.privacy-page {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
  padding: var(--section-padding-desktop) 0;
}

.privacy-page .container {
  max-width: 900px;
}

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

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

.privacy-page__updated {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.privacy-page__intro {
  margin-bottom: var(--space-xxl);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-neutral-dark);
  padding-bottom: var(--space-sm);
}

.privacy-page__section h3 {
  font-size: var(--fs-h5);
  color: var(--color-tertiary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

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

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

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

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

.privacy-page__contact strong {
  color: var(--color-primary);
}

@media screen and (max-width: 1023px) {
  .privacy-page {
    padding: var(--section-padding-tablet) 0;
  }
}

@media screen and (max-width: 767px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__section h2 {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__section h3 {
    font-size: var(--fs-h6);
  }
  
  .privacy-page__contact {
    padding: var(--space-lg);
  }
}

.terms-page {
  background-color: var(--color-neutral);
  padding: var(--section-padding-desktop) 0;
  font-family: var(--font-primary);
}

.terms-page__container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-md);
}

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

.terms-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

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

.terms-page h2 {
  color: var(--color-tertiary);
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.terms-page p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
  color: var(--color-text);
}

.terms-page__section {
  padding: var(--space-md) 0;
}

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

.terms-page__list li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

@media screen and (max-width: 1023px) {
  .terms-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .terms-page__container {
    padding: var(--space-xl);
  }
}

@media screen and (max-width: 767px) {
  .terms-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .terms-page__container {
    padding: var(--space-lg);
  }
  
  .terms-page h1 {
    font-size: var(--fs-h2);
  }
  
  .terms-page h2 {
    font-size: var(--fs-h5);
  }
}

.cookie-page {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral);
}

.cookie-page__header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
}

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

.cookie-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-neutral);
  margin-bottom: 0;
}

.cookie-page__content {
  padding: var(--space-xxl) 0;
}

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

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

.cookie-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-dark);
}

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

.cookie-page__category h3 {
  color: var(--color-tertiary);
  font-size: var(--fs-h5);
  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 li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

@media screen and (max-width: 767px) {
  .cookie-page__header {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__content {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__category {
    padding: var(--space-md);
  }
}

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

.thank-page__container {
  width: 100%;
}

.thank-page__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xxl);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
}

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

.thank-page__text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.thank-page__confirmation {
  background-color: var(--color-neutral);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.thank-page__confirmation-icon {
  color: var(--color-tertiary);
  margin-bottom: var(--space-md);
}

.thank-page__icon {
  width: var(--icon-xl);
  height: var(--icon-xl);
}

.thank-page__confirmation-text {
  font-size: var(--fs-h6);
  font-weight: 600;
  margin-bottom: 0;
}

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

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

@media screen and (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__confirmation {
    padding: var(--space-md);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: var(--space-xxxl) var(--space-md);
    background-color: var(--color-neutral);
  }
  
  .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-secondary);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    text-shadow: var(--shadow-md);
    position: relative;
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
  }
  
  .error-404__title {
    font-size: var(--fs-h3);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
    animation-delay: 0.2s;
  }
  
  .error-404__message {
    font-size: var(--fs-body);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: var(--lh-body);
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
    animation-delay: 0.4s;
  }
  
  .error-404__button {
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
    animation-delay: 0.6s;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .error-404__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  
  .error-404__decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xxl);
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
    animation-delay: 0.8s;
  }
  
  .error-404__line {
    width: 80px;
    height: 2px;
    background-color: var(--color-tertiary);
  }
  
  .error-404__circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    margin: 0 var(--space-md);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media screen and (max-width: 767px) {
    .error-404__code {
      font-size: 7rem;
    }
    
    .error-404__title {
      font-size: var(--fs-h4);
    }
    
    .error-404__message {
      font-size: var(--fs-small);
      margin-bottom: var(--space-lg);
    }
    
    .error-404__line {
      width: 50px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .error-404__code {
      font-size: 5rem;
    }
    
    .error-404__decoration {
      margin-top: var(--space-xl);
    }
    
    .error-404__line {
      width: 30px;
    }
  }
