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

:root {
  /* Color Scheme - Professional Dutch-inspired palette with a modern twist */
  --color-primary: #1e5c97; /* Deep Dutch blue */
  --color-primary-light: #2d7cc0; /* Lighter blue for hover states */
  --color-secondary: #e05826; /* Dutch orange */
  --color-secondary-light: #f47a4d; /* Lighter orange for hover states */
  --color-accent: #00a693; /* Teal accent */
  --color-background: #f8f9fb; /* Light background */
  --color-surface: #ffffff; /* Card/surface color */
  --color-text-dark: #1a2233; /* Near black text */
  --color-text-medium: #4a5568; /* Medium gray text */
  --color-text-light: #718096; /* Light gray text */
  --color-border: #e2e8f0; /* Border color */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto Slab', serif;
  
  /* Font Sizes - Using a type scale of 1.2 */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 1.875rem;  /* 30px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 2.75rem;   /* 44px */
  --text-5xl: 3.25rem;   /* 52px */
  
  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 5rem;     /* 80px */
  --space-4xl: 7.5rem;   /* 120px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;  /* 4px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 1rem;     /* 16px */
  --radius-full: 9999px; /* Pill shape */
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;      /* 16px */
  --icon-sm: 1.25rem;   /* 20px */
  --icon-md: 1.5rem;    /* 24px */
  --icon-lg: 2rem;      /* 32px */
  --icon-xl: 2.5rem;    /* 40px */
}

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-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: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

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

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

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

strong {
  font-weight: 600;
}

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

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

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

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

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

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

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

.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Form Elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  width: 100%;
  transition: border-color var(--transition-fast);
}

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

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

/* Responsive Typography */
@media (max-width: 1023px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: var(--text-2xl);
  }
  
  h2 {
    font-size: var(--text-xl);
  }
  
  h3 {
    font-size: var(--text-lg);
  }
  
  p {
    font-size: var(--text-base);
  }
}

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

@media (max-width: 767px) {
  .section {
    padding: var(--space-xl) 0;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding: var(--space-md) 0;
  border-bottom: 2px solid var(--color-border);
}

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

/* Logo Styles */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: transform var(--transition-normal);
}

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

.header__logo-icon {
  font-size: var(--icon-lg);
  margin-right: var(--space-sm);
  color: var(--color-primary);
  background-color: rgba(30, 92, 151, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

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

.header__logo-main {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1.2;
}

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

/* Navigation Styles */
.header__nav {
  display: flex;
  align-items: center;
}

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

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

.header__nav-link {
  color: var(--color-text-medium);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  padding: var(--space-xs) var(--space-xs);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
}

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

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

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

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

.header__nav-link--highlight:hover {
  color: var(--color-secondary-light);
}

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

/* CTA Button */
.header__cta {
  margin-left: var(--space-xl);
}

.header__cta-btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.header__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}

.header__cta-btn:hover::before {
  left: 100%;
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10;
  padding: var(--space-xs);
}

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

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

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

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

.header__mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
}

.header__mobile-close-icon {
  font-size: var(--text-3xl);
  line-height: 1;
}

.header__mobile-nav {
  margin-bottom: var(--space-xl);
  flex: 1;
}

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

.header__mobile-nav-item {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
}

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

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

.header__mobile-footer {
  margin-top: auto;
  text-align: center;
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .header__nav-item {
    margin: 0 var(--space-sm);
  }
  
  .header__cta {
    margin-left: var(--space-md);
  }
}

@media (max-width: 767px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__logo-main {
    font-size: var(--text-lg);
  }
  
  .header__logo-tagline {
    display: none;
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
    font-size: var(--icon-md);
  }

  /* Active Mobile Menu State */
  .header.mobile-menu-active .header__mobile-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .header.mobile-menu-active .header__mobile-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .header.mobile-menu-active .header__mobile-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .header.mobile-menu-active .header__mobile-menu {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

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

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

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

.main .hero-content {
  padding-right: var(--space-xl);
}

.main .hero h1 {
  font-size: var(--text-4xl);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  position: relative;
}

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

.main .hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  line-height: 1.5;
}

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

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

.main .hero-feature i {
  font-size: var(--icon-md);
  color: var(--color-primary);
  background-color: rgba(30, 92, 151, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.main .hero-feature span {
  font-size: var(--text-md);
  color: var(--color-text-medium);
  font-weight: 500;
}

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

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

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

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

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

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

.main .hero-shape-1 {
  width: 250px;
  height: 250px;
  background-color: rgba(224, 88, 38, 0.1);
  top: -50px;
  right: -80px;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(0, 166, 147, 0.1);
  bottom: -40px;
  left: -60px;
}

.main .hero-stat-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background-color: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  transform: rotate(-5deg);
  border-left: 4px solid var(--color-primary);
}

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

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

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

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

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

.main .section-description {
  font-size: var(--text-lg);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Process Section */
.main .process {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  position: relative;
}

.main .process-timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

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

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

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

.main .process-number {
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  font-family: var(--font-secondary);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  margin-right: var(--space-xl);
}

.main .process-content {
  flex: 1;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.main .process-icon {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--icon-md);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

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

.main .benefit-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(30, 92, 151, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: var(--icon-lg);
}

.main .benefit-card:nth-child(2) .benefit-icon {
  background-color: rgba(224, 88, 38, 0.1);
  color: var(--color-secondary);
}

.main .benefit-card:nth-child(3) .benefit-icon {
  background-color: rgba(0, 166, 147, 0.1);
  color: var(--color-accent);
}

.main .benefit-card:nth-child(4) .benefit-icon {
  background-color: rgba(30, 92, 151, 0.1);
  color: var(--color-primary);
}

.main .benefit-card h3 {
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .benefit-card p {
  font-size: var(--text-base);
  color: var(--color-text-medium);
  margin-bottom: 0;
}

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

.main .benefits-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.main .benefits-image-container:hover img {
  transform: scale(1.02);
}

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

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

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

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

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

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

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

.main .testimonial-content {
  padding: var(--space-xl);
  position: relative;
}

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

.main .testimonial-card:nth-child(2) .testimonial-quote {
  background-color: var(--color-secondary);
}

.main .testimonial-card:nth-child(3) .testimonial-quote {
  background-color: var(--color-accent);
}

.main .testimonial-content p {
  font-style: italic;
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
}

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

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

/* Contact Form Section */
.main .contact-form {
  background-color: var(--color-surface);
  padding: var(--space-3xl) 0;
}

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

.main .contact-content {
  padding-right: var(--space-xl);
}

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

.main .contact-description {
  font-size: var(--text-lg);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

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

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

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

.main .contact-feature span {
  font-size: var(--text-base);
  color: var(--color-text-medium);
}

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

.main .contact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

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

.main .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-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

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

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

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

.main .form-privacy label {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.main .form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

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

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

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

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

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

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

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

@media (max-width: 992px) {
  .main .hero-grid,
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .main .hero-content {
    padding-right: 0;
    order: 1;
  }
  
  .main .hero-visual {
    order: 0;
  }
  
  .main .posts-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .process-number {
    width: 80px;
    height: 80px;
    font-size: var(--text-2xl);
  }
  
  .main .contact-content {
    padding-right: 0;
  }
  
  .main .cookie-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main .posts-grid,
  .main .testimonials-grid,
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .process-item {
    flex-direction: column;
  }
  
  .main .process-number {
    margin-bottom: var(--space-md);
    margin-right: 0;
  }
  
  .main .process-timeline::before {
    display: none;
  }
  
  .main .hero-cta {
    flex-direction: column;
  }
  
  .main .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .main .hero-stat-card {
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    bottom: -20px;
  }
  
  .main .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .main .hero h1 {
    font-size: var(--text-2xl);
  }
  
  .main .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .main .section-header h2,
  .main .benefits-header h2,
  .main .contact-content h2 {
    font-size: var(--text-2xl);
  }
  
  .main .section-description,
  .main .contact-description {
    font-size: var(--text-base);
  }
}

.footer {
  background-color: var(--color-background);
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

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

.footer__brand {
  position: relative;
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text-dark);
}

.footer__title-accent {
  color: var(--color-primary);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
  max-width: 280px;
  line-height: 1.5;
}

.footer__decoration {
  display: flex;
  align-items: center;
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__decoration-line {
  height: 2px;
  width: 30px;
  background-color: var(--color-secondary);
}

.footer__decoration-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  margin: 0 var(--space-xs);
}

.footer__heading {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer__heading:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

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

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

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

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

.footer__nav-link:before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

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

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

.footer__form-group {
  display: flex;
  position: relative;
}

.footer__input {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.footer__submit-btn {
  position: absolute;
  right: var(--space-xs);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

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

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

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

.footer__bottom-right {
  display: flex;
  align-items: center;
}

.footer__holland-icon {
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 14px;
  margin-right: var(--space-sm);
  border-radius: 1px;
  overflow: hidden;
}

.footer__holland-stripe {
  height: 33.33%;
}

.footer__holland-stripe--red {
  background-color: #AE1C28;
}

.footer__holland-stripe--white {
  background-color: #FFFFFF;
}

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

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

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

.footer__shape--left {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background-color: rgba(30, 92, 151, 0.05);
}

.footer__shape--right {
  width: 150px;
  height: 150px;
  top: 20px;
  right: -75px;
  background-color: rgba(224, 88, 38, 0.05);
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
  }
  
  .footer__newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__bottom-right {
    margin-top: var(--space-md);
  }
}

/* Privacy Policy Page Styles */
.privacy-page {
  background-color: var(--color-background);
  padding: var(--space-xl) 0;
}

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

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

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

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

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

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

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

.privacy-page__text {
  color: var(--color-text-medium);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page__container {
    padding: var(--space-lg);
  }
  
  .privacy-page__title {
    font-size: var(--text-2xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
}

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

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

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

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

.terms-page h2 {
  color: var(--color-text-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-sm);
}

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

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

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

.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-sm);
  line-height: 1.6;
}

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

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

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

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

.cookie-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-sm);
}

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

.cookie-page__section h2 {
  color: var(--color-text-dark);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

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

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

.cookie-page__list-container {
  padding-left: var(--space-md);
}

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

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

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

.cookie-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-align: right;
  margin-bottom: 0;
}

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

.thank-page {
  background-color: var(--color-background);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-page__section {
  width: 100%;
  padding: var(--space-2xl) 0;
}

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

.thank-page__icon {
  margin-bottom: var(--space-lg);
  display: inline-block;
}

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

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

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

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

.thank-page__text:last-child {
  margin-bottom: 0;
}

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

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

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

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

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

.category-page__hero-description {
  font-size: var(--text-lg);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  color: var(--color-text-medium);
}

.category-page__hero-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.category-page__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

.category-page__posts h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/* Tips Section */
.category-page__tips {
  background-color: var(--color-surface);
  padding: var(--space-2xl) 0;
}

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

.category-page__content-text h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

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

.tip-card {
  padding: var(--space-lg);
  height: 100%;
}

.tip-card h4 {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.tip-card p {
  margin-bottom: 0;
}

.category-page__content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.category-page__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.category-page__opportunities h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-md);
}

.category-page__opportunities > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

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

.opportunity-card {
  padding: var(--space-lg);
}

.opportunity-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.opportunity-card p {
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.opportunity-card p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 992px) {
  .category-page__content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .category-page__content-image {
    max-height: 400px;
    order: -1;
  }
  
  .category-page__tips-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__opportunities-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero-description {
    font-size: var(--text-base);
  }
  
  .post-card__image-container {
    height: 180px;
  }
}

/* Accessibility Enhancements */
.post-card:focus-within {
  outline: 3px solid var(--color-primary);
}

.btn:focus {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
}

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

.post-card {
  animation: fadeIn 0.5s ease forwards;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }

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

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

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

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

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

.post-page .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(to right, rgba(30, 92, 151, 0), rgba(30, 92, 151, 0.8));
  z-index: 1;
}

.post-page .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.post-page .post-hero .lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

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

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

.post-page .section-colored {
  background-color: var(--color-background);
}

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

.post-page .text-content {
  padding-right: var(--space-lg);
}

.post-page h2 {
  color: var(--color-text-dark);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

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

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

.post-page h4 {
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.post-page p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

/* Image Styles */
.post-page .network-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .full-width {
  margin: var(--space-xl) 0;
  width: 100%;
}

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

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

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

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

.post-page .tips-list li strong {
  color: var(--color-text-dark);
}

/* Key Takeaways */
.post-page .key-takeaways {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: rgba(0, 166, 147, 0.05);
  border-radius: var(--radius-lg);
}

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

.post-page .takeaway-item {
  padding: var(--space-md);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.post-page .takeaway-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-page .takeaway-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-page .takeaway-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

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

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

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

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

.post-page .card-content {
  padding: var(--space-lg);
}

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

.post-page .related-post-card h3 a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .related-post-card h3 a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.post-page .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

.post-page .related-post-card .btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-page .section-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .text-content {
    padding-right: 0;
  }
  
  .post-page .takeaway-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-md);
  }
}

@media (max-width: 767px) {
  .post-page .content-section,
  .post-page .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page h2 {
    font-size: var(--text-xl);
  }
  
  .post-page h3 {
    font-size: var(--text-lg);
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-base);
  }
}

/* Page-specific styles */
.post-internationaal-netwerken-nederland .post-hero {
  background-color: var(--color-primary);
  position: relative;
}

.post-internationaal-netwerken-nederland .section-colored {
  background-color: rgba(0, 166, 147, 0.05);
}

.post-internationaal-netwerken-nederland .tips-container {
  background-color: rgba(255, 255, 255, 0.95);
}

  /* Base Styles for Post Page */
  .post-page {
    background-color: var(--color-background);
    font-family: var(--font-primary);
  }
  
  /* Breadcrumbs */
  .post-page .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-surface);
  }
  
  .post-page .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-page .breadcrumbs a:hover {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  /* Hero Section */
  .post-page .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .post-page .post-hero h1 {
    color: white;
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    line-height: 1.2;
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-lg);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  /* Content Sections - General */
  .post-page .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-page .content-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-dark);
    position: relative;
  }
  
  .post-page .content-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: var(--space-sm) auto 0;
  }
  
  .post-page .content-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
  }
  
  /* Section Types - First content section */
  .post-page .section-types {
    background-color: var(--color-surface);
  }
  
  .post-page .section-content {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
  
  .post-page .text-content {
    flex: 1;
  }
  
  .post-page .image-container {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .post-page .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal);
  }
  
  .post-page .image-container:hover img {
    transform: scale(1.02);
  }
  
  .post-page .event-types ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
  }
  
  .post-page .event-types li {
    background-color: var(--color-background);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-primary);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }
  
  .post-page .event-types li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  /* Section Strategies - Second content section */
  .post-page .section-strategies {
    background-color: var(--color-background);
  }
  
  .post-page .strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .post-page .strategy-card {
    background-color: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-page .strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-page .strategy-card h3 {
    font-size: var(--text-lg);
    margin-top: 0;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
  }
  
  .post-page .center-image {
    margin: var(--space-xl) auto;
    max-width: 800px;
  }
  
  .post-page .networking-tips ol {
    padding-left: var(--space-xl);
    margin-top: var(--space-lg);
  }
  
  .post-page .networking-tips li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-sm);
  }
  
  /* Section Calendar - Third content section */
  .post-page .section-calendar {
    background-color: var(--color-surface);
  }
  
  .post-page .calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .post-page .quarter {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-page .quarter h3 {
    font-size: var(--text-md);
    color: var(--color-primary);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--space-md);
  }
  
  .post-page .quarter ul {
    list-style-type: none;
    padding: 0;
  }
  
  .post-page .quarter li {
    margin-bottom: var(--space-md);
    padding-left: 0;
  }
  
  .post-page .final-tips {
    background-color: rgba(30, 92, 151, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--color-primary);
  }
  
  .post-page .final-tips h3 {
    color: var(--color-primary);
    margin-top: 0;
  }
  
  /* Related Posts Section */
  .post-page .related-posts-section {
    background-color: var(--color-background);
    padding: var(--space-3xl) 0;
  }
  
  .post-page .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .post-page .related-post-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
  }
  
  .post-page .related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-page .related-post-card h3 {
    font-size: var(--text-md);
    margin-top: 0;
  }
  
  .post-page .related-post-card p {
    margin: var(--space-md) 0;
    flex-grow: 1;
  }
  
  .post-page .related-post-card .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-page .strategy-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-page .calendar-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-page .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-page .post-hero {
      padding: var(--space-xl) 0;
    }
    
    .post-page .section-content {
      flex-direction: column;
    }
    
    .post-page .strategy-grid {
      grid-template-columns: 1fr;
    }
    
    .post-page .calendar-grid {
      grid-template-columns: 1fr;
    }
    
    .post-page .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-page .content-section {
      padding: var(--space-xl) 0;
    }
  }

.post-linkedin-optimalisatie-nederlandse-professionals .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.post-linkedin-optimalisatie-nederlandse-professionals .breadcrumbs a {
  color: var(--color-text-medium);
  text-decoration: none;
}

.post-linkedin-optimalisatie-nederlandse-professionals .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-linkedin-optimalisatie-nederlandse-professionals .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
}

.post-linkedin-optimalisatie-nederlandse-professionals .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.post-linkedin-optimalisatie-nederlandse-professionals .post-hero .lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 0;
}

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

.post-linkedin-optimalisatie-nederlandse-professionals .section-light {
  background-color: var(--color-surface);
}

.post-linkedin-optimalisatie-nederlandse-professionals .section-accent {
  background-color: var(--color-background);
  position: relative;
}

.post-linkedin-optimalisatie-nederlandse-professionals h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  font-size: var(--text-3xl);
}

.post-linkedin-optimalisatie-nederlandse-professionals h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-linkedin-optimalisatie-nederlandse-professionals h4 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 600;
}

.post-linkedin-optimalisatie-nederlandse-professionals p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-medium);
  line-height: 1.7;
}

/* Section 1 Layout */
.post-linkedin-optimalisatie-nederlandse-professionals .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-linkedin-optimalisatie-nederlandse-professionals .text-content {
  flex: 1;
}

.post-linkedin-optimalisatie-nederlandse-professionals .image-container {
  flex: 1;
  max-width: 500px;
}

.post-linkedin-optimalisatie-nederlandse-professionals .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-linkedin-optimalisatie-nederlandse-professionals .center-image {
  margin: var(--space-xl) auto 0;
  max-width: 800px;
}

/* Strategy Grid - Section 2 */
.post-linkedin-optimalisatie-nederlandse-professionals .strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-linkedin-optimalisatie-nederlandse-professionals .strategy-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-linkedin-optimalisatie-nederlandse-professionals .strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-linkedin-optimalisatie-nederlandse-professionals .strategy-list {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-linkedin-optimalisatie-nederlandse-professionals .strategy-list li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-medium);
}

/* Tips Container - Section 3 */
.post-linkedin-optimalisatie-nederlandse-professionals .tips-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-linkedin-optimalisatie-nederlandse-professionals .tip-card {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition-normal);
}

.post-linkedin-optimalisatie-nederlandse-professionals .tip-card:hover {
  transform: translateY(-3px);
}

.post-linkedin-optimalisatie-nederlandse-professionals .conclusion {
  background-color: rgba(30, 92, 151, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  border-left: 5px solid var(--color-primary);
}

/* Related Posts Section */
.post-linkedin-optimalisatie-nederlandse-professionals .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-linkedin-optimalisatie-nederlandse-professionals .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-linkedin-optimalisatie-nederlandse-professionals .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .section-content {
    flex-direction: column;
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .image-container {
    max-width: 100%;
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .strategy-grid,
  .post-linkedin-optimalisatie-nederlandse-professionals .tips-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 767px) {
  .post-linkedin-optimalisatie-nederlandse-professionals .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .related-posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals h2 {
    font-size: var(--text-2xl);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals h3 {
    font-size: var(--text-lg);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-linkedin-optimalisatie-nederlandse-professionals .post-hero .lead {
    font-size: var(--text-base);
  }
}

/* Base Styles for LinkedIn Optimization Page */
.post-linkedin-optimalisatie-nederland {
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-linkedin-optimalisatie-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.post-linkedin-optimalisatie-nederland .breadcrumbs a {
  color: var(--color-text-medium);
  transition: color var(--transition-fast);
}

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

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

.post-linkedin-optimalisatie-nederland .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.post-linkedin-optimalisatie-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  line-height: 1.2;
}

.post-linkedin-optimalisatie-nederland .post-hero .lead {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-linkedin-optimalisatie-nederland .hero-cta {
  margin-top: var(--space-xl);
}

.post-linkedin-optimalisatie-nederland .hero-cta .btn {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
  background-color: white;
  color: var(--color-primary);
  border: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-linkedin-optimalisatie-nederland .hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background-color: white;
  text-decoration: none;
}

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

.post-linkedin-optimalisatie-nederland .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text-dark);
}

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

.post-linkedin-optimalisatie-nederland .content-section h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

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

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

.post-linkedin-optimalisatie-nederland .content-section li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-medium);
}

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

.post-linkedin-optimalisatie-nederland .image-container {
  flex: 0 0 45%;
}

.post-linkedin-optimalisatie-nederland .image-container img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-linkedin-optimalisatie-nederland .image-container img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-linkedin-optimalisatie-nederland .text-content {
  flex: 1;
}

/* Profile Section Specific */
.post-linkedin-optimalisatie-nederland .profile-section {
  background-color: var(--color-surface);
}

.post-linkedin-optimalisatie-nederland .profile-tips {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  border-left: 4px solid var(--color-primary);
}

.post-linkedin-optimalisatie-nederland .profile-tips h4 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-linkedin-optimalisatie-nederland .profile-tips ul {
  margin-bottom: 0;
}

/* Networking Section Specific */
.post-linkedin-optimalisatie-nederland .networking-section {
  background-color: var(--color-background);
}

.post-linkedin-optimalisatie-nederland .networking-strategy {
  margin-top: var(--space-xl);
}

.post-linkedin-optimalisatie-nederland .strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.post-linkedin-optimalisatie-nederland .strategy-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-linkedin-optimalisatie-nederland .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-linkedin-optimalisatie-nederland .strategy-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.post-linkedin-optimalisatie-nederland .strategy-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* Growth Section Specific */
.post-linkedin-optimalisatie-nederland .growth-section {
  background-color: var(--color-surface);
  padding-bottom: var(--space-4xl);
}

.post-linkedin-optimalisatie-nederland .growth-strategies {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.post-linkedin-optimalisatie-nederland .growth-strategies img {
  grid-column: span 2;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.post-linkedin-optimalisatie-nederland .strategy-item {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.post-linkedin-optimalisatie-nederland .strategy-item h3 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-linkedin-optimalisatie-nederland .final-thoughts {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: rgba(30, 92, 151, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.post-linkedin-optimalisatie-nederland .final-thoughts h3 {
  color: var(--color-accent);
}

/* Related Posts Section */
.post-linkedin-optimalisatie-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

.post-linkedin-optimalisatie-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-2xl);
}

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

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

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

.post-linkedin-optimalisatie-nederland .post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.post-linkedin-optimalisatie-nederland .post-content h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.post-linkedin-optimalisatie-nederland .post-content p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-linkedin-optimalisatie-nederland .post-content .btn {
  align-self: flex-start;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-linkedin-optimalisatie-nederland .section-content {
    flex-direction: column;
  }
  
  .post-linkedin-optimalisatie-nederland .image-container {
    flex: 0 0 100%;
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .post-linkedin-optimalisatie-nederland .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-linkedin-optimalisatie-nederland .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-linkedin-optimalisatie-nederland .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-linkedin-optimalisatie-nederland .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-linkedin-optimalisatie-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-linkedin-optimalisatie-nederland .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-linkedin-optimalisatie-nederland .strategy-cards {
    grid-template-columns: 1fr;
  }
  
  .post-linkedin-optimalisatie-nederland .growth-strategies {
    grid-template-columns: 1fr;
  }
  
  .post-linkedin-optimalisatie-nederland .related-posts {
    grid-template-columns: 1fr;
  }
}

  /* Base Page Styles */
  .post-digitaal-netwerken-nederland {
    color: var(--color-text-dark);
    font-family: var(--font-primary);
  }

  /* Breadcrumbs */
  .post-digitaal-netwerken-nederland .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
  }

  .post-digitaal-netwerken-nederland .breadcrumbs a {
    color: var(--color-text-medium);
    transition: color var(--transition-fast);
  }

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

  /* Hero Section */
  .post-digitaal-netwerken-nederland .post-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background-color: var(--color-primary);
    color: white;
    position: relative;
  }

  .post-digitaal-netwerken-nederland .post-hero h1 {
    color: white;
    font-size: var(--text-4xl);
    max-width: 900px;
    margin-bottom: var(--space-lg);
  }

  .post-digitaal-netwerken-nederland .post-hero .lead {
    font-size: var(--text-xl);
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
  }

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

  .post-digitaal-netwerken-nederland .content-section h2 {
    font-size: var(--text-3xl);
    color: var(--color-text-dark);
    margin-bottom: var(--space-xl);
    position: relative;
  }

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

  /* Section 1 - Platforms */
  .post-digitaal-netwerken-nederland .section-platforms {
    background-color: var(--color-surface);
  }

  .post-digitaal-netwerken-nederland .platform-content {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }

  .post-digitaal-netwerken-nederland .text-content {
    flex: 3;
  }

  .post-digitaal-netwerken-nederland .image-container {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .post-digitaal-netwerken-nederland .platform-list {
    background-color: rgba(30, 92, 151, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .post-digitaal-netwerken-nederland .platform-list h3 {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
  }

  .post-digitaal-netwerken-nederland .platform-list ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
  }

  .post-digitaal-netwerken-nederland .platform-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
  }

  .post-digitaal-netwerken-nederland .platform-list li::before {
    content: "•";
    color: var(--color-secondary);
    font-size: var(--text-xl);
    position: absolute;
    left: 0;
    top: -2px;
  }

  /* Section 2 - Strategies */
  .post-digitaal-netwerken-nederland .section-strategies {
    background-color: var(--color-background);
  }

  .post-digitaal-netwerken-nederland .strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .post-digitaal-netwerken-nederland .strategy-card {
    background-color: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

  .post-digitaal-netwerken-nederland .strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .post-digitaal-netwerken-nederland .strategy-card h3 {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
  }

  .post-digitaal-netwerken-nederland .strategy-card p {
    color: var(--color-text-medium);
    margin-bottom: 0;
  }

  .post-digitaal-netwerken-nederland .case-study {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--color-accent);
  }

  .post-digitaal-netwerken-nederland .case-study h3 {
    color: var(--color-accent);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
  }

  .post-digitaal-netwerken-nederland .case-content {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
  }

  .post-digitaal-netwerken-nederland .case-text {
    flex: 3;
  }

  .post-digitaal-netwerken-nederland .case-image {
    flex: 2;
  }

  .post-digitaal-netwerken-nederland .case-image img {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  /* Section 3 - Action Steps */
  .post-digitaal-netwerken-nederland .section-action {
    background-color: var(--color-surface);
  }

  .post-digitaal-netwerken-nederland .action-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .post-digitaal-netwerken-nederland .step {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-primary);
  }

  .post-digitaal-netwerken-nederland .step h4 {
    color: var(--color-primary);
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
  }

  .post-digitaal-netwerken-nederland .step p {
    margin-bottom: 0;
  }

  .post-digitaal-netwerken-nederland .conclusion {
    background-color: rgba(0, 166, 147, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
  }

  .post-digitaal-netwerken-nederland .conclusion h3 {
    color: var(--color-accent);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
  }

  .post-digitaal-netwerken-nederland .cta-container {
    margin-top: var(--space-xl);
    text-align: center;
  }

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

  .post-digitaal-netwerken-nederland .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: var(--text-2xl);
  }

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

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

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

  .post-digitaal-netwerken-nederland .post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

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

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

  .post-digitaal-netwerken-nederland .post-content p {
    font-size: var(--text-sm);
    color: var(--color-text-medium);
    margin-bottom: var(--space-md);
  }

  .post-digitaal-netwerken-nederland .post-content .btn {
    font-size: var(--text-sm);
  }

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-digitaal-netwerken-nederland .platform-content,
    .post-digitaal-netwerken-nederland .case-content {
      flex-direction: column;
    }
    
    .post-digitaal-netwerken-nederland .strategy-grid,
    .post-digitaal-netwerken-nederland .action-steps {
      grid-template-columns: 1fr;
    }
    
    .post-digitaal-netwerken-nederland .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-digitaal-netwerken-nederland .platform-list ul {
      grid-template-columns: 1fr;
    }
  }

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

/* Privacy Policy Page Styles */
.privacy-page {
  background-color: var(--color-background);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  color: var(--color-text-medium);
}

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

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

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

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

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

.privacy-page__section h2 {
  color: var(--color-text-dark);
  font-size: var(--text-2xl);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

.privacy-page__subsection h3 {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

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

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

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

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

.privacy-page__contact-info strong {
  color: var(--color-text-dark);
}

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

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

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

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

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

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

.terms-page__content {
  line-height: 1.7;
}

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

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

.terms-page__section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-medium);
}

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

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

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

@media (max-width: 480px) {
  .terms-page__container {
    padding: var(--space-md);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
}

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

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

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

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

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

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

.cookie-page__section-title {
  color: var(--color-text-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-xs);
  display: inline-block;
}

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

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

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

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

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

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

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

.thank-page__container {
  padding: var(--space-xl) var(--space-md);
}

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

.thank-page__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-xl);
  height: var(--icon-xl);
  margin: 0 auto var(--space-xl);
  color: var(--color-accent);
  background-color: var(--color-surface);
  border-radius: var(--radius-full);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.thank-page__subtitle {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

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

.thank-page__text:last-child {
  margin-bottom: 0;
}

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

.thank-page__button {
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

@media (max-width: 767px) {
  .thank-page__container {
    padding: var(--space-md) var(--space-sm);
  }
  
  .thank-page__content {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__title {
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__message {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__actions {
    margin-top: var(--space-lg);
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-4xl) 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: var(--text-5xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-lg);
}

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

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

.error-404__message {
  font-size: var(--text-md);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.error-404__button {
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.error-404__suggestion {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .error-404__code {
    font-size: var(--text-4xl);
  }
  
  .error-404__title {
    font-size: var(--text-xl);
  }
  
  .error-404__message {
    font-size: var(--text-base);
  }
  
  .error-404 {
    padding: var(--space-2xl) var(--space-md);
  }
}

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