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

:root {
  /* Color Scheme - Professional with Dutch influence */
  --color-primary: #1e5c97; /* Dutch blue - trustworthy, professional */
  --color-secondary: #ff6b35; /* Warm orange - energy, transition */
  --color-accent: #2ec4b6; /* Teal - fresh perspective */
  --color-neutral-light: #f7f9fc; /* Light background */
  --color-neutral: #e6eaef; /* Secondary background */
  --color-neutral-dark: #8494a7; /* Subtle text, borders */
  --color-text: #2d3748; /* Main text */
  --color-text-light: #4a5568; /* Secondary text */
  --color-success: #38a169; /* Success messages */
  --color-warning: #e9b949; /* Warnings */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem;  /* 36px */
  --text-4xl: 2.75rem;  /* 44px */
  --text-5xl: 3.5rem;   /* 56px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 5rem;    /* 80px */
  --space-4xl: 7.5rem;  /* 120px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-pill: 9999px;
  --border-width-thin: 1px;
  --border-width-thick: 2px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Container width */
  --container-max-width: 1440px;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 2.5rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-neutral-light);
}

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

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

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

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

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

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

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

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

p {
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

.lead {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.5;
}

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

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

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

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

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

.btn-primary:hover {
  background-color: #164a7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

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

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

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

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

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

.btn-accent:hover {
  background-color: #25a99d;
  transform: translateY(-2px);
  text-decoration: none;
}

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

.btn-lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-lg);
  min-height: 3.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive Typography */
@media (max-width: 767px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  h4 {
    font-size: var(--text-lg);
  }
  
  .lead {
    font-size: var(--text-md);
  }
}

/* Responsive Spacing */
@media (max-width: 767px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  section {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: var(--space-4xl) 0;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
  position: relative;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
}

/* Logo Styles */
.header__logo-container {
  flex-shrink: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--color-text);
  transition: transform var(--transition-normal);
}

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

.header__logo-icon {
  font-size: var(--text-2xl);
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  transform: rotate(90deg);
  display: inline-block;
}

.header__logo-text {
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-accent {
  color: var(--color-primary);
  font-weight: 700;
}

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

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

.header__nav-item {
  position: relative;
}

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

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

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

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

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

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

/* Actions Styles */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta {
  display: none;
  font-size: var(--text-sm);
  padding: var(--space-xs) var(--space-lg);
  min-height: 2.5rem;
}

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

.header__toggle-line {
  display: block;
  width: 100%;
  height: var(--border-width-thick);
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(45, 55, 72, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  display: flex;
  justify-content: flex-end;
}

.header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu-container {
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: var(--color-neutral-light);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

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

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

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

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

.header__close-icon {
  font-weight: 300;
  line-height: 1;
}

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

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

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

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

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

.header__mobile-footer {
  padding: var(--space-xl) var(--space-lg);
  border-top: var(--border-width-thin) solid var(--color-neutral);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.header__mobile-cta {
  width: 100%;
}

.header__mobile-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

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

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

/* Responsive Styles */
@media (min-width: 768px) {
  .header {
    padding: var(--space-lg) 0;
  }
  
  .header__logo-icon {
    font-size: var(--text-3xl);
  }
  
  .header__logo-text {
    font-size: var(--text-xl);
  }
  
  .header__cta {
    display: inline-flex;
  }
}

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

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

.header__nav-item {
  animation: fadeIn var(--transition-normal);
  animation-fill-mode: both;
}

.header__nav-item:nth-child(1) { animation-delay: 100ms; }
.header__nav-item:nth-child(2) { animation-delay: 150ms; }
.header__nav-item:nth-child(3) { animation-delay: 200ms; }
.header__nav-item:nth-child(4) { animation-delay: 250ms; }
.header__nav-item:nth-child(5) { animation-delay: 300ms; }
.header__nav-item:nth-child(6) { animation-delay: 350ms; }

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

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

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

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

.main .hero-text h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.main .hero-text .lead {
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.main .hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

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

.main .hero-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform var(--transition-normal);
  animation: fadeInRight 1s ease-out forwards;
}

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

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(30, 92, 151, 0.1);
  top: -80px;
  right: -100px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 107, 53, 0.1);
  bottom: -60px;
  left: -60px;
  z-index: 1;
  animation: float 6s ease-in-out infinite reverse;
}

.main .hero-accent {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--color-secondary);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(5deg);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
  z-index: 3;
}

.main .hero-stat {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
}

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

.main .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L60,138.7C120,149,240,171,360,165.3C480,160,600,128,720,128C840,128,960,160,1080,165.3C1200,171,1320,149,1380,138.7L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  z-index: 1;
}

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

.main .featured-posts h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.main .post-card p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  font-size: var(--text-sm);
  flex: 1;
}

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

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

.main .section-cta .btn {
  padding-right: var(--space-2xl);
}

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

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

/* Why Choose Section */
.main .why-choose {
  padding: var(--space-4xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

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

.main .section-header h2 {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.main .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-pill);
}

.main .benefits-hexagon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.main .benefit-item {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
}

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

.main .benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  opacity: 0;
  border-radius: var(--border-radius-lg);
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.main .benefit-item:hover::before {
  opacity: 0.05;
}

.main .benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-neutral-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  transition: all var(--transition-normal);
}

.main .benefit-item:hover .benefit-icon {
  background-color: var(--color-primary);
  color: white;
  transform: rotateY(360deg);
}

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

.main .benefit-item p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

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

.main .process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.main .process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--color-neutral);
  transform: translateX(-50%);
  z-index: 1;
}

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

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

.main .process-step:nth-child(even) {
  direction: rtl;
}

.main .process-step:nth-child(even) .step-content {
  direction: ltr;
}

.main .step-number {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.main .step-content {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

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

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

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

/* Success Stories Section */
.main .success-stories {
  padding: var(--space-4xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

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

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

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

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

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

.main .testimonial-content {
  padding: var(--space-lg);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main .testimonial-quote {
  position: absolute;
  top: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  box-shadow: var(--shadow-md);
}

.main .testimonial-text {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  font-style: italic;
  flex: 1;
}

.main .testimonial-author {
  margin-top: auto;
}

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

.main .testimonial-author p {
  margin-bottom: 0;
  color: var(--color-secondary);
  font-weight: 500;
}

/* Stats Section */
.main .stats-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-primary);
  color: white;
}

.main .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.main .stat-item {
  padding: var(--space-md);
}

.main .stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
  color: white;
}

.main .stat-label {
  font-size: var(--text-md);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

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

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

.main .feature-icon {
  background-color: var(--color-neutral-light);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

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

.main .feature-text p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

.main .contact-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-lg);
}

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

.main .contact-form h3 {
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  text-align: center;
}

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

.main .form-checkbox {
  display: flex;
  align-items: center;
}

.main .form-checkbox input {
  width: auto;
  margin-right: var(--space-sm);
}

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

.main .contact-form .btn {
  width: 100%;
  margin-top: var(--space-md);
}

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

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

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

.main .cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px) perspective(1000px) rotateY(-5deg) rotateX(3deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) perspective(1000px) rotateY(-5deg) rotateX(3deg);
  }
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .main .benefits-hexagon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .main .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    margin-top: var(--space-xl);
    order: 2;
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .main .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-hexagon {
    grid-template-columns: 1fr;
  }
  
  .main .process-timeline::before {
    left: 30px;
  }
  
  .main .process-step {
    grid-template-columns: 1fr;
  }
  
  .main .process-step:nth-child(even) {
    direction: ltr;
  }
  
  .main .step-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .main .step-content {
    margin-left: 45px;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .main .hero-cta {
    flex-direction: column;
  }
  
  .main .hero-accent {
    right: 50%;
    transform: translateX(50%) rotate(5deg);
  }
  
  .main .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .main .testimonials-container {
    grid-template-columns: 1fr;
  }
}

.footer {
  background-color: var(--color-neutral-light);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-3xl);
}

.footer__top {
  padding: var(--space-2xl) 0;
  position: relative;
}

.footer__top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 92, 151, 0.05) 0%, rgba(46, 196, 182, 0.05) 100%);
  z-index: 0;
}

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

.footer__brand {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .footer__brand {
    grid-column: span 4;
  }
  
  .footer__nav {
    grid-column: span 2;
  }
  
  .footer__resources {
    grid-column: span 2;
  }
  
  .footer__cta {
    grid-column: span 4;
  }
}

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

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

.footer__tagline {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  max-width: 90%;
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

.footer__link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 400;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
}

.footer__link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-normal);
  border-radius: var(--border-radius-pill);
}

.footer__link:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
  text-decoration: none;
}

.footer__link:hover::before {
  width: 100%;
}

.footer__cta {
  display: flex;
  justify-content: flex-end;
}

.footer__cta-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #164a7e 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.footer__cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.footer__cta-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

.footer__cta-title {
  color: white;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.footer__cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer__cta-btn {
  background-color: var(--color-secondary);
  color: white;
  border: none;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
  min-height: auto;
}

.footer__cta-btn:hover {
  background-color: #e55a29;
}

.footer__divider {
  height: 60px;
  position: relative;
  background-color: var(--color-neutral);
  overflow: hidden;
}

.footer__divider-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 15%, 0 85%);
  opacity: 0.8;
}

.footer__bottom {
  background-color: var(--color-neutral);
  padding: var(--space-lg) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .footer__legal {
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

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

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

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

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

.footer__netherlands-text {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-weight: 500;
}

.footer__netherlands-flag {
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.flag__red {
  height: 33.33%;
  background-color: #AE1C28;
}

.flag__white {
  height: 33.33%;
  background-color: #FFFFFF;
}

.flag__blue {
  height: 33.33%;
  background-color: #21468B;
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__nav, .footer__resources, .footer__cta {
    grid-column: span 12;
  }
  
  .footer__cta {
    justify-content: center;
  }
  
  .footer__cta-card {
    width: 100%;
  }
  
  .footer__divider {
    height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__brand {
    grid-column: span 6;
  }
  
  .footer__nav {
    grid-column: span 3;
  }
  
  .footer__resources {
    grid-column: span 3;
  }
  
  .footer__cta {
    grid-column: span 12;
    margin-top: var(--space-lg);
    justify-content: center;
  }
  
  .footer__cta-card {
    max-width: 500px;
  }
}

/* Privacy Page Styles */
.privacy-page {
  padding: var(--space-2xl) 0;
  font-family: var(--font-primary);
  color: var(--color-text);
}

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

.privacy-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

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

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

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

.privacy-page h2 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page h1 {
    font-size: var(--text-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--text-lg);
  }
  
  .privacy-page h3 {
    font-size: var(--text-md);
  }
  
  .privacy-page p,
  .privacy-page__list li {
    font-size: var(--text-sm);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

/* Terms of Service Page Styles */
.terms-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.terms-page__navigation h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
  padding-bottom: var(--space-sm);
}

.terms-page__nav-list {
  list-style-type: none;
  padding: 0;
}

.terms-page__nav-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: var(--border-width-thick) solid var(--color-neutral);
}

.terms-page__nav-list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-size: var(--text-sm);
  display: block;
  padding: var(--space-xs) 0;
}

.terms-page__nav-list a:hover {
  color: var(--color-secondary);
  padding-left: var(--space-xs);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .terms-page {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: 
      "header header"
      "content navigation";
    gap: var(--space-xl);
  }
  
  .terms-page__header {
    grid-area: header;
  }
  
  .terms-page__content {
    grid-area: content;
    margin-bottom: 0;
  }
  
  .terms-page__navigation {
    grid-area: navigation;
    align-self: start;
    position: sticky;
    top: var(--space-xl);
  }
}

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

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

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

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

.cookie-page__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

.cookie-page__tertiary-title {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

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

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  text-align: right;
  margin-top: var(--space-xl);
  margin-bottom: 0;
}

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

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

.thank-page__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.thank-page__confirmation {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-xl);
  border-left: var(--border-width-thick) solid var(--color-accent);
}

.thank-page__confirmation p {
  margin-bottom: 0;
  font-size: var(--text-base);
}

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

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

.thank-page__additional-info {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  max-width: 600px;
  margin: 0 auto;
}

.thank-page__additional-info p {
  margin-bottom: 0;
}

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

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

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

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

.category-page__hero-content h1 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.category-page__hero-content .lead {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Section Titles */
.category-page__section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  color: var(--color-primary);
}

.category-page__section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--space-sm) auto 0;
  border-radius: var(--border-radius-pill);
}

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

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

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

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

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

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

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

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

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

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

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

.post-card__content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
  font-size: var(--text-sm);
}

.post-card__content a {
  align-self: flex-start;
  margin-top: auto;
}

/* Trends Section */
.category-page__trends {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral);
}

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

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

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

.category-page__trends-title {
  display: flex;
  align-items: center;
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

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

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

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

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

.category-page__steps-content {
  max-width: 800px;
  margin: 0 auto;
}

.category-page__step {
  display: flex;
  margin-bottom: var(--space-xl);
}

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

.category-page__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-right: var(--space-lg);
  margin-top: var(--space-xs);
}

.category-page__step-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.category-page__step-details p {
  margin-bottom: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-2xl) 0;
  }
  
  .category-page__posts,
  .category-page__trends,
  .category-page__steps {
    padding: var(--space-2xl) 0;
  }
  
  .category-page__step {
    flex-direction: column;
  }
  
  .category-page__step-number {
    margin-bottom: var(--space-md);
  }
}

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

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

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

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

/* Hero Section */
.post-page .post-hero {
  background-color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.post-page .post-hero .lead {
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-light);
}

.post-page .hero-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.post-page .section-fundamentals {
  background-color: var(--color-neutral-light);
}

.post-page .section-experience {
  background-color: white;
}

.post-page .section-skills {
  background-color: var(--color-neutral-light);
}

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

.post-page .content-section h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

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

.post-page .content-text {
  order: 1;
}

.post-page .content-image {
  order: 2;
}

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

/* Tips Container */
.post-page .tips-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-page .tips-list {
  list-style-type: none;
  padding: 0;
}

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

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

/* Example Section */
.post-page .example-container {
  background-color: var(--color-neutral);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-page .example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.post-page .example-before,
.post-page .example-after {
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
}

.post-page .example-before {
  background-color: white;
}

.post-page .example-after {
  background-color: var(--color-neutral-light);
  border-left: var(--border-width-thick) solid var(--color-accent);
}

.post-page .example-before h4,
.post-page .example-after h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

/* Section Image */
.post-page .section-image {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: var(--space-xl) auto 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Skills Section */
.post-page .skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-page .skills-column {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-page .skills-column h3 {
  color: var(--color-primary);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* Final Tips */
.post-page .final-tips {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-page .final-tips ol {
  padding-left: var(--space-xl);
}

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

/* Related Posts Section */
.post-page .related-posts {
  background-color: white;
  padding: var(--space-3xl) 0;
  border-top: var(--border-width-thin) solid var(--color-neutral);
}

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 991px) {
  .post-page .content-grid,
  .post-page .skills-grid,
  .post-page .post-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .content-text,
  .post-page .content-image {
    order: 0;
  }
  
  .post-page .example-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-page .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-page .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-md);
  }
}

@media (max-width: 767px) {
  .post-page .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-page .content-section h2 {
    font-size: var(--text-xl);
  }
  
  .post-page .content-section h3 {
    font-size: var(--text-lg);
  }
  
  .post-page .tips-container,
  .post-page .example-container,
  .post-page .skills-column,
  .post-page .final-tips {
    padding: var(--space-lg);
  }
  
  .post-page .post-card {
    padding: var(--space-md);
  }
}

/* Page Specific Styles */
.post-netwerken-beroepsverandering-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-netwerken-beroepsverandering-nederland .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, rgba(30, 92, 151, 0) 0%, rgba(30, 92, 151, 0.8) 100%);
  z-index: 1;
}

.post-netwerken-beroepsverandering-nederland .post-hero h1 {
  color: white;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-md);
}

.post-netwerken-beroepsverandering-nederland .post-hero .lead {
  color: white;
  font-weight: 500;
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-lg);
}

.post-netwerken-beroepsverandering-nederland .hero-cta {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xl);
}

/* Breadcrumbs */
.post-netwerken-beroepsverandering-nederland .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

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

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

.post-netwerken-beroepsverandering-nederland .breadcrumbs span {
  color: var(--color-text);
}

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

.post-netwerken-beroepsverandering-nederland .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-netwerken-beroepsverandering-nederland .content-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-top: var(--space-xs);
}

.post-netwerken-beroepsverandering-nederland .section-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-netwerken-beroepsverandering-nederland .section-content {
  padding-right: var(--space-lg);
}

.post-netwerken-beroepsverandering-nederland .section-image {
  position: relative;
}

.post-netwerken-beroepsverandering-nederland .content-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Strategy Cards Section */
.post-netwerken-beroepsverandering-nederland .strategy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-netwerken-beroepsverandering-nederland .strategy-card {
  padding: var(--space-lg);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-netwerken-beroepsverandering-nederland .strategy-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-netwerken-beroepsverandering-nederland .strategy-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
}

.post-netwerken-beroepsverandering-nederland .strategy-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-netwerken-beroepsverandering-nederland .strategy-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Networking Example */
.post-netwerken-beroepsverandering-nederland .networking-example {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.post-netwerken-beroepsverandering-nederland .networking-example h3 {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-size: var(--text-xl);
}

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

.post-netwerken-beroepsverandering-nederland .example-text ol {
  padding-left: var(--space-lg);
}

.post-netwerken-beroepsverandering-nederland .example-text li {
  margin-bottom: var(--space-sm);
}

/* Maintenance Section */
.post-netwerken-beroepsverandering-nederland .maintenance-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-netwerken-beroepsverandering-nederland .tips-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.post-netwerken-beroepsverandering-nederland .tips-container h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-netwerken-beroepsverandering-nederland .tips-list {
  list-style-type: none;
  padding-left: 0;
}

.post-netwerken-beroepsverandering-nederland .tips-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

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

.post-netwerken-beroepsverandering-nederland .tools-card {
  height: 100%;
  padding: var(--space-lg);
}

.post-netwerken-beroepsverandering-nederland .tools-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-netwerken-beroepsverandering-nederland .tools-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-netwerken-beroepsverandering-nederland .tools-card li {
  margin-bottom: var(--space-sm);
}

/* Conclusion */
.post-netwerken-beroepsverandering-nederland .conclusion {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.post-netwerken-beroepsverandering-nederland .conclusion h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.post-netwerken-beroepsverandering-nederland .conclusion ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

/* Related Posts */
.post-netwerken-beroepsverandering-nederland .related-posts-section {
  background-color: var(--color-neutral);
  padding: var(--space-3xl) 0;
}

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

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

.post-netwerken-beroepsverandering-nederland .related-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
}

.post-netwerken-beroepsverandering-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

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

.post-netwerken-beroepsverandering-nederland .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-netwerken-beroepsverandering-nederland .section-grid,
  .post-netwerken-beroepsverandering-nederland .strategy-cards,
  .post-netwerken-beroepsverandering-nederland .example-content,
  .post-netwerken-beroepsverandering-nederland .maintenance-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-netwerken-beroepsverandering-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-netwerken-beroepsverandering-nederland .section-content {
    padding-right: 0;
  }
  
  .post-netwerken-beroepsverandering-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 767px) {
  .post-netwerken-beroepsverandering-nederland .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-netwerken-beroepsverandering-nederland .post-hero::after {
    width: 100%;
    background: rgba(30, 92, 151, 0.8);
  }
  
  .post-netwerken-beroepsverandering-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-netwerken-beroepsverandering-nederland .content-section h2 {
    margin-bottom: var(--space-lg);
  }
  
  .post-netwerken-beroepsverandering-nederland .strategy-card,
  .post-netwerken-beroepsverandering-nederland .networking-example,
  .post-netwerken-beroepsverandering-nederland .tips-container,
  .post-netwerken-beroepsverandering-nederland .conclusion {
    padding: var(--space-md);
  }
}

.post-omscholing-subsidies-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

.post-omscholing-subsidies-nederland .breadcrumbs a {
  color: var(--color-text-light);
}

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

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

.post-omscholing-subsidies-nederland .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(30, 92, 151, 0.9) 0%, rgba(30, 92, 151, 0.7) 100%);
  z-index: 1;
}

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

.post-omscholing-subsidies-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-omscholing-subsidies-nederland .post-hero .lead {
  color: white;
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: 0;
  max-width: 800px;
  opacity: 0.95;
}

/* Content Sections */
.post-omscholing-subsidies-nederland .content-section {
  padding: var(--space-3xl) 0;
}

.post-omscholing-subsidies-nederland .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-omscholing-subsidies-nederland .content-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: var(--space-xs);
}

.post-omscholing-subsidies-nederland .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin: var(--space-xl) 0;
}

.post-omscholing-subsidies-nederland .content-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.post-omscholing-subsidies-nederland .content-grid.reverse .content-image {
  order: -1;
}

.post-omscholing-subsidies-nederland .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-omscholing-subsidies-nederland .content-image-full {
  margin: var(--space-xl) 0;
}

.post-omscholing-subsidies-nederland .content-image-full img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Strategy Cards */
.post-omscholing-subsidies-nederland .strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-omscholing-subsidies-nederland .strategy-card {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.post-omscholing-subsidies-nederland .strategy-card p {
  margin-bottom: var(--space-md);
}

.post-omscholing-subsidies-nederland .example-box {
  background-color: var(--color-neutral-light);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  margin-top: auto;
}

.post-omscholing-subsidies-nederland .example-box h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.post-omscholing-subsidies-nederland .example-text {
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: 0;
}

/* Tips List */
.post-omscholing-subsidies-nederland .tips-list {
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
}

.post-omscholing-subsidies-nederland .tips-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-omscholing-subsidies-nederland .tips-list li strong {
  color: var(--color-primary);
}

/* Q&A Section */
.post-omscholing-subsidies-nederland .qa-section {
  margin: var(--space-xl) 0;
}

.post-omscholing-subsidies-nederland .qa-item {
  margin-bottom: var(--space-lg);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
  padding-bottom: var(--space-lg);
}

.post-omscholing-subsidies-nederland .qa-item:last-child {
  border-bottom: none;
}

.post-omscholing-subsidies-nederland .question {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  position: relative;
  padding-left: var(--space-lg);
}

.post-omscholing-subsidies-nederland .question::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.post-omscholing-subsidies-nederland .answer {
  padding-left: var(--space-lg);
  position: relative;
}

.post-omscholing-subsidies-nederland .answer::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-primary);
}

.post-omscholing-subsidies-nederland .answer p {
  margin-bottom: 0;
}

/* Conclusion Box */
.post-omscholing-subsidies-nederland .conclusion-box {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
}

.post-omscholing-subsidies-nederland .conclusion-box h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.post-omscholing-subsidies-nederland .conclusion-box ul {
  margin: 0;
  padding-left: var(--space-xl);
}

.post-omscholing-subsidies-nederland .conclusion-box li {
  margin-bottom: var(--space-sm);
}

/* Related Posts Section */
.post-omscholing-subsidies-nederland .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

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

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

.post-omscholing-subsidies-nederland .post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-omscholing-subsidies-nederland .post-card h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

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

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

/* Responsive Styles */
@media (max-width: 991px) {
  .post-omscholing-subsidies-nederland .strategy-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-omscholing-subsidies-nederland .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .post-omscholing-subsidies-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-omscholing-subsidies-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-omscholing-subsidies-nederland .content-grid,
  .post-omscholing-subsidies-nederland .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-omscholing-subsidies-nederland .content-grid.reverse .content-image {
    order: 0;
  }
  
  .post-omscholing-subsidies-nederland .strategy-cards {
    grid-template-columns: 1fr;
  }
  
  .post-omscholing-subsidies-nederland .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-omscholing-subsidies-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
}

/* Base Styles */
.post-omscholing-bijscholing-subsidies-mogelijkheden {
  color: var(--color-text);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-omscholing-bijscholing-subsidies-mogelijkheden .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-omscholing-bijscholing-subsidies-mogelijkheden .post-hero {
  padding: var(--space-3xl) 0;
  background-color: white;
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .post-hero h1 {
  font-size: var(--text-4xl);
  color: var(--color-primary);
  max-width: 800px;
  margin-bottom: var(--space-lg);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .post-hero .lead {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Content Sections */
.post-omscholing-bijscholing-subsidies-mogelijkheden .content-section {
  padding: var(--space-4xl) 0;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .section-content.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .section-content.reverse .text-content {
  direction: ltr;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .section-content.reverse .image-container {
  direction: ltr;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .text-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden h2 {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden h3 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .content-section p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .bg-light {
  background-color: var(--color-neutral-light);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-list li {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: baseline;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .highlight {
  color: var(--color-primary);
  font-weight: 600;
}

/* Feature Table */
.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-table {
  width: 100%;
  margin: var(--space-md) 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-row:nth-child(odd) {
  background-color: var(--color-neutral-light);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-row:first-child {
  background-color: var(--color-primary);
  color: white;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .feature-cell {
  padding: var(--space-sm) var(--space-md);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

/* Blue Background Section */
.post-omscholing-bijscholing-subsidies-mogelijkheden .text-section {
  color: white;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .light-heading {
  color: white;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .step-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .step-number {
  background-color: var(--color-secondary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .step-content {
  flex-grow: 1;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .step-content h3 {
  color: white;
  margin-top: 0;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .step-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .cta-container {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .cta-heading {
  color: white;
  margin-bottom: var(--space-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

/* Tips Section */
.post-omscholing-bijscholing-subsidies-mogelijkheden .tips-section {
  background-color: white;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .tip-card {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .tip-card h3 {
  margin-top: 0;
  font-size: var(--text-lg);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .tip-card p {
  margin-bottom: 0;
}

/* Success Story */
.post-omscholing-bijscholing-subsidies-mogelijkheden .success-story {
  margin-top: var(--space-2xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .quote-container {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden blockquote {
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-lg);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden blockquote::before {
  content: """;
  font-size: var(--text-5xl);
  color: var(--color-primary);
  position: absolute;
  left: -10px;
  top: -20px;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .quote-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .author-info {
  display: flex;
  flex-direction: column;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .author-info strong {
  color: var(--color-text);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .author-info span {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

/* Related Posts */
.post-omscholing-bijscholing-subsidies-mogelijkheden .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .related-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
  background-color: white;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .related-post-card h3 {
  font-size: var(--text-md);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .related-post-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-omscholing-bijscholing-subsidies-mogelijkheden .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-omscholing-bijscholing-subsidies-mogelijkheden .section-content,
  .post-omscholing-bijscholing-subsidies-mogelijkheden .section-content.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-xl);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden h2 {
    font-size: var(--text-2xl);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden h3 {
    font-size: var(--text-lg);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden blockquote {
    font-size: var(--text-md);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .feature-row {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 767px) {
  .post-omscholing-bijscholing-subsidies-mogelijkheden .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .hero-buttons .btn {
    width: 100%;
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .step-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .post-omscholing-bijscholing-subsidies-mogelijkheden .feature-row {
    grid-template-columns: 1fr;
  }
}

/* Base Page Styles */
.post-loopbaancoaching-nederland {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-neutral-light);
}

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

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

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

/* Hero Section */
.post-loopbaancoaching-nederland .post-hero {
  background-color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

.post-loopbaancoaching-nederland .post-hero h1 {
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.post-loopbaancoaching-nederland .post-hero .lead {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.post-loopbaancoaching-nederland .hero-image-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-loopbaancoaching-nederland .hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal);
}

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

.post-loopbaancoaching-nederland .content-section h2 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-loopbaancoaching-nederland .content-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

.post-loopbaancoaching-nederland .content-section p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Section 1 - Grid Layout */
.post-loopbaancoaching-nederland .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

/* Section 2 - Criteria List */
.post-loopbaancoaching-nederland .criteria-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-loopbaancoaching-nederland .criteria-item {
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background-color: white;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-loopbaancoaching-nederland .criteria-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-loopbaancoaching-nederland .criteria-item h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
  padding-bottom: var(--space-sm);
}

.post-loopbaancoaching-nederland .criteria-item p {
  margin-bottom: 0;
}

.post-loopbaancoaching-nederland .image-container {
  margin: var(--space-xl) 0;
}

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

/* Section 3 - Columns and Key Takeaways */
.post-loopbaancoaching-nederland .content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-loopbaancoaching-nederland .key-takeaways {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.post-loopbaancoaching-nederland .key-takeaways h3 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-loopbaancoaching-nederland .key-takeaways ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-loopbaancoaching-nederland .key-takeaways li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-loopbaancoaching-nederland .key-takeaways strong {
  color: var(--color-primary);
}

.post-loopbaancoaching-nederland .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: rgba(46, 196, 182, 0.1);
  border-radius: var(--border-radius-lg);
  border: var(--border-width-thin) solid var(--color-accent);
}

.post-loopbaancoaching-nederland .conclusion p {
  margin-bottom: 0;
  font-size: var(--text-md);
}

/* Related Posts Section */
.post-loopbaancoaching-nederland .related-posts {
  background-color: white;
  padding: var(--space-3xl) 0;
  border-top: var(--border-width-thin) solid var(--color-neutral);
}

.post-loopbaancoaching-nederland .related-posts h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-2xl);
  position: relative;
  padding-bottom: var(--space-sm);
  display: inline-block;
}

.post-loopbaancoaching-nederland .related-posts h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

.post-loopbaancoaching-nederland .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.post-loopbaancoaching-nederland .post-card a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
  height: 100%;
}

.post-loopbaancoaching-nederland .post-image {
  height: 200px;
  overflow: hidden;
}

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

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

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

.post-loopbaancoaching-nederland .post-content h3 {
  font-size: var(--text-md);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-loopbaancoaching-nederland .post-card:hover .post-content h3 {
  color: var(--color-secondary);
}

.post-loopbaancoaching-nederland .post-content p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Background Variations */
.post-loopbaancoaching-nederland .bg-light {
  background-color: var(--color-neutral-light);
}

.post-loopbaancoaching-nederland .bg-white {
  background-color: white;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-loopbaancoaching-nederland .content-grid,
  .post-loopbaancoaching-nederland .criteria-list,
  .post-loopbaancoaching-nederland .content-columns,
  .post-loopbaancoaching-nederland .post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .post-loopbaancoaching-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-loopbaancoaching-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-loopbaancoaching-nederland .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-loopbaancoaching-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-loopbaancoaching-nederland .content-grid,
  .post-loopbaancoaching-nederland .criteria-list,
  .post-loopbaancoaching-nederland .content-columns,
  .post-loopbaancoaching-nederland .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-loopbaancoaching-nederland .content-image {
    margin-top: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .post-loopbaancoaching-nederland .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-loopbaancoaching-nederland .content-section h2 {
    font-size: var(--text-xl);
  }
  
  .post-loopbaancoaching-nederland .content-section h3 {
    font-size: var(--text-lg);
  }
}

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

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

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

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

.privacy-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

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

.privacy-page__intro .lead {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width-thin) solid var(--color-neutral);
}

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

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

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

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

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

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

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

/* Terms of Service Page Styling */
.terms-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  color: var(--color-text);
}

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

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

.terms-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 0;
}

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page__section {
    padding: var(--space-lg);
  }
  
  .terms-page h1 {
    font-size: var(--text-2xl);
  }
  
  .terms-page h2 {
    font-size: var(--text-lg);
  }
  
  .terms-page p, 
  .terms-page__list li {
    font-size: var(--text-sm);
  }
}

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

.cookie-page .container {
  max-width: 800px;
}

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

.cookie-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-md);
  font-style: italic;
}

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

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

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

.cookie-page__subsection h3 {
  color: var(--color-text);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  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);
  color: var(--color-text-light);
}

.cookie-page p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-light);
}

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

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

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

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

.thank-page__icon {
  margin: 0 auto var(--space-xl);
  width: var(--icon-xl);
  height: var(--icon-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-pill);
  padding: var(--space-lg);
}

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

.thank-page__message {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

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

.thank-page__info {
  margin-bottom: var(--space-xl);
  text-align: left;
  background-color: var(--color-neutral-light);
  box-shadow: var(--shadow-sm);
}

.thank-page__info-title {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.thank-page__info-list {
  list-style-position: inside;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.thank-page__info-list li {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

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

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

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

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

.error-404__container {
  width: 100%;
  max-width: 800px;
}

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

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

.error-404__number::after {
  content: "";
  position: absolute;
  bottom: calc(var(--space-xs) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-pill);
}

.error-404__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.error-404__message {
  font-size: var(--text-md);
  max-width: 500px;
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
}

.error-404__button {
  min-width: 220px;
  transition: all var(--transition-normal);
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .error-404 {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .error-404__number {
    font-size: var(--text-4xl);
  }
  
  .error-404__title {
    font-size: var(--text-xl);
  }
  
  .error-404__message {
    font-size: var(--text-base);
  }
  
  .error-404__button {
    min-width: 180px;
  }
}
