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

:root {
  /* Color Scheme - Modern Dutch-inspired with tech feel */
  --color-primary: #ff6b35; /* Vibrant orange - Dutch heritage */
  --color-secondary: #004e98; /* Deep blue for trust/professionalism */
  --color-accent: #2ec4b6; /* Teal for modern tech feel */
  --color-dark: #1a1a2e; /* Near black with slight blue tint */
  --color-light: #f5f5f7; /* Off-white background */
  --color-gray: #737373; /* Medium gray for secondary text */
  --color-light-gray: #e8e8e8; /* Light gray for borders/dividers */
  
  /* Typography */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Font Sizes */
  --fs-h1: clamp(2.5rem, 5vw, 3.5rem);
  --fs-h2: clamp(2rem, 4vw, 2.75rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h4: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-h5: clamp(1.125rem, 2vw, 1.5rem);
  --fs-h6: clamp(1rem, 1.5vw, 1.25rem);
  --fs-body: clamp(1rem, 1.5vw, 1.125rem);
  --fs-small: clamp(0.875rem, 1vw, 0.95rem);
  --fs-xs: clamp(0.75rem, 0.8vw, 0.875rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Section Padding */
  --section-padding-desktop: 6rem;
  --section-padding-tablet: 4rem;
  --section-padding-mobile: 3rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 24px rgba(26, 26, 46, 0.12);
  --shadow-focus: 0 0 0 3px rgba(255, 107, 53, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
}

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

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

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

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

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

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

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

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

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

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

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

a.underline {
  position: relative;
}

a.underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-medium);
}

a.underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

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

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

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

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

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

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

.btn-sm {
  font-size: var(--fs-small);
  padding: var(--space-sm) var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

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

/* Utility Classes */
.text-primary {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

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

/* Responsive Utilities */
@media (min-width: 1024px) {
  .section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--section-padding-desktop) 0;
  }
}
/* Header Styles */
.header {
  width: 100%;
  background-color: var(--color-light);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-light-gray);
  position: relative;
}

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

/* Logo Styles */
.header__logo-wrapper {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h4);
  color: var(--color-dark);
  text-decoration: none;
  transition: transform var(--transition-medium);
}

.header__logo:hover {
  transform: translateY(-2px);
  color: var(--color-dark);
}

.header__logo-icon {
  font-size: var(--fs-h3);
  margin-right: var(--space-xs);
  color: var(--color-secondary);
}

.header__logo-text {
  letter-spacing: -0.02em;
}

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

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--color-dark);
  text-decoration: none;
  padding: var(--space-xs) var(--space-xs);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-medium);
}

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

.header__nav-link:hover::after {
  transform: scaleX(1);
}

/* CTA Button */
.header__cta {
  display: none;
}

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

/* Mobile Toggle Button */
.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--color-dark);
  font-size: var(--fs-h4);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.header__mobile-toggle:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.header__mobile-toggle-icon {
  display: block;
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity var(--transition-medium), visibility var(--transition-medium), transform var(--transition-medium);
}

.header__mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

.header__mobile-logo {
  color: var(--color-light);
}

.header__mobile-close {
  background-color: transparent;
  border: none;
  color: var(--color-light);
  font-size: var(--fs-h4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.header__mobile-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

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

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

.header__mobile-nav-link {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--color-light);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast), transform var(--transition-medium);
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(var(--space-sm));
}

.header__mobile-footer {
  margin-top: auto;
  padding-top: var(--space-xl);
}

.header__mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.header__mobile-legal-link {
  color: var(--color-gray);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Responsive Styles */
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
  
  .header__nav {
    display: flex;
  }
  
  .header__cta {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: var(--space-lg) 0;
  }
  
  .header__nav-list {
    gap: var(--space-xl);
  }
  
  .header__logo {
    font-size: var(--fs-h3);
  }
  
  .header__logo-icon {
    font-size: var(--fs-h2);
  }
}

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

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

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

.main .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
}

.main .hero-badge {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-small);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--border-radius-pill);
  margin-bottom: var(--space-md);
  transform: translateY(0);
  animation: float 3s ease-in-out infinite;
}

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

.main .hero-description {
  font-size: var(--fs-h6);
  color: var(--color-gray);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

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

.main .hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.main .hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.main .hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.main .hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color-primary);
  opacity: 0.15;
  top: -30px;
  right: -30px;
  animation: pulse 8s ease-in-out infinite alternate;
}

.main .hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color-secondary);
  opacity: 0.15;
  bottom: -20px;
  left: -20px;
  animation: pulse 6s ease-in-out infinite alternate-reverse;
}

.main .hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  justify-content: center;
}

.main .stat-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
  transition: transform var(--transition-medium);
}

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

.main .stat-number {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.main .stat-text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin: 0;
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  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,192L48,176C96,160,192,128,288,122.7C384,117,480,139,576,165.3C672,192,768,224,864,213.3C960,203,1056,149,1152,133.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

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

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

.main .section-description {
  font-size: var(--fs-h6);
  color: var(--color-gray);
  margin-bottom: var(--space-xl);
}

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

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

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

.main .post-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
}

.main .post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

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

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

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

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

.main .section-cta .btn {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--fs-body);
}

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

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

/* Why Choose Us Section */
.main .why-choose {
  padding: var(--section-padding-mobile) 0;
  position: relative;
  color: white;
}

.main .why-choose-content {
  position: relative;
  z-index: 1;
}

.main .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.main .benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-medium), background-color var(--transition-medium);
}

.main .benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.main .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.main .benefit-icon i {
  font-size: var(--icon-lg);
  color: white;
}

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

.main .benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.main .diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Course Structure Section */
.main .course-structure {
  padding: var(--section-padding-mobile) 0;
  background-color: white;
}

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

.main .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background-color: var(--color-light-gray);
  border-radius: var(--border-radius-pill);
}

.main .timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-3xl);
}

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

.main .timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  color: white;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

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

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

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

.main .timeline-card p {
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
}

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

/* Testimonials Section */
.main .testimonials {
  padding: var(--section-padding-mobile) 0;
  background-color: var(--color-light);
}

.main .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.main .testimonial-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

.main .quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--icon-lg);
  color: var(--color-light-gray);
  opacity: 0.5;
}

.main .testimonial-text {
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

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

.main .rating i {
  color: #FFD700;
  margin-right: var(--space-xs);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--color-light);
  border-top: 1px solid var(--color-light-gray);
}

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-md);
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

.main .author-info h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-xs);
}

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

/* FAQ Section */
.main .faq {
  padding: var(--section-padding-mobile) 0;
  background-color: white;
}

.main .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.main .faq-item {
  border-bottom: 1px solid var(--color-light-gray);
  margin-bottom: var(--space-md);
}

.main .faq-question {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.main .faq-question h3 {
  font-size: var(--fs-h6);
  margin: 0;
  transition: color var(--transition-fast);
}

.main .faq-question:hover h3 {
  color: var(--color-primary);
}

.main .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}

.main .faq-icon i {
  color: var(--color-primary);
  position: absolute;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.main .faq-icon .fa-plus {
  opacity: 1;
  transform: rotate(0);
}

.main .faq-icon .fa-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.main .faq-item.active .faq-icon .fa-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.main .faq-item.active .faq-icon .fa-minus {
  opacity: 1;
  transform: rotate(0);
}

.main .faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.main .faq-item.active .faq-answer {
  padding: 0 0 var(--space-lg);
  max-height: 500px;
}

.main .faq-answer p {
  margin: 0;
  color: var(--color-gray);
}

/* CTA Section */
.main .cta {
  padding: var(--section-padding-mobile) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.main .cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.main .cta-content {
  text-align: center;
  max-width: 600px;
}

.main .cta h2 {
  margin-bottom: var(--space-md);
  color: white;
}

.main .cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-h6);
}

.main .cta .btn {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--fs-body);
}

.main .cta-image {
  width: 100%;
  max-width: 500px;
}

.main .cta-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform var(--transition-medium);
}

.main .cta-image:hover img {
  transform: rotate(0);
}

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

.main .contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

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

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

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

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

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

.main .contact-item p {
  margin: 0;
  color: var(--color-gray);
}

.main .contact-form-container {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
}

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

.main .form-checkbox input {
  width: auto;
  margin-top: 6px;
  margin-right: var(--space-md);
}

.main .form-checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--color-gray);
}

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

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

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

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

.main .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.main .cookie-content p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
}

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

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

/* Media Queries */
@media (min-width: 1024px) {
  .main .hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .timeline-item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: var(--space-4xl);
  }
  
  .main .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .timeline-content {
    width: 45%;
  }
  
  .main .timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
  }
  
  .main .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
  }
  
  .main .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .main .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .main .featured-posts,
  .main .why-choose,
  .main .course-structure,
  .main .testimonials,
  .main .faq,
  .main .cta,
  .main .contact {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (min-width: 1024px) {
  .main .hero {
    padding: var(--section-padding-desktop) 0;
  }
  
  .main .hero-description {
    max-width: 80%;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .cta .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .main .cta-content {
    text-align: left;
  }
  
  .main .featured-posts,
  .main .why-choose,
  .main .course-structure,
  .main .testimonials,
  .main .faq,
  .main .cta,
  .main .contact {
    padding: var(--section-padding-desktop) 0;
  }
}

.footer {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-xl);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
}

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

.footer__brand {
  position: relative;
}

.footer__tagline {
  max-width: 350px;
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--color-light-gray);
}

.footer__accent-shape {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0.2;
  z-index: -1;
}

.footer__accent-shape::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0.2;
}

.footer__heading {
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-size: var(--fs-h6);
  font-weight: 600;
}

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

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

.footer__link {
  position: relative;
  color: var(--color-light-gray);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer__link::before {
  content: '›';
  margin-right: var(--space-xs);
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-light);
  transform: translateX(3px);
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__link:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--border-radius-sm);
}

.footer__form {
  margin-top: var(--space-md);
}

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

.footer__input {
  flex: 1;
  height: 42px;
  padding: 0 var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  color: var(--color-light);
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

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

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

.footer__submit-btn {
  padding: 0 var(--space-md);
  background-color: var(--color-primary);
  border: none;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  color: var(--color-light);
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.footer__submit-btn:hover {
  background-color: #e55a28;
  transform: translateY(-1px);
}

.footer__submit-btn:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.footer__form-note {
  margin: 0;
  font-size: var(--fs-xs);
}

.footer__divider {
  height: 1px;
  margin: var(--space-xl) 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer__legal {
  text-align: center;
}

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

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

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

.footer__legal-link:hover {
  color: var(--color-light);
}

.footer__legal-link:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-1 * var(--space-md) / 2);
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-gray);
}

.footer__dutch-flag {
  display: flex;
  margin-top: var(--space-sm);
}

.flag-stripe {
  width: 30px;
  height: 6px;
}

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

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

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

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer__legal {
    text-align: left;
  }
  
  .footer__legal-links {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
  }
  
  .footer__accent-shape {
    top: -30px;
    left: -40px;
    width: 80px;
    height: 80px;
  }
  
  .footer__accent-shape::before {
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
  }
}

/* Privacy Page Styles */
.privacy-page {
  padding: var(--section-padding-mobile) 0;
  font-family: var(--font-secondary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

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

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

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

.privacy-page__last-updated {
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

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

.privacy-page__section-title {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-light-gray);
}

.privacy-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  color: var(--color-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

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

.privacy-page p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-size: var(--fs-body);
}

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

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

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

/* Responsive Adjustments */
@media (min-width: 1024px) {
  .privacy-page {
    padding: var(--section-padding-tablet) 0;
  }
}

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

/* Terms Page Styles */
.terms-page {
  padding: var(--section-padding-mobile) 0;
  background-color: var(--color-light);
  font-family: var(--font-secondary);
  color: var(--color-dark);
}

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

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

.terms-page__last-updated {
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-small);
}

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

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

.terms-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  color: var(--color-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.terms-page p {
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

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

.terms-page__list li {
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .terms-page {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (min-width: 1024px) {
  .terms-page {
    padding: var(--section-padding-desktop) 0;
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h3);
  }
}

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

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

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

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

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

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

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

.cookie-page__subtitle {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 500;
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

.cookie-page__list li {
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.cookie-page p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

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

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

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

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

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

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

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

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

.thank-page__message p {
  color: var(--color-dark);
  font-family: var(--font-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__details {
  margin-bottom: var(--space-2xl);
  width: 100%;
  text-align: left;
  background-color: white;
}

.thank-page__subtitle {
  color: var(--color-primary);
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
}

.thank-page__list {
  list-style-type: none;
  padding-left: 0;
}

.thank-page__list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--color-dark);
}

.thank-page__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

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

.thank-page__action .btn {
  font-size: var(--fs-body);
  padding: var(--space-md) var(--space-2xl);
}

@media (max-width: 1024px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__title {
    font-size: var(--fs-h2);
  }
  
  .thank-page__message p {
    font-size: var(--fs-body);
  }
  
  .thank-page__action .btn {
    width: 100%;
  }
}

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

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

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

.category-page__hero h1 {
  margin-bottom: var(--space-lg);
}

.category-page__hero p {
  font-size: var(--fs-h5);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

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

.category-page__posts h2 {
  margin-bottom: var(--space-2xl);
}

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

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

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

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

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

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

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

/* SEO Basics Section */
.category-page__seo-basics {
  padding: var(--section-padding-mobile) 0;
}

.category-page__seo-basics h2 {
  margin-bottom: var(--space-2xl);
}

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

.category-page__seo-basics-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__seo-basics-text h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.category-page__seo-basics-text h4 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

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

.category-page__seo-basics-list li {
  margin-bottom: var(--space-lg);
}

.category-page__seo-basics-list li p {
  margin-top: var(--space-xs);
  margin-left: var(--space-xl);
}

/* SEO Strategy Section */
.category-page__seo-strategy {
  padding: var(--section-padding-mobile) 0;
}

.category-page__seo-strategy h2 {
  margin-bottom: var(--space-2xl);
}

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

.category-page__strategy-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.category-page__strategy-icon {
  margin-bottom: var(--space-md);
}

.category-page__strategy-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.category-page__strategy-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
}

.category-page__strategy-card p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Icon Text */
.icon-text {
  display: flex;
  align-items: center;
}

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

/* Responsive Styles */
@media (min-width: 1024px) {
  .category-page__posts {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__seo-basics {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__seo-basics-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .category-page__seo-strategy {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__seo-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-page__posts {
    padding: var(--section-padding-desktop) 0;
  }
  
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__seo-basics {
    padding: var(--section-padding-desktop) 0;
  }
  
  .category-page__seo-strategy {
    padding: var(--section-padding-desktop) 0;
  }
  
  .category-page__seo-strategy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Post Page Styles */
.post-zoekwoordenonderzoek-basis-effectieve-seo {
  font-family: var(--font-secondary);
  color: var(--color-dark);
}

/* Breadcrumbs */
.post-zoekwoordenonderzoek-basis-effectieve-seo .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  border-bottom: 1px solid var(--color-light-gray);
  margin-bottom: var(--space-xl);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .breadcrumbs a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-zoekwoordenonderzoek-basis-effectieve-seo .post-hero {
  padding: var(--space-3xl) 0;
  background-color: var(--color-secondary);
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .post-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-light);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .post-hero .lead {
  font-size: var(--fs-h5);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Content Sections */
.post-zoekwoordenonderzoek-basis-effectieve-seo .content-section {
  padding: var(--space-4xl) 0;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  color: var(--color-secondary);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .content-section h3 {
  font-size: var(--fs-h4);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .content-section p {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
  line-height: 1.7;
}

/* Alternating Section Backgrounds */
.post-zoekwoordenonderzoek-basis-effectieve-seo .basics-section {
  background-color: var(--color-light);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tools-section {
  background-color: var(--color-light-gray);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-section {
  background-color: var(--color-light);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-section {
  background-color: var(--color-light-gray);
}

/* Section 1 Layout */
.post-zoekwoordenonderzoek-basis-effectieve-seo .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .section-content {
    flex-direction: row;
    align-items: center;
  }
  
  .post-zoekwoordenonderzoek-basis-effectieve-seo .text-content {
    flex: 3;
  }
  
  .post-zoekwoordenonderzoek-basis-effectieve-seo .image-container {
    flex: 2;
  }
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .image-container img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .benefits-list {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .benefits-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .benefits-list li strong {
  color: var(--color-primary);
}

/* Section 2 Layout - Tools Grid */
.post-zoekwoordenonderzoek-basis-effectieve-seo .tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tool-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tool-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tool-card ul {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .tool-card li {
  margin-bottom: var(--space-sm);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .process-steps {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .process-steps li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .process-steps strong {
  color: var(--color-secondary);
}

/* Section 3 Layout - Strategy Grid */
.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-card {
  background-color: var(--color-light-gray);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-medium);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-card h3 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .strategy-card ul {
  padding-left: var(--space-xl);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .conclusion {
  background-color: var(--color-light-gray);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-2xl);
  border-left: 4px solid var(--color-primary);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .conclusion h3 {
  color: var(--color-primary);
  margin-top: 0;
}

/* Related Posts Section */
.post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-section {
  padding: var(--space-4xl) 0;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-secondary);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.post-zoekwoordenonderzoek-basis-effectieve-seo .post-card-content {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .post-card-content h3 {
  font-size: var(--fs-h5);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .post-card-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-gray);
  flex-grow: 1;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .read-more {
  color: var(--color-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .read-more:hover {
  color: var(--color-secondary);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .read-more .arrow {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-zoekwoordenonderzoek-basis-effectieve-seo .read-more:hover .arrow {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-zoekwoordenonderzoek-basis-effectieve-seo .post-hero {
    padding: var(--space-2xl) 0;
    margin-bottom: var(--space-2xl);
  }
  
  .post-zoekwoordenonderzoek-basis-effectieve-seo .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-zoekwoordenonderzoek-basis-effectieve-seo .related-posts-section {
    padding: var(--space-2xl) 0;
  }
}

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

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

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

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

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

.post-page .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 78, 152, 0.9), rgba(0, 78, 152, 0.8));
  z-index: 1;
}

.post-page .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.post-page .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  font-family: var(--font-primary);
  font-weight: 300;
}

.post-page .post-hero .btn {
  margin-top: var(--space-md);
}

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

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

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

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

.post-page .content-section h4 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

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

.post-page .content-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

/* Section 1 - SEO Basics */
.post-page .seo-basics-section {
  background-color: white;
}

.post-page .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-page .feature-list {
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  margin-bottom: var(--space-xl);
}

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

.post-page .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Section 2 - Content Strategy */
.post-page .content-strategy-section {
  background-color: var(--color-light);
  position: relative;
}

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

.post-page .strategy-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.post-page .content-example {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}

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

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

/* Section 3 - Conversion */
.post-page .conversion-section {
  background-color: white;
}

.post-page .tips-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-page .tip-card {
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-accent);
}

.post-page .tip-card h4 {
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.post-page .conclusion-box {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-2xl);
}

.post-page .conclusion-box h3 {
  color: white;
  margin-bottom: var(--space-lg);
}

.post-page .takeaway-list {
  margin-bottom: var(--space-xl);
}

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

.post-page .conclusion-box .btn {
  margin-top: var(--space-lg);
}

/* Related Posts Section */
.post-page .related-posts-section {
  background-color: var(--color-light);
  padding: var(--space-4xl) 0;
}

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

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

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

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

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

.post-page .post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

.post-page .post-content p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  color: var(--color-gray);
}

.post-page .post-link {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Responsive Adjustments */
@media (min-width: 1024px) {
  .post-page .section-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-page .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .example-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-page .tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-page .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-page .content-section {
    padding: var(--space-5xl) 0;
  }
}

/* Specific to this page */
.post-lokale-seo-nederland-regionale-zichtbaarheid .post-hero .lead {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-lokale-seo-nederland-regionale-zichtbaarheid .strategy-card h3 {
  position: relative;
  padding-left: var(--space-lg);
}

.post-lokale-seo-nederland-regionale-zichtbaarheid .strategy-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* Page-specific styles */
.post-lokale-seo-nederland {
  color: var(--color-dark);
}

/* Breadcrumbs */
.post-lokale-seo-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-light-gray);
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.post-lokale-seo-nederland .breadcrumbs a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

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

/* Hero Section */
.post-lokale-seo-nederland .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-lokale-seo-nederland .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 78, 152, 0.8), rgba(0, 78, 152, 0.6));
  z-index: 1;
}

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

.post-lokale-seo-nederland .post-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  font-weight: 700;
}

.post-lokale-seo-nederland .post-hero .lead {
  font-size: var(--fs-h5);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.post-lokale-seo-nederland .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  color: var(--color-secondary);
}

.post-lokale-seo-nederland .content-section h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-lokale-seo-nederland .content-section p {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.post-lokale-seo-nederland .content-section ul,
.post-lokale-seo-nederland .content-section ol {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}

.post-lokale-seo-nederland .content-section li {
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.post-lokale-seo-nederland .image-container {
  margin: var(--space-xl) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-lokale-seo-nederland .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-medium);
}

.post-lokale-seo-nederland .image-container:hover img {
  transform: scale(1.02);
}

.post-lokale-seo-nederland .center-image {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Basics Section */
.post-lokale-seo-nederland .basics-section {
  background-color: white;
}

.post-lokale-seo-nederland .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-lokale-seo-nederland .checklist {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-lg);
}

.post-lokale-seo-nederland .checklist li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-lokale-seo-nederland .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Strategy Section */
.post-lokale-seo-nederland .strategy-section {
  background-color: var(--color-light);
  position: relative;
}

.post-lokale-seo-nederland .strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-lokale-seo-nederland .strategy-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.post-lokale-seo-nederland .strategy-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h5);
}

.post-lokale-seo-nederland .strategy-card ul {
  margin-bottom: var(--space-md);
}

/* Advanced Section */
.post-lokale-seo-nederland .advanced-section {
  background-color: white;
  position: relative;
}

.post-lokale-seo-nederland .advanced-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-lokale-seo-nederland .feature-list {
  list-style-type: none;
  padding-left: 0;
}

.post-lokale-seo-nederland .feature-list li {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-light-gray);
}

.post-lokale-seo-nederland .feature-list li:last-child {
  border-bottom: none;
}

.post-lokale-seo-nederland .feature-title {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  font-size: var(--fs-h6);
}

.post-lokale-seo-nederland .feature-list p {
  margin-bottom: var(--space-sm);
}

.post-lokale-seo-nederland .quote {
  background-color: var(--color-light);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border-radius: var(--border-radius-md);
  font-style: italic;
}

.post-lokale-seo-nederland .quote p {
  margin-bottom: 0;
  font-size: var(--fs-h6);
  line-height: 1.5;
  color: var(--color-dark);
}

.post-lokale-seo-nederland .action-steps {
  background-color: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  counter-reset: step;
  list-style-type: none;
  padding-left: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-lokale-seo-nederland .action-steps li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  counter-increment: step;
}

.post-lokale-seo-nederland .action-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--fs-small);
}

/* Related Posts Section */
.post-lokale-seo-nederland .related-posts-section {
  background-color: var(--color-light);
  padding: var(--space-4xl) 0;
}

.post-lokale-seo-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-secondary);
}

.post-lokale-seo-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-lokale-seo-nederland .related-post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

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

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

.post-lokale-seo-nederland .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .post-lokale-seo-nederland .section-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-lokale-seo-nederland .strategy-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-lokale-seo-nederland .advanced-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-lokale-seo-nederland .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .post-lokale-seo-nederland .related-posts-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Base Styles for Post Page */
.post-technische-seo-ruggengraat-webzichtbaarheid {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Breadcrumbs */
.post-technische-seo-ruggengraat-webzichtbaarheid .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  background-color: var(--color-light);
  border-bottom: 1px solid var(--color-light-gray);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(46, 196, 182, 0.3) 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 1;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  font-weight: 700;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}

/* Content Sections - General */
.post-technische-seo-ruggengraat-webzichtbaarheid .content-section {
  padding: var(--space-4xl) 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .content-section h2 {
  font-size: var(--fs-h2);
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .content-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-top: var(--space-sm);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .section-content {
    flex-direction: row;
    align-items: center;
  }
  
  .post-technische-seo-ruggengraat-webzichtbaarheid .text-content {
    flex: 1;
  }
  
  .post-technische-seo-ruggengraat-webzichtbaarheid .image-container {
    flex: 1;
  }
}

.post-technische-seo-ruggengraat-webzichtbaarheid .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Site Performance Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .site-performance {
  background-color: white;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .optimization-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .optimization-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .optimization-list li::marker {
  color: var(--color-primary);
}

/* Mobile Optimization Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .mobile-optimization {
  background-color: var(--color-light);
  position: relative;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .mobile-optimization::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(46, 196, 182, 0.05) 0%, rgba(46, 196, 182, 0) 100%);
  z-index: 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .mobile-optimization .container {
  position: relative;
  z-index: 1;
}

/* Structured Data Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .structured-data {
  background-color: white;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .schema-types {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .schema-types li {
  margin-bottom: var(--space-md);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .schema-types li::marker {
  color: var(--color-accent);
}

/* Indexation & Crawlability Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .indexation-crawlability {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-4xl) 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .indexation-crawlability h2 {
  color: white;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .indexation-crawlability h2::after {
  background-color: var(--color-accent);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .key-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .key-points {
    grid-template-columns: 1fr 1fr;
  }
}

.post-technische-seo-ruggengraat-webzichtbaarheid .point {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .point:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .point h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .point p {
  margin-bottom: 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .conclusion {
  font-size: var(--fs-h6);
  font-weight: 500;
  line-height: 1.6;
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
}

/* Related Posts Section */
.post-technische-seo-ruggengraat-webzichtbaarheid .related-posts {
  background-color: var(--color-light);
  padding: var(--space-4xl) 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-dark);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .related-posts h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: var(--space-sm) auto 0;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.post-technische-seo-ruggengraat-webzichtbaarheid .post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-card h3 a:hover {
  color: var(--color-primary);
}

.post-technische-seo-ruggengraat-webzichtbaarheid .post-card p {
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .read-more {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  margin-top: auto;
}

.post-technische-seo-ruggengraat-webzichtbaarheid .read-more:hover {
  color: var(--color-secondary);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-technische-seo-ruggengraat-webzichtbaarheid .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-technische-seo-ruggengraat-webzichtbaarheid .section-content {
    flex-direction: column;
  }
  
  .post-technische-seo-ruggengraat-webzichtbaarheid .mobile-optimization .section-content {
    flex-direction: column-reverse;
  }
}

@media (min-width: 1024px) and (max-width: 1023px) {
  .post-technische-seo-ruggengraat-webzichtbaarheid .content-section {
    padding: var(--section-padding-tablet) 0;
  }
}

/* Base Styles for the Post Page */
.post-page {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  line-height: 1.6;
}

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

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

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

/* Hero Section */
.post-page .post-hero {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-3xl) 0;
  text-align: center;
}

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

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

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

.post-page .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

.post-page .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
}

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

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

/* Essentials Section */
.post-page .essentials-section {
  background-color: var(--color-light);
}

.post-page .essentials-section .section-content {
  display: flex;
  flex-direction: column;
}

.post-page .metrics-list {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
}

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

.post-page .image-container {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-page .metrics-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-medium);
}

.post-page .metrics-image:hover {
  transform: scale(1.02);
}

/* Advanced Section */
.post-page .advanced-section {
  background-color: var(--color-light-gray);
}

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

.post-page .metric-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.post-page .metric-card h3, 
.post-page .metric-card h4 {
  color: var(--color-secondary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-page .metric-card p {
  margin-bottom: 0;
  font-size: var(--fs-body);
}

.post-page .tools-section {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-page .tools-section h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-page .tools-list {
  padding-left: var(--space-lg);
}

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

.post-page .analysis-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* Actionable Section */
.post-page .actionable-section {
  background-color: var(--color-light);
}

.post-page .action-steps {
  margin: var(--space-xl) 0;
}

.post-page .step {
  background-color: white;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.post-page .step:hover {
  transform: translateX(5px);
}

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

.post-page .step p {
  margin-bottom: 0;
}

.post-page .key-takeaways {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-xl);
}

.post-page .key-takeaways h3 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

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

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

/* Related Posts Section */
.post-page .related-posts-section {
  background-color: var(--color-light-gray);
  padding: var(--space-4xl) 0;
}

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

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

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

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

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

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

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

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

.post-page .post-card p {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.post-page .btn-outline {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  color: var(--color-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.post-page .btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

.post-page .btn-sm {
  font-size: var(--fs-small);
  padding: var(--space-xs) var(--space-md);
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .post-page .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .essentials-section .section-content {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
  
  .post-page .text-content {
    flex: 1;
  }
  
  .post-page .image-container {
    flex: 1;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .post-page .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-page .content-section {
    padding: var(--space-5xl) 0;
  }
}

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

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

.privacy-page__header h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.privacy-page__last-updated {
  font-size: var(--fs-small);
  margin-bottom: var(--space-lg);
}

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

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

.privacy-page__section p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

@media (max-width: 1024px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__header h1 {
    font-size: var(--fs-h2);
  }
  
  .privacy-page__section h2 {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-lg);
  }
}

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

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

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

.terms-page__updated {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

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

.terms-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-light-gray);
}

.terms-page__section p {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
  line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
  .terms-page {
    padding: var(--space-2xl) 0;
  }
  
  .terms-page__header {
    margin-bottom: var(--space-2xl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__header h1 {
    font-size: calc(var(--fs-h2) * 0.9);
  }
  
  .terms-page__section h2 {
    font-size: calc(var(--fs-h4) * 0.95);
  }
}

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

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

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

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

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

.cookie-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cookie-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.cookie-page__intro {
  font-size: var(--fs-body);
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cookie-page p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

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

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

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

@media (max-width: 1024px) {
  .cookie-page {
    padding: var(--space-xl) var(--space-md);
  }
  
  .cookie-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .cookie-page__title {
    font-size: var(--fs-h2);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--fs-h6);
  }
}

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

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

.thank-page__content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: white;
}

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

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

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

.thank-page__message p {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

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

.thank-page__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.thank-page__tag {
  background-color: var(--color-light-gray);
  color: var(--color-gray);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-pill);
  font-size: var(--fs-small);
  font-family: var(--font-secondary);
}

@media (max-width: 1024px) {
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__title {
    font-size: var(--fs-h2);
  }
}

@media (max-width: 480px) {
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-h3);
  }
  
  .thank-page__tags {
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .error-404__code {
    font-family: var(--font-primary);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
    text-shadow: 3px 3px 0 var(--color-light-gray);
    letter-spacing: -0.03em;
    position: relative;
  }

  .error-404__code::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background-color: var(--color-light-gray);
    bottom: -10px;
    left: -10%;
    border-radius: var(--border-radius-pill);
  }

  .error-404__title {
    font-family: var(--font-primary);
    font-size: var(--fs-h3);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-weight: 600;
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    color: var(--color-gray);
    margin-bottom: var(--space-xl);
    max-width: 90%;
  }

  .error-404__button {
    margin-bottom: var(--space-xl);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  }

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

  .error-404__info {
    font-size: var(--fs-small);
    color: var(--color-gray);
    max-width: 90%;
    line-height: 1.6;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-light-gray);
  }

  /* Media Queries */
  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-3xl) var(--space-md);
    }
    
    .error-404__message {
      margin-bottom: var(--space-lg);
    }
    
    .error-404__info {
      font-size: var(--fs-xs);
    }
  }
