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

:root {
  /* Color Scheme - Modern Dutch-inspired palette with professional touch */
  --color-primary: #0077b6; /* Deep blue - trustworthy, professional */
  --color-primary-light: #90e0ef; /* Light blue accent */
  --color-secondary: #ff8c42; /* Warm orange - energy, confidence */
  --color-secondary-light: #ffb385; /* Light orange */
  --color-accent: #2ec4b6; /* Teal - uniqueness, innovation */
  --color-background: #f8f9fa; /* Off-white background */
  --color-background-alt: #e9ecef; /* Alternative background */
  --color-text-dark: #212529; /* Nearly black text */
  --color-text-medium: #495057; /* Medium gray text */
  --color-text-light: #6c757d; /* Light gray text */
  --color-white: #ffffff;
  --color-success: #38b000;
  --color-error: #d62828;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Font Sizes - Desktop */
  --fs-h1: 3.5rem;
  --fs-h2: 2.5rem;
  --fs-h3: 2rem;
  --fs-h4: 1.5rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1.1rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  /* Line Heights */
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Section Padding */
  --section-padding-desktop: 100px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 50px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-focus: 0 0 0 3px rgba(0, 119, 182, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 0.75rem;
  --icon-sm: 1rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

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

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

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
}

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

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

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

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

p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  color: var(--color-text-medium);
}

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

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

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

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

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

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

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

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

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--fs-h6);
}

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

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

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

/* Form Elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid #dee2e6;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
}

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

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  :root {
    --fs-h1: 2.75rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.375rem;
    --fs-h5: 1.125rem;
  }
  
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-h1: 2.25rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-h5: 1.1rem;
    --fs-h6: 1rem;
    --fs-body: 0.95rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
  }
  
  p {
    margin-bottom: var(--space-md);
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
  }
}
.header {
  width: 100%;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  position: relative;
}

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

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

.header__logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition-normal);
}

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

.header__logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-h4);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-tagline {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-medium);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--transition-normal);
  position: relative;
}

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

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

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

.header__cta {
  margin-left: var(--space-xl);
}

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

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--fs-h4);
  color: var(--color-primary);
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-normal);
}

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

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

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

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

.header__mobile-close {
  background: none;
  border: none;
  font-size: var(--fs-h4);
  color: var(--color-text-medium);
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-normal);
}

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

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

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

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

.header__mobile-nav-link {
  font-family: var(--font-secondary);
  font-size: var(--fs-h5);
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  display: block;
  padding: var(--space-sm) 0;
  transition: color var(--transition-normal), transform var(--transition-normal);
}

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

.header__mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.header__mobile-cta {
  width: 100%;
}

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

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

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

.header__accent-bar {
  background-color: var(--color-primary-light);
  padding: var(--space-sm) var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-xxxl);
}

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

.header__accent-icon {
  color: var(--color-primary);
  font-weight: 700;
}

.header__accent-text {
  font-size: var(--fs-small);
  color: var(--color-text-medium);
  font-weight: 500;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__mobile-menu {
    display: flex;
  }
  
  .header__accent-bar {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    align-items: center;
  }
}

@media (max-width: 767px) {
  .header__container {
    padding: var(--space-md);
  }
  
  .header__accent-bar {
    display: none;
  }
}

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

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

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

.main .hero-text {
  grid-area: text;
  max-width: 600px;
}

.main .hero-text h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  color: var(--color-text-dark);
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

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

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

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

.main .hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.main .hero-shape-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-pill);
  opacity: 0.3;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.main .hero-shape-2 {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: var(--color-secondary-light);
  border-radius: var(--radius-pill);
  opacity: 0.3;
  z-index: -1;
  animation: float 8s ease-in-out infinite reverse;
}

.main .hero-stats {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: var(--space-md);
  z-index: 2;
}

.main .stat-item {
  background-color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .stat-number {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-h4);
  color: var(--color-primary);
}

.main .stat-text {
  font-size: var(--fs-small);
  color: var(--color-text-medium);
  text-align: center;
}

.main .hero-wave {
  position: absolute;
  transform: rotate(180deg);
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill: %23ffffff;'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

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

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

.main .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
}

.main .section-header h2 {
  font-size: var(--fs-h2);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

.main .post-content p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

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

/* Services Section */
.main .services {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-background-alt);
  position: relative;
}

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

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

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

.main .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  z-index: 1;
}

.main .service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.main .service-card:hover .service-icon {
  transform: scale(1.1);
  background-color: var(--color-primary);
}

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

.main .service-card:hover .service-icon i {
  color: var(--color-white);
}

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

.main .service-card p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

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

.main .service-features li {
  display: flex;
  align-items: center;
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-sm);
}

.main .service-features li i {
  color: var(--color-success);
  margin-right: var(--space-sm);
  font-size: var(--icon-sm);
}

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

.main .process-flow {
  position: relative;
}

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

.main .process-step {
  display: flex;
  margin-bottom: var(--space-xxl);
  position: relative;
}

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

.main .step-number {
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-right: var(--space-xl);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.main .step-content {
  flex-grow: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .process-step:hover .step-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

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

.main .step-content p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

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

/* Testimonials Section */
.main .testimonials {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-background-alt);
  position: relative;
}

.main .testimonials-slider {
  display: flex;
  gap: var(--space-xl);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.main .testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  flex: 0 0 calc(33.333% - var(--space-xl));
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.main .quote-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
}

.main .testimonial-content p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.main .testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.main .testimonial-rating i {
  color: var(--color-secondary);
}

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

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  margin-right: var(--space-md);
  border: 3px solid var(--color-primary-light);
}

.main .author-info h4 {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

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

.main .testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.main .indicator {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary-light);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.main .indicator.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

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

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

.main .stat-card {
  text-align: center;
  padding: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.main .stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.main .stat-icon {
  font-size: var(--icon-xl);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.main .stat-number {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.main .stat-title {
  font-size: var(--fs-body);
  color: var(--color-white);
  opacity: 0.8;
}

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

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

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

.main .contact-content .section-header {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.main .contact-content .section-header h2::after {
  left: 0;
  transform: none;
}

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

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

.main .contact-item i {
  font-size: var(--icon-md);
  color: var(--color-primary);
  margin-right: var(--space-md);
  margin-top: 4px;
}

.main .contact-item p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: 0;
}

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

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

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

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

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

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

.main .form-checkbox label {
  margin-bottom: 0;
  font-size: var(--fs-small);
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  display: none;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--color-background-alt);
}

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

.main .cookie-content p {
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-text-medium);
}

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

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

@media (max-width: 1023px) {
  .main .hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .featured-posts,
  .main .services,
  .main .process,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .hero-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "text"
      "visual";
    gap: var(--space-xl);
    text-align: center;
  }
  
  .main .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonials-slider {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main .testimonial-card {
    flex: 0 0 calc(50% - var(--space-xl));
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .contact-content {
    max-width: 100%;
  }
  
  .main .contact-content .section-header {
    text-align: center;
  }
  
  .main .contact-content .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .main .hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .main .featured-posts,
  .main .services,
  .main .process,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-mobile) 0;
  }
  
  .main .hero-stats {
    position: static;
    margin-top: var(--space-lg);
    justify-content: center;
  }
  
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .services-grid {
    grid-template-columns: 1fr;
  }
  
  .main .testimonial-card {
    flex: 0 0 100%;
  }
  
  .main .process-step {
    flex-direction: column;
  }
  
  .main .step-number {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .main .process-flow::before {
    left: 50px;
    top: 50px;
    bottom: auto;
    width: 0;
    height: calc(100% - 100px);
  }
  
  .main .stats-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  position: relative;
  background-color: var(--color-background-alt);
  padding-top: var(--space-xxl);
  margin-top: var(--space-xxxl);
  font-family: var(--font-primary);
}

.footer__top-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: radial-gradient(ellipse at 50% 0%, var(--color-background-alt) 0%, transparent 70%);
  z-index: -1;
}

.footer__top-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, transparent 33%, var(--color-background-alt) 33%, var(--color-background-alt) 66%, transparent 66%);
  background-size: 25px 50px;
}

.footer__main {
  position: relative;
  padding-bottom: var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid rgba(108, 117, 125, 0.2);
}

.footer__brand {
  position: relative;
  padding-right: var(--space-xl);
}

.footer__title {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

.footer__title:hover::after {
  width: 100%;
}

.footer__tagline {
  color: var(--color-text-medium);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
  max-width: 90%;
}

.footer__accent-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  background-color: var(--color-primary-light);
  opacity: 0.2;
  transform: rotate(45deg);
  z-index: -1;
}

.footer__nav-section {
  padding-top: var(--space-sm);
}

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

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

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

.footer__nav-link {
  color: var(--color-text-medium);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-md);
}

.footer__nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

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

.footer__nav-link:hover::before {
  background-color: var(--color-secondary);
  transform: translateY(-50%) scale(1.3);
}

.footer__cta {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.footer__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.footer__cta-title {
  color: var(--color-text-dark);
  font-size: var(--fs-h6);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer__cta-text {
  color: var(--color-text-medium);
  font-size: var(--fs-small);
  margin-bottom: var(--space-lg);
}

.footer__cta-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
}

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

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

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

.footer__legal-item {
  position: relative;
}

.footer__legal-item:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: calc(-1 * var(--space-md));
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  font-size: var(--fs-xs);
}

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

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

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

.flag-stripe {
  flex: 1;
}

.flag-red {
  background-color: #AE1C28;
}

.flag-white {
  background-color: #FFFFFF;
}

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

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-xxl);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  
  .footer__accent-shape {
    display: none;
  }
  
  .footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: var(--space-xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__nav-section {
    border-bottom: 1px solid rgba(108, 117, 125, 0.1);
    padding-bottom: var(--space-lg);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
  }
  
  .footer__legal {
    width: 100%;
  }
  
  .footer__legal-links {
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
  }
  
  .footer__netherlands-flag {
    align-self: center;
    margin-top: var(--space-md);
  }
}

/* Privacy Policy Page Styles */
.privacy-page {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
}

.privacy-page__container {
  max-width: 900px;
}

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

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

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

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

.privacy-page__section-title {
  font-size: var(--fs-h3);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
  font-weight: 600;
}

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

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

.privacy-page__list-item {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-xs);
}

.privacy-page__contact-info {
  background-color: var(--color-background-alt);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-page__contact-item {
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-medium);
}

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .privacy-page {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-md);
  }
  
  .privacy-page__list {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-lg);
  }
}

/* Terms of Service Page Styles */
.terms-page {
  background-color: var(--color-background);
  padding: var(--space-xxl) 0;
  color: var(--color-text-dark);
}

.terms-page__container {
  max-width: 900px;
}

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-family: var(--font-secondary);
  font-weight: 700;
  text-align: center;
}

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

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

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

.terms-page__section-title {
  color: var(--color-text-dark);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-sm);
}

.terms-page__subsection-title {
  color: var(--color-text-medium);
  font-size: var(--fs-h5);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }
  
  .terms-page__subsection-title {
    font-size: var(--fs-h6);
    margin-top: var(--space-lg);
  }
  
  .terms-page__list li {
    margin-bottom: var(--space-sm);
  }
}

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

.cookie-page__container {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-page__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h1);
  color: var(--color-primary);
  margin-bottom: var(--space-xxl);
  text-align: center;
  font-weight: 700;
}

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

.cookie-page__heading {
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-sm);
}

.cookie-page__subheading {
  font-family: var(--font-secondary);
  font-size: var(--fs-h5);
  color: var(--color-text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

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

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

.cookie-page__list-item {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

.cookie-page__footer {
  margin-top: var(--space-xxxl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-text-light);
}

.cookie-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  text-align: center;
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__title {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__heading {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subheading {
    font-size: var(--fs-h6);
  }
}

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

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

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

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

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

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

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

.thank-page__text {
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

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

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

.thank-page__note {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .thank-page {
    padding: var(--section-padding-tablet);
  }
  
  .thank-page__content {
    padding: var(--space-xxxl);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--section-padding-desktop);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-white);
  padding: var(--space-xxl) 0;
  box-shadow: var(--shadow-sm);
}

.category-page__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.category-page__hero h1 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h1);
}

.category-page__hero-description {
  font-size: var(--fs-h5);
  line-height: var(--lh-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.category-page__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-background-alt);
}

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

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

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

/* Tips Section */
.category-page__tips {
  background-color: var(--color-background-alt);
  padding: var(--section-padding-desktop) 0;
}

.category-page__tips-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.category-page__tips-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.tip-item {
  display: flex;
  gap: var(--space-lg);
}

.tip-item__number {
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.tip-item__content h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.tip-item__content p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: 0;
}

/* Stats Section */
.category-page__stats {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

.category-page__stats-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  font-size: var(--fs-h6);
  color: var(--color-text-medium);
}

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

.stat-card {
  background-color: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card__number {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.stat-card__description {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: 0;
}

.category-page__stats-conclusion {
  text-align: center;
  max-width: 800px;
  margin: var(--space-xxl) auto 0;
  font-size: var(--fs-body);
  color: var(--color-text-medium);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .category-page__tips {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__posts,
  .category-page__stats {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__stats-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero {
    padding: var(--space-xl) 0;
  }
  
  .category-page__hero-description {
    font-size: var(--fs-body);
  }
  
  .category-page__section-title {
    margin-bottom: var(--space-xl);
  }
  
  .category-page__tips,
  .category-page__posts,
  .category-page__stats {
    padding: var(--section-padding-mobile) 0;
  }
  
  .tip-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

  /* Base Post Styles */
  .post-lichaamstaal-non-verbale-communicatie {
    overflow-x: hidden;
  }

  /* Breadcrumbs */
  .post-lichaamstaal-non-verbale-communicatie .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-text-light);
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-background-alt);
  }

  .post-lichaamstaal-non-verbale-communicatie .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
  }

  .post-lichaamstaal-non-verbale-communicatie .breadcrumbs a:hover {
    color: var(--color-primary);
  }

  /* Hero Section */
  .post-lichaamstaal-non-verbale-communicatie .post-hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .post-lichaamstaal-non-verbale-communicatie .post-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-h1);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .post-lichaamstaal-non-verbale-communicatie .post-hero .lead {
    font-size: var(--fs-h5);
    line-height: 1.5;
    color: var(--color-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }

  /* Content Sections */
  .post-lichaamstaal-non-verbale-communicatie .content-section {
    padding: var(--section-padding-desktop) 0;
  }

  .post-lichaamstaal-non-verbale-communicatie .section-first {
    background-color: var(--color-white);
  }

  .post-lichaamstaal-non-verbale-communicatie .section-second {
    background-color: var(--color-background);
  }

  .post-lichaamstaal-non-verbale-communicatie .section-third {
    background-color: var(--color-white);
  }

  .post-lichaamstaal-non-verbale-communicatie .section-content {
    display: flex;
    align-items: center;
    gap: var(--space-xxl);
  }

  .post-lichaamstaal-non-verbale-communicatie .text-content {
    flex: 1;
  }

  .post-lichaamstaal-non-verbale-communicatie .image-container {
    flex: 0 0 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .post-lichaamstaal-non-verbale-communicatie .center-image {
    margin: var(--space-xl) auto;
    max-width: 800px;
  }

  .post-lichaamstaal-non-verbale-communicatie img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal);
  }

  .post-lichaamstaal-non-verbale-communicatie .image-container:hover img {
    transform: scale(1.02);
  }

  /* Signals Grid */
  .post-lichaamstaal-non-verbale-communicatie .signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card h3 {
    color: var(--color-primary);
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card ul {
    padding-left: var(--space-lg);
    margin-bottom: 0;
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-medium);
  }

  .post-lichaamstaal-non-verbale-communicatie .signal-card li strong {
    color: var(--color-text-dark);
  }

  /* Practice Container */
  .post-lichaamstaal-non-verbale-communicatie .practice-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .post-lichaamstaal-non-verbale-communicatie .practice-item {
    background-color: var(--color-background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
  }

  .post-lichaamstaal-non-verbale-communicatie .practice-item h4 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--fs-h6);
  }

  .post-lichaamstaal-non-verbale-communicatie .practice-item p {
    margin-bottom: 0;
  }

  /* Related Posts Section */
  .post-lichaamstaal-non-verbale-communicatie .related-posts-section {
    background-color: var(--color-background);
    padding: var(--section-padding-desktop) 0;
  }

  .post-lichaamstaal-non-verbale-communicatie .related-posts-section h2 {
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--color-text-dark);
  }

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

  .post-lichaamstaal-non-verbale-communicatie .related-post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
  }

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

  .post-lichaamstaal-non-verbale-communicatie .related-post-card h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }

  .post-lichaamstaal-non-verbale-communicatie .related-post-card h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }

  .post-lichaamstaal-non-verbale-communicatie .related-post-card h3 a:hover {
    color: var(--color-secondary);
  }

  .post-lichaamstaal-non-verbale-communicatie .related-post-card p {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
  }

  .post-lichaamstaal-non-verbale-communicatie .related-post-card .btn {
    align-self: flex-start;
  }

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-lichaamstaal-non-verbale-communicatie .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .related-posts-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .signals-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-lichaamstaal-non-verbale-communicatie .section-content {
      flex-direction: column;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .image-container {
      flex: 0 0 100%;
      margin-top: var(--space-lg);
    }
  }

  @media (max-width: 767px) {
    .post-lichaamstaal-non-verbale-communicatie .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .related-posts-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .post-hero {
      padding: var(--space-xl) 0;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .signals-grid,
    .post-lichaamstaal-non-verbale-communicatie .practice-container,
    .post-lichaamstaal-non-verbale-communicatie .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-lichaamstaal-non-verbale-communicatie .post-hero .lead {
      font-size: var(--fs-body);
    }
  }

/* Base Styles for the Post Page */
.post-voorbereiding-lastige-sollicitatievragen {
  color: var(--color-text-dark);
  background-color: var(--color-background);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-voorbereiding-lastige-sollicitatievragen .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.post-voorbereiding-lastige-sollicitatievragen .breadcrumbs a {
  color: var(--color-text-medium);
  transition: color var(--transition-fast);
}

.post-voorbereiding-lastige-sollicitatievragen .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Hero Section */
.post-voorbereiding-lastige-sollicitatievragen .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-voorbereiding-lastige-sollicitatievragen .post-hero h1 {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-voorbereiding-lastige-sollicitatievragen .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

.post-voorbereiding-lastige-sollicitatievragen .hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

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

.post-voorbereiding-lastige-sollicitatievragen .section-common {
  background-color: var(--color-white);
}

.post-voorbereiding-lastige-sollicitatievragen .section-alternate {
  background-color: var(--color-background-alt);
}

.post-voorbereiding-lastige-sollicitatievragen .section-final {
  background-color: var(--color-white);
}

.post-voorbereiding-lastige-sollicitatievragen .content-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-voorbereiding-lastige-sollicitatievragen .content-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

.post-voorbereiding-lastige-sollicitatievragen .content-section h3 {
  color: var(--color-text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

.post-voorbereiding-lastige-sollicitatievragen .content-section img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

/* Challenging Questions Section */
.post-voorbereiding-lastige-sollicitatievragen .challenging-questions {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-voorbereiding-lastige-sollicitatievragen .challenging-questions h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .challenging-questions ul {
  margin-bottom: 0;
  padding-left: var(--space-xl);
}

.post-voorbereiding-lastige-sollicitatievragen .challenging-questions li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* STAR Method Section */
.post-voorbereiding-lastige-sollicitatievragen .strategy-framework {
  margin: var(--space-xl) 0;
}

.post-voorbereiding-lastige-sollicitatievragen .star-method {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.post-voorbereiding-lastige-sollicitatievragen .star-item {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-voorbereiding-lastige-sollicitatievragen .star-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-voorbereiding-lastige-sollicitatievragen .star-item h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-voorbereiding-lastige-sollicitatievragen .star-item p {
  margin-bottom: 0;
}

/* Quick Tips Section */
.post-voorbereiding-lastige-sollicitatievragen .quick-tips {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-voorbereiding-lastige-sollicitatievragen .quick-tips h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .quick-tips ul {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .quick-tips li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Practice Techniques Section */
.post-voorbereiding-lastige-sollicitatievragen .practice-techniques {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-voorbereiding-lastige-sollicitatievragen .practice-techniques h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .practice-techniques ol {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .practice-techniques li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Key Takeaways Section */
.post-voorbereiding-lastige-sollicitatievragen .key-takeaways {
  background-color: var(--color-secondary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  border-left: 5px solid var(--color-secondary);
}

.post-voorbereiding-lastige-sollicitatievragen .key-takeaways h3 {
  color: var(--color-text-dark);
  margin-top: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .key-takeaways ul {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-voorbereiding-lastige-sollicitatievragen .key-takeaways li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
  color: var(--color-text-dark);
}

.post-voorbereiding-lastige-sollicitatievragen .conclusion {
  font-size: var(--fs-h6);
  font-weight: 500;
  line-height: var(--lh-subheading);
  color: var(--color-text-medium);
  margin-top: var(--space-xxl);
  border-top: 1px solid var(--color-background-alt);
  padding-top: var(--space-lg);
}

/* Related Posts Section */
.post-voorbereiding-lastige-sollicitatievragen .related-posts-section {
  background-color: var(--color-background-alt);
  padding: var(--section-padding-desktop) 0;
}

.post-voorbereiding-lastige-sollicitatievragen .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-primary);
}

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

.post-voorbereiding-lastige-sollicitatievragen .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.post-voorbereiding-lastige-sollicitatievragen .related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-voorbereiding-lastige-sollicitatievragen .related-post-card h3 {
  font-size: var(--fs-h5);
  margin: var(--space-lg) var(--space-lg) var(--space-md);
  color: var(--color-primary);
}

.post-voorbereiding-lastige-sollicitatievragen .related-post-card p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-voorbereiding-lastige-sollicitatievragen .related-post-card .btn {
  margin: 0 var(--space-lg) var(--space-lg);
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-voorbereiding-lastige-sollicitatievragen .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .star-method {
    grid-template-columns: 1fr;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .post-voorbereiding-lastige-sollicitatievragen .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-voorbereiding-lastige-sollicitatievragen .challenging-questions,
  .post-voorbereiding-lastige-sollicitatievragen .quick-tips,
  .post-voorbereiding-lastige-sollicitatievragen .practice-techniques,
  .post-voorbereiding-lastige-sollicitatievragen .key-takeaways {
    padding: var(--space-lg);
  }
}

  /* Base Styles for Post Page */
  .post-online-sollicitatiegesprekken {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background-color: var(--color-background);
  }

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

  .post-online-sollicitatiegesprekken .breadcrumbs a {
    color: var(--color-text-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
  }

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

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

  .post-online-sollicitatiegesprekken .post-hero h1 {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

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

  /* Content Sections */
  .post-online-sollicitatiegesprekken .content-section {
    padding: var(--section-padding-desktop) 0;
    position: relative;
  }

  .post-online-sollicitatiegesprekken .technical-setup {
    background-color: var(--color-white);
  }

  .post-online-sollicitatiegesprekken .virtual-presence {
    background-color: var(--color-background-alt);
  }

  .post-online-sollicitatiegesprekken .interview-strategies {
    background-color: var(--color-white);
  }

  .post-online-sollicitatiegesprekken .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .post-online-sollicitatiegesprekken .section-content {
    padding-right: var(--space-xl);
  }

  .post-online-sollicitatiegesprekken h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-xl);
    color: var(--color-text-dark);
    position: relative;
  }

  .post-online-sollicitatiegesprekken h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
  }

  .post-online-sollicitatiegesprekken h3 {
    font-size: var(--fs-h4);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text-dark);
  }

  .post-online-sollicitatiegesprekken h4 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
  }

  .post-online-sollicitatiegesprekken p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin-bottom: var(--space-lg);
    color: var(--color-text-medium);
  }

  /* Checklist Styles */
  .post-online-sollicitatiegesprekken .checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-xl);
  }

  .post-online-sollicitatiegesprekken .checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-md);
    color: var(--color-text-medium);
  }

  .post-online-sollicitatiegesprekken .checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
  }

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

  .post-online-sollicitatiegesprekken .tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
  }

  .post-online-sollicitatiegesprekken .tip-card {
    padding: var(--space-lg);
    background-color: var(--color-background);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

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

  .post-online-sollicitatiegesprekken .tip-card h4 {
    margin-top: 0;
  }

  .post-online-sollicitatiegesprekken .tip-card p {
    margin-bottom: 0;
    font-size: var(--fs-small);
  }

  /* Strategy Box */
  .post-online-sollicitatiegesprekken .strategy-box {
    background-color: var(--color-primary-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
  }

  .post-online-sollicitatiegesprekken .strategy-box h3 {
    color: var(--color-primary);
    margin-top: 0;
  }

  .post-online-sollicitatiegesprekken .strategy-list {
    padding-left: 20px;
  }

  .post-online-sollicitatiegesprekken .strategy-list li {
    margin-bottom: var(--space-md);
    color: var(--color-text-dark);
  }

  .post-online-sollicitatiegesprekken .strategy-list strong {
    color: var(--color-primary);
    font-weight: 600;
  }

  /* Images */
  .post-online-sollicitatiegesprekken .technical-image,
  .post-online-sollicitatiegesprekken .presence-image,
  .post-online-sollicitatiegesprekken .strategy-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-lg);
  }

  .post-online-sollicitatiegesprekken .image-section {
    margin: var(--space-xl) 0;
    text-align: center;
  }

  .post-online-sollicitatiegesprekken .image-section img {
    max-width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  /* Related Posts Section */
  .post-online-sollicitatiegesprekken .related-posts {
    background-color: var(--color-background-alt);
    padding: var(--section-padding-desktop) 0;
  }

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

  .post-online-sollicitatiegesprekken .related-posts h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .post-online-sollicitatiegesprekken .post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
  }

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

  .post-online-sollicitatiegesprekken .post-card h3 {
    font-size: var(--fs-h5);
    margin-top: 0;
  }

  .post-online-sollicitatiegesprekken .post-card p {
    flex-grow: 1;
    font-size: var(--fs-small);
    color: var(--color-text-light);
  }

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

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-online-sollicitatiegesprekken .post-hero,
    .post-online-sollicitatiegesprekken .content-section,
    .post-online-sollicitatiegesprekken .related-posts {
      padding: var(--section-padding-tablet) 0;
    }

    .post-online-sollicitatiegesprekken .section-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }

    .post-online-sollicitatiegesprekken .section-content {
      padding-right: 0;
    }

    .post-online-sollicitatiegesprekken .tips-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .post-online-sollicitatiegesprekken .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767px) {
    .post-online-sollicitatiegesprekken .post-hero,
    .post-online-sollicitatiegesprekken .content-section,
    .post-online-sollicitatiegesprekken .related-posts {
      padding: var(--section-padding-mobile) 0;
    }

    .post-online-sollicitatiegesprekken .post-hero h1 {
      font-size: var(--fs-h2);
    }

    .post-online-sollicitatiegesprekken .post-hero .lead {
      font-size: var(--fs-body);
    }

    .post-online-sollicitatiegesprekken h2 {
      font-size: var(--fs-h3);
    }

    .post-online-sollicitatiegesprekken .tips-grid,
    .post-online-sollicitatiegesprekken .posts-grid {
      grid-template-columns: 1fr;
    }

    .post-online-sollicitatiegesprekken .image-section img {
      max-width: 100%;
    }
  }

/* Base Styles for Post Page */
.post-cv-motivatiebrief-optimalisatie {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

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

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

.post-cv-motivatiebrief-optimalisatie .breadcrumbs a:hover {
  color: var(--color-primary);
}

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

.post-cv-motivatiebrief-optimalisatie .post-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.post-cv-motivatiebrief-optimalisatie .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-text-medium);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.post-cv-motivatiebrief-optimalisatie .hero-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

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

.post-cv-motivatiebrief-optimalisatie .section-light {
  background-color: var(--color-white);
}

.post-cv-motivatiebrief-optimalisatie .section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.post-cv-motivatiebrief-optimalisatie .section-dark h2,
.post-cv-motivatiebrief-optimalisatie .section-dark h3,
.post-cv-motivatiebrief-optimalisatie .section-dark h4,
.post-cv-motivatiebrief-optimalisatie .section-dark p,
.post-cv-motivatiebrief-optimalisatie .section-dark li {
  color: var(--color-white);
}

.post-cv-motivatiebrief-optimalisatie .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-cv-motivatiebrief-optimalisatie .content-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.post-cv-motivatiebrief-optimalisatie .section-dark h2::after {
  background-color: var(--color-secondary-light);
}

.post-cv-motivatiebrief-optimalisatie .content-section h3 {
  font-size: var(--fs-h3);
  margin: var(--space-xl) 0 var(--space-md);
}

.post-cv-motivatiebrief-optimalisatie .content-section h4 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-cv-motivatiebrief-optimalisatie .section-dark h4 {
  color: var(--color-secondary-light);
}

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

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

.post-cv-motivatiebrief-optimalisatie .content-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.post-cv-motivatiebrief-optimalisatie .content-grid.reverse .content-text {
  direction: ltr;
}

.post-cv-motivatiebrief-optimalisatie .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.post-cv-motivatiebrief-optimalisatie .content-image img:hover {
  transform: scale(1.02);
}

.post-cv-motivatiebrief-optimalisatie .content-image.centered {
  max-width: 800px;
  margin: var(--space-xxl) auto 0;
}

/* Lists */
.post-cv-motivatiebrief-optimalisatie .feature-list,
.post-cv-motivatiebrief-optimalisatie .step-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-cv-motivatiebrief-optimalisatie .feature-list li,
.post-cv-motivatiebrief-optimalisatie .step-list li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
}

.post-cv-motivatiebrief-optimalisatie .feature-list li::before {
  content: '•';
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.post-cv-motivatiebrief-optimalisatie .section-dark .feature-list li::before {
  color: var(--color-secondary-light);
}

.post-cv-motivatiebrief-optimalisatie .step-list {
  counter-reset: step-counter;
}

.post-cv-motivatiebrief-optimalisatie .step-list li {
  counter-increment: step-counter;
}

.post-cv-motivatiebrief-optimalisatie .step-list li::before {
  content: counter(step-counter);
  background-color: var(--color-secondary);
  color: white;
  font-weight: bold;
  position: absolute;
  left: -25px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: var(--fs-small);
}

.post-cv-motivatiebrief-optimalisatie .section-dark .step-list li::before {
  background-color: var(--color-secondary-light);
  color: var(--color-primary);
}

/* Tips Section */
.post-cv-motivatiebrief-optimalisatie .tips-container {
  margin: var(--space-xxl) 0;
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-cv-motivatiebrief-optimalisatie .tips-header {
  margin-bottom: var(--space-lg);
}

.post-cv-motivatiebrief-optimalisatie .tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.post-cv-motivatiebrief-optimalisatie .tip-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-cv-motivatiebrief-optimalisatie .tip-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
}

.post-cv-motivatiebrief-optimalisatie .tip-card p {
  margin-bottom: 0;
}

/* Conclusion Section */
.post-cv-motivatiebrief-optimalisatie .conclusion {
  margin: var(--space-xxl) 0;
  padding: var(--space-xl);
  background-color: var(--color-background-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

/* Related Posts Section */
.post-cv-motivatiebrief-optimalisatie .related-posts-section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-background-alt);
}

.post-cv-motivatiebrief-optimalisatie .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.post-cv-motivatiebrief-optimalisatie .related-posts-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

.post-cv-motivatiebrief-optimalisatie .post-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.post-cv-motivatiebrief-optimalisatie .post-card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-cv-motivatiebrief-optimalisatie .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.post-cv-motivatiebrief-optimalisatie .post-card:hover h3 {
  color: var(--color-secondary);
}

.post-cv-motivatiebrief-optimalisatie .post-card p {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-cv-motivatiebrief-optimalisatie .read-more {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: var(--fs-small);
  position: relative;
  padding-right: 20px;
  align-self: flex-start;
}

.post-cv-motivatiebrief-optimalisatie .read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.post-cv-motivatiebrief-optimalisatie .post-card:hover .read-more::after {
  transform: translate(5px, -50%);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-cv-motivatiebrief-optimalisatie .post-hero,
  .post-cv-motivatiebrief-optimalisatie .content-section,
  .post-cv-motivatiebrief-optimalisatie .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-cv-motivatiebrief-optimalisatie .content-grid {
    gap: var(--space-xl);
  }
  
  .post-cv-motivatiebrief-optimalisatie .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* General Page Styles */
.post-salarisonderhandeling-technieken {
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-salarisonderhandeling-technieken .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-background);
}

.post-salarisonderhandeling-technieken .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

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

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

.post-salarisonderhandeling-technieken .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.post-salarisonderhandeling-technieken .post-hero .lead {
  font-size: var(--fs-h5);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  line-height: var(--lh-subheading);
  color: var(--color-white);
  opacity: 0.9;
}

/* Content Section - General */
.post-salarisonderhandeling-technieken .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-salarisonderhandeling-technieken .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  color: var(--color-text-dark);
  text-align: center;
}

.post-salarisonderhandeling-technieken .content-section h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-salarisonderhandeling-technieken .content-section h4 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

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

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

.post-salarisonderhandeling-technieken .content-section ul li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

/* Section 1 - Value Section */
.post-salarisonderhandeling-technieken .section-value {
  background-color: var(--color-white);
}

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

.post-salarisonderhandeling-technieken .text-content {
  flex: 1;
  min-width: 300px;
}

.post-salarisonderhandeling-technieken .image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.post-salarisonderhandeling-technieken .value-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-salarisonderhandeling-technieken .value-factors {
  background-color: var(--color-background-alt);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.post-salarisonderhandeling-technieken .value-factors li {
  margin-bottom: var(--space-md);
}

.post-salarisonderhandeling-technieken .value-factors li:last-child {
  margin-bottom: 0;
}

/* Section 2 - Strategy Section */
.post-salarisonderhandeling-technieken .section-strategy {
  background-color: var(--color-background-alt);
}

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

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

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

.post-salarisonderhandeling-technieken .strategy-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-sm);
}

.post-salarisonderhandeling-technieken .strategy-image {
  margin-top: var(--space-xl);
  text-align: center;
}

.post-salarisonderhandeling-technieken .strategy-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section 3 - Communication Section */
.post-salarisonderhandeling-technieken .section-communication {
  background-color: var(--color-white);
}

.post-salarisonderhandeling-technieken .communication-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-salarisonderhandeling-technieken .communication-content {
  flex: 2;
  min-width: 300px;
}

.post-salarisonderhandeling-technieken .communication-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-salarisonderhandeling-technieken .communication-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-salarisonderhandeling-technieken .communication-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-salarisonderhandeling-technieken .tip {
  background-color: var(--color-background-alt);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.post-salarisonderhandeling-technieken .tip h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-salarisonderhandeling-technieken .tip p {
  margin-bottom: 0;
}

.post-salarisonderhandeling-technieken .key-takeaways {
  background-color: var(--color-primary-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.post-salarisonderhandeling-technieken .key-takeaways h3 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.post-salarisonderhandeling-technieken .key-takeaways ul {
  columns: 2;
  column-gap: var(--space-xl);
}

.post-salarisonderhandeling-technieken .key-takeaways li {
  margin-bottom: var(--space-md);
  break-inside: avoid;
}

/* Related Posts Section */
.post-salarisonderhandeling-technieken .related-posts-section {
  background-color: var(--color-background-alt);
  padding: var(--section-padding-desktop) 0;
}

.post-salarisonderhandeling-technieken .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-text-dark);
}

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

.post-salarisonderhandeling-technieken .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.post-salarisonderhandeling-technieken .related-post-card p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  color: var(--color-text-medium);
}

.post-salarisonderhandeling-technieken .related-post-card .btn {
  display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-salarisonderhandeling-technieken .post-hero,
  .post-salarisonderhandeling-technieken .content-section,
  .post-salarisonderhandeling-technieken .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-salarisonderhandeling-technieken .key-takeaways ul {
    columns: 1;
  }
  
  .post-salarisonderhandeling-technieken .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-salarisonderhandeling-technieken .post-hero,
  .post-salarisonderhandeling-technieken .content-section,
  .post-salarisonderhandeling-technieken .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-salarisonderhandeling-technieken .section-content,
  .post-salarisonderhandeling-technieken .communication-wrapper {
    flex-direction: column;
  }
  
  .post-salarisonderhandeling-technieken .communication-image {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .post-salarisonderhandeling-technieken .related-posts {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-salarisonderhandeling-technieken .strategy-grid {
    grid-template-columns: 1fr;
  }
  
  .post-salarisonderhandeling-technieken .communication-tips {
    grid-template-columns: 1fr;
  }
}

.privacy-page {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
}

.privacy-page__container {
  max-width: 900px;
}

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

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

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

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

.privacy-page__section-title {
  font-size: var(--fs-h3);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
}

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

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

.privacy-page__list-item {
  font-size: var(--fs-body);
  color: var(--color-text-medium);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

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

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-body);
  color: var(--color-text-medium);
}

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__section-title {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-lg);
  }
}

/* Terms Page Styles */
.terms-page {
  padding: var(--space-xxl) 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.terms-page__container {
  max-width: 900px;
}

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  font-family: var(--font-secondary);
  font-weight: 700;
  text-align: center;
}

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

.terms-page__last-updated p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  font-style: italic;
  margin-bottom: 0;
}

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

.terms-page__section-title {
  color: var(--color-text-dark);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-sm);
}

.terms-page__subsection-title {
  color: var(--color-text-dark);
  font-size: var(--fs-h5);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__title {
    font-size: var(--fs-h2);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h5);
  }
  
  .terms-page__subsection-title {
    font-size: var(--fs-h6);
  }
  
  .terms-page__list {
    margin-left: var(--space-lg);
  }
}

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

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

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

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

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

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

.cookie-page__section-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

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

.cookie-page__subsection-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h5);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

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

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

.cookie-page__list-item {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-medium);
  margin-bottom: var(--space-sm);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }

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

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

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

  .cookie-page__section-title {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }

  .cookie-page__subsection-title {
    font-size: var(--fs-h6);
  }
}

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

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

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

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

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

.thank-page__title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
}

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

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

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

.thank-page__button {
  font-size: var(--fs-body);
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-md);
}

.thank-page__note {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-h3);
  }
  
  .thank-page__message {
    font-size: var(--fs-body);
  }
}

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

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

  .error-404__code {
    font-family: var(--font-secondary);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    text-shadow: var(--shadow-md);
    position: relative;
  }

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

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

  .error-404__message {
    color: var(--color-text-medium);
    margin-bottom: var(--space-xl);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

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

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

  .error-404__button-icon {
    margin-right: var(--space-sm);
  }

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

    .error-404__code {
      font-size: 6rem;
    }

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

    .error-404__message {
      margin-bottom: var(--space-lg);
    }
  }

  @media (max-width: 480px) {
    .error-404__code {
      font-size: 5rem;
    }

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