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

:root {
  /* Color Scheme - Sophisticated Dutch-inspired palette */
  --color-primary: #1A3A63; /* Deep Dutch blue */
  --color-secondary: #E4A013; /* Warm amber accent */
  --color-tertiary: #5B8C5A; /* Professional green */
  --color-accent: #D66853; /* Terracotta accent */
  --color-background: #F5F5F0; /* Soft cream background */
  --color-background-alt: #E9EAE4; /* Secondary background */
  --color-text: #333333; /* Dark text for readability */
  --color-text-light: #6D7278; /* Secondary text color */
  
  /* Typography */
  --font-primary: 'Blinker', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  
  /* Border Radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-focus: 0 0 0 3px rgba(26, 58, 99, 0.3);
  
  /* Text Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.8;
  
  /* Icon Sizes */
  --icon-sm: 1rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
}

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

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

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

h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

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

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

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

p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-loose);
}

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

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

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

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

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

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

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

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

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

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

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

.btn i {
  margin-right: 0.5rem;
}

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

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

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

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

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

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

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

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

i.fas, i.far, i.fab {
  margin-right: var(--space-xs);
}

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

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

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

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

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

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

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

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

/* Responsive Typography */
@media (max-width: 767px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  h4, h5 {
    font-size: var(--text-lg);
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 17px;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-background);
  border-bottom: 1px solid rgba(26, 58, 99, 0.08);
  position: relative;
  padding: var(--space-sm) 0;
}

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

/* Logo Styles */
.header__logo-wrapper {
  position: relative;
  z-index: 2;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  border-bottom: none;
  transition: var(--transition-normal);
}

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

.header__logo-icon {
  font-size: var(--text-xl);
  color: var(--color-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.header__logo-accent {
  color: var(--color-secondary);
}

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

/* Navigation Styles */
.header__nav {
  position: relative;
  z-index: 1;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-item--has-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: var(--transition-normal);
  border-bottom: 2px solid transparent;
}

.header__nav-link:hover {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-secondary);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 240px;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 10;
}

.header__dropdown-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: var(--space-xs) var(--space-sm);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-bottom: none;
}

.header__dropdown-link:hover {
  background-color: var(--color-background-alt);
  color: var(--color-primary);
  border-bottom: none;
}

/* Action Buttons */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
}

.header__cta {
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

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

.header__mobile-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.header__mobile-icon::before,
.header__mobile-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.header__mobile-icon::before {
  top: -7px;
}

.header__mobile-icon::after {
  bottom: -7px;
}

/* Mobile Menu Styles */
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 9999;
}

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

.header__mobile-menu-inner {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.header__mobile-menu.active .header__mobile-menu-inner {
  right: 0;
}

.header__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-background-alt);
}

.header__mobile-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.header__close-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__close-icon::before,
.header__close-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
  top: 50%;
  left: 0;
}

.header__close-icon::before {
  transform: rotate(45deg);
}

.header__close-icon::after {
  transform: rotate(-45deg);
}

.header__mobile-nav {
  flex: 1;
  padding: var(--space-md);
}

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

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

.header__mobile-nav-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.header__mobile-dropdown-arrow {
  width: 12px;
  height: 12px;
  position: relative;
  transition: var(--transition-fast);
}

.header__mobile-dropdown-arrow::before,
.header__mobile-dropdown-arrow::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: var(--color-primary);
  top: 5px;
}

.header__mobile-dropdown-arrow::before {
  left: 0;
  transform: rotate(45deg);
}

.header__mobile-dropdown-arrow::after {
  right: 0;
  transform: rotate(-45deg);
}

.header__mobile-nav-item--active .header__mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.header__mobile-nav-link {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  border-bottom: none;
}

.header__mobile-dropdown {
  display: none;
  list-style: none;
  margin: var(--space-xs) 0 0 var(--space-md);
  padding: 0;
}

.header__mobile-nav-item--active .header__mobile-dropdown {
  display: block;
}

.header__mobile-dropdown-link {
  font-size: var(--text-md);
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  border-bottom: none;
}

.header__mobile-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--color-background-alt);
}

.header__mobile-cta {
  display: block;
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .header__container {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .header__logo-name {
    font-size: var(--text-lg);
  }
  
  .header__logo-tagline {
    font-size: calc(var(--text-xs) - 1px);
  }
  
  .header__cta {
    display: none;
  }
  
  .header__mobile-menu-inner {
    width: 100%;
    max-width: 100%;
  }
}

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

/* Hero Section */
.main .hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0F2A4F 100%);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

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

.main .hero-content {
  position: relative;
  z-index: 2;
}

.main .hero-content h1 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: var(--text-4xl);
  line-height: 1.1;
  max-width: 600px;
}

.main .hero-content h1::after {
  background-color: var(--color-secondary);
}

.main .hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  line-height: var(--line-height-loose);
}

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

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

.main .hero-feature i {
  color: var(--color-secondary);
}

.main .hero-feature p {
  margin: 0;
  font-weight: 600;
  color: white;
}

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

.main .hero-cta .btn-outline {
  border-color: white;
  color: white;
}

.main .hero-cta .btn-outline:hover {
  background-color: white;
  color: var(--color-primary);
}

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

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

.main .hero-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

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

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

.main .hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.main .shape-1 {
  width: 200px;
  height: 200px;
  background-color: rgba(228, 160, 19, 0.15);
  top: -50px;
  right: -30px;
  transform: rotate(45deg);
}

.main .shape-2 {
  width: 150px;
  height: 150px;
  background-color: rgba(91, 140, 90, 0.15);
  bottom: -30px;
  left: 20%;
  transform: rotate(20deg);
}

.main .shape-3 {
  width: 100px;
  height: 100px;
  background-color: rgba(214, 104, 83, 0.15);
  top: 40%;
  left: -20px;
  transform: rotate(60deg);
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.main .hero-wave svg {
  width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main .section-cta {
  text-align: center;
}

.main .section-cta .btn {
  font-size: var(--text-md);
  padding: var(--space-sm) var(--space-lg);
}

/* Why Choose Us Section */
.main .why-choose-us {
  padding: var(--space-xl) 0 var(--space-xxl);
  position: relative;
}

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

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

.main .section-description {
  color: var(--color-text-light);
  font-size: var(--text-lg);
}

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

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

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

.main .benefit-icon {
  background-color: rgba(26, 58, 99, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.main .benefit-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

.main .stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.main .stat-item {
  text-align: center;
  padding: var(--space-sm);
  flex: 1;
  min-width: 180px;
}

.main .stat-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-family: var(--font-secondary);
}

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

.main .section-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* Training Programs Section */
.main .training-programs {
  padding: var(--space-xl) 0;
}

.main .programs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.main .program-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.main .program-tab {
  padding: var(--space-sm) var(--space-md);
  background-color: white;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.main .program-tab.active {
  background-color: var(--color-primary);
  color: white;
}

.main .program-tab:hover:not(.active) {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main .program-content-wrapper {
  position: relative;
  min-height: 400px;
}

.main .program-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.main .program-content.active {
  display: grid;
  opacity: 1;
}

.main .program-image {
  height: 100%;
  overflow: hidden;
}

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

.main .program-content:hover .program-image img {
  transform: scale(1.05);
}

.main .program-details {
  padding: var(--space-lg);
}

.main .program-details h3 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.main .program-details p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

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

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

.main .program-features li i {
  color: var(--color-tertiary);
}

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

.main .testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.main .testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.main .testimonial-slide.active {
  display: block;
  opacity: 1;
}

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

.main .testimonial-content {
  margin-bottom: var(--space-md);
  position: relative;
}

.main .testimonial-content i {
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: var(--text-3xl);
}

.main .testimonial-content p {
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-left: var(--space-md);
}

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

.main .testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

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

.main .testimonial-info h4 {
  margin-bottom: 0;
  font-size: var(--text-md);
}

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

.main .testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-md);
}

.main .testimonial-prev,
.main .testimonial-next {
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.main .testimonial-prev:hover,
.main .testimonial-next:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.main .testimonial-dots {
  display: flex;
  gap: var(--space-xs);
}

.main .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.main .dot.active {
  background-color: var(--color-primary);
}

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

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

.main .contact-info {
  display: flex;
  flex-direction: column;
}

.main .contact-info .section-header {
  text-align: left;
  margin: 0 0 var(--space-md) 0;
}

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

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

.main .feature-icon {
  background-color: rgba(228, 160, 19, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main .feature-text h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
}

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

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

.main .contact-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

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

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

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

.main .contact-form h3 {
  grid-column: 1 / -1;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

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

.main .form-group.full-width {
  grid-column: 1 / -1;
}

.main .form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: var(--text-sm);
}

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--text-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.main .privacy-consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.main .privacy-consent input {
  margin: 0;
}

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

.main .submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  margin-top: var(--space-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.main .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FAQ Section */
.main .faq-section {
  padding: var(--space-xl) 0;
}

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

.main .faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.main .faq-question:hover {
  background-color: rgba(26, 58, 99, 0.05);
}

.main .faq-question h3 {
  margin-bottom: 0;
  font-size: var(--text-md);
  padding-right: var(--space-md);
}

.main .faq-question i {
  color: var(--color-primary);
  transition: transform var(--transition-normal);
}

.main .faq-item.active .faq-question i {
  transform: rotate(45deg);
}

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

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

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

/* 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);
  z-index: 1000;
  padding: var(--space-md);
  display: none;
}

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

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

.main .cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .main .hero-content {
    text-align: center;
  }
  
  .main .hero-content h1,
  .main .hero-subtitle {
    max-width: 100%;
  }
  
  .main .hero-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-features {
    justify-content: center;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-image-container {
    margin: 0 auto;
  }
  
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .main .contact-info .section-header {
    text-align: center;
  }
  
  .main .program-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-features {
    grid-template-columns: 1fr;
  }
  
  .main .contact-form {
    grid-template-columns: 1fr;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
  
  .main .stat-item {
    min-width: 100%;
  }
  
  .main .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .main .testimonial-image {
    margin: 0 auto;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--color-background-alt);
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}

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

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

.footer__brand {
  grid-column: span 1;
  position: relative;
}

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

.footer__tagline {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
}

.footer__decoration {
  position: absolute;
  top: 0;
  left: -15px;
  width: 3px;
  height: 70%;
  background-color: var(--color-secondary);
  transform: skewY(-20deg);
}

.footer__nav {
  grid-column: span 1;
}

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

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

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

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

.footer__link {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  display: inline-block;
  padding: var(--space-xs) 0;
  border-bottom: none;
}

.footer__link:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
  border-bottom: none;
}

.footer__link:before {
  content: '›';
  position: absolute;
  left: -10px;
  opacity: 0;
  transition: var(--transition-normal);
}

.footer__link:hover:before {
  opacity: 1;
  left: -15px;
}

.footer__cta {
  grid-column: span 1;
  background-color: var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.footer__cta .footer__heading {
  color: white;
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.footer__cta .footer__heading:after {
  background-color: var(--color-secondary);
}

.footer__btn {
  width: 100%;
  margin-top: var(--space-sm);
  font-weight: 600;
  transition: var(--transition-normal);
}

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

.footer__accent-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-secondary);
}

.footer__divider {
  position: relative;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.footer__divider-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

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

.footer__bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

.footer__legal li {
  margin-right: var(--space-sm);
  position: relative;
}

.footer__legal li:not(:last-child):after {
  content: '•';
  position: absolute;
  right: -10px;
  color: var(--color-text-light);
}

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

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

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

.footer__quality-badge {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
  padding-left: var(--space-sm);
}

.footer__quality-badge:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-tertiary);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .footer__brand, .footer__nav, .footer__cta {
    grid-column: span 1;
  }
  
  .footer__cta {
    grid-column: span 2;
    margin-top: var(--space-md);
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer__brand, .footer__nav, .footer__cta {
    grid-column: span 1;
  }
  
  .footer__bottom-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }
  
  .footer__legal {
    justify-content: center;
    margin-top: var(--space-xs);
  }
}

.privacy-page {
  padding: var(--space-lg) 0 var(--space-xl);
  background-color: var(--color-background);
}

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

.privacy-page__last-updated {
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.privacy-page__introduction {
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-secondary);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .privacy-page__section {
    padding: var(--space-md);
  }
  
  .privacy-page__introduction {
    font-size: var(--text-md);
  }
}

.terms-page {
  padding: var(--space-lg) 0;
  background-color: var(--color-background);
}

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

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  position: relative;
}

.terms-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

.terms-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-background-alt);
}

.terms-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-loose);
}

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

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-md) 0;
  }
  
  .terms-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
}

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

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

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

.cookie-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

.cookie-page__section-title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-background-alt);
  padding-bottom: var(--space-xs);
}

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

.cookie-page__subsection-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.cookie-page__text {
  color: var(--color-text);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-sm);
}

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

.cookie-page__list-item {
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-normal);
}

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

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-md) 0;
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-md);
  }
  
  .cookie-page__section {
    padding: var(--space-sm);
  }
}

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

.thank-page__container {
  width: 100%;
}

.thank-page__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-page__title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.thank-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

.thank-page__icon i {
  font-size: var(--icon-xl);
  color: var(--color-tertiary);
}

.thank-page__subtitle {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.thank-page__message,
.thank-page__confirmation,
.thank-page__expectation {
  color: var(--color-text);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
}

.thank-page__confirmation {
  font-weight: 600;
  color: var(--color-primary);
}

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

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

.thank-page__button i {
  margin-right: var(--space-xs);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__card {
    padding: var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__subtitle {
    font-size: var(--text-xl);
  }
  
  .thank-page__message,
  .thank-page__confirmation,
  .thank-page__expectation {
    font-size: var(--text-md);
  }
}

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

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

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

.category-page__hero-description {
  font-size: var(--text-lg);
  max-width: 800px;
  line-height: var(--line-height-loose);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

/* Info Section */
.category-page__info-section {
  padding: var(--space-xl) 0;
}

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

@media (min-width: 768px) {
  .category-page__info-content {
    grid-template-columns: 3fr 2fr;
  }
}

.category-page__info-text {
  padding-right: var(--space-md);
}

.category-page__info-list {
  list-style: none;
  margin-top: var(--space-md);
}

.category-page__info-list li {
  margin-bottom: var(--space-md);
}

.category-page__info-list h4 {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.category-page__info-list i {
  margin-right: var(--space-sm);
}

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

.category-page__culture-image {
  position: relative;
  z-index: 1;
}

/* Tips Section */
.category-page__tips-section {
  padding: var(--space-xl) 0;
}

.category-page__tips-section h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

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

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

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

.category-page__tip-icon {
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
  text-align: center;
}

.category-page__tip-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  text-align: center;
}

.category-page__tip-card p {
  color: var(--color-text);
  line-height: var(--line-height-loose);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-lg) 0;
  }
  
  .category-page__hero-description {
    font-size: var(--text-md);
  }
  
  .category-page__posts,
  .category-page__info-section,
  .category-page__tips-section {
    padding: var(--space-lg) 0;
  }
  
  .category-page__info-image {
    margin-top: var(--space-md);
  }
}

/* Post-specific styles */
.post-zakelijke-dresscode-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-zakelijke-dresscode-nederland .post-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--color-secondary);
}

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

.post-zakelijke-dresscode-nederland .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-loose);
  max-width: 800px;
  color: white;
  font-weight: 400;
}

/* Breadcrumbs */
.post-zakelijke-dresscode-nederland .breadcrumbs {
  background-color: var(--color-background-alt);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.post-zakelijke-dresscode-nederland .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.post-zakelijke-dresscode-nederland .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Content Sections */
.post-zakelijke-dresscode-nederland .content-section {
  padding: var(--space-xxl) 0;
}

.post-zakelijke-dresscode-nederland .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.post-zakelijke-dresscode-nederland .text-content {
  flex: 1;
}

.post-zakelijke-dresscode-nederland .image-container {
  flex: 1;
  position: relative;
}

.post-zakelijke-dresscode-nederland .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.post-zakelijke-dresscode-nederland .center-image {
  margin: var(--space-lg) auto 0;
  max-width: 800px;
}

/* Handshake Section */
.post-zakelijke-dresscode-nederland .handshake-section {
  background-color: white;
}

/* Conversation Section */
.post-zakelijke-dresscode-nederland .conversation-section {
  background-color: var(--color-background-alt);
}

.post-zakelijke-dresscode-nederland .topic-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.post-zakelijke-dresscode-nederland .topic-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-loose);
}

.post-zakelijke-dresscode-nederland .tips-container {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.post-zakelijke-dresscode-nederland .tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.post-zakelijke-dresscode-nederland .tip-card {
  background-color: var(--color-background);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.post-zakelijke-dresscode-nederland .tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-zakelijke-dresscode-nederland .tip-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
}

/* Cultural Context Section */
.post-zakelijke-dresscode-nederland .cultural-context-section {
  background-color: white;
}

.post-zakelijke-dresscode-nederland .scenarios-container {
  margin: var(--space-lg) 0;
}

.post-zakelijke-dresscode-nederland .scenario {
  background-color: var(--color-background);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.post-zakelijke-dresscode-nederland .scenario h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
}

.post-zakelijke-dresscode-nederland .takeaways {
  background-color: var(--color-background-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.post-zakelijke-dresscode-nederland .takeaways ol {
  padding-left: var(--space-lg);
  margin-top: var(--space-sm);
}

.post-zakelijke-dresscode-nederland .takeaways li {
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-normal);
}

/* Related Posts Section */
.post-zakelijke-dresscode-nederland .related-posts-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-background-alt);
}

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

.post-zakelijke-dresscode-nederland .related-post-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-zakelijke-dresscode-nederland .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-zakelijke-dresscode-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-zakelijke-dresscode-nederland .related-post-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-zakelijke-dresscode-nederland .btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.post-zakelijke-dresscode-nederland .btn-link:hover {
  color: var(--color-secondary);
}

.post-zakelijke-dresscode-nederland .btn-link i {
  transition: var(--transition-fast);
  margin-left: var(--space-xs);
}

.post-zakelijke-dresscode-nederland .btn-link:hover i {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-zakelijke-dresscode-nederland .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-zakelijke-dresscode-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-zakelijke-dresscode-nederland .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-zakelijke-dresscode-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-zakelijke-dresscode-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-zakelijke-dresscode-nederland .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-zakelijke-dresscode-nederland .section-content {
    flex-direction: column;
  }
  
  .post-zakelijke-dresscode-nederland .tips-grid,
  .post-zakelijke-dresscode-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Page Styles */
.post-zakelijke-dresscode-nederland {
  color: var(--color-text);
  line-height: var(--line-height-normal);
}

/* Breadcrumbs */
.post-zakelijke-dresscode-nederland .breadcrumbs {
  background-color: var(--color-background-alt);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.post-zakelijke-dresscode-nederland .breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.post-zakelijke-dresscode-nederland .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.post-zakelijke-dresscode-nederland .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-zakelijke-dresscode-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.post-zakelijke-dresscode-nederland .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.post-zakelijke-dresscode-nederland .post-hero h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.post-zakelijke-dresscode-nederland .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-loose);
  max-width: 900px;
  margin-bottom: 0;
}

/* Content Sections */
.post-zakelijke-dresscode-nederland .content-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.post-zakelijke-dresscode-nederland .content-section.bg-alt {
  background-color: var(--color-background-alt);
}

.post-zakelijke-dresscode-nederland .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.post-zakelijke-dresscode-nederland .section-conversatie .content-wrapper {
  grid-template-columns: 2fr 3fr;
}

.post-zakelijke-dresscode-nederland .text-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-zakelijke-dresscode-nederland h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

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

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

.post-zakelijke-dresscode-nederland h4 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.post-zakelijke-dresscode-nederland p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-loose);
}

/* Image Styling */
.post-zakelijke-dresscode-nederland .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-zakelijke-dresscode-nederland .image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.post-zakelijke-dresscode-nederland .image-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Lists Styling */
.post-zakelijke-dresscode-nederland .topic-list,
.post-zakelijke-dresscode-nederland .dos ul,
.post-zakelijke-dresscode-nederland .donts ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.post-zakelijke-dresscode-nederland .topic-list li,
.post-zakelijke-dresscode-nederland .dos ul li,
.post-zakelijke-dresscode-nederland .donts ul li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-loose);
}

/* Do's and Don'ts Section */
.post-zakelijke-dresscode-nederland .dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
}

.post-zakelijke-dresscode-nederland .dos {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.post-zakelijke-dresscode-nederland .donts {
  background-color: var(--color-accent);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.post-zakelijke-dresscode-nederland .dos h4,
.post-zakelijke-dresscode-nederland .donts h4 {
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-sm);
}

/* Related Posts Section */
.post-zakelijke-dresscode-nederland .section-related {
  padding: var(--space-xxl) 0;
}

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

.post-zakelijke-dresscode-nederland .related-post-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.post-zakelijke-dresscode-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-zakelijke-dresscode-nederland .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

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

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-zakelijke-dresscode-nederland .content-wrapper,
  .post-zakelijke-dresscode-nederland .section-conversatie .content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-zakelijke-dresscode-nederland .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-zakelijke-dresscode-nederland .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-zakelijke-dresscode-nederland .dos-donts {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

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

/* Base Page Styles */
.post-dresscode-nederland {
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

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

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

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

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

.post-dresscode-nederland .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  transform: skewX(-15deg) translateX(50%);
  z-index: 1;
}

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

.post-dresscode-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  line-height: var(--line-height-tight);
}

.post-dresscode-nederland .post-hero h1::after {
  background-color: var(--color-secondary);
}

.post-dresscode-nederland .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-normal);
  margin-bottom: 0;
  font-weight: 400;
}

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

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

.post-dresscode-nederland .bg-alt {
  background-color: var(--color-background-alt);
}

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

@media (min-width: 768px) {
  .post-dresscode-nederland .section-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.post-dresscode-nederland .section-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.post-dresscode-nederland .section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

/* Dresscode Grid */
.post-dresscode-nederland .dresscode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .post-dresscode-nederland .dresscode-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.post-dresscode-nederland .dresscode-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border-top: 3px solid var(--color-primary);
}

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

.post-dresscode-nederland .dresscode-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.post-dresscode-nederland .dresscode-card ul {
  margin-top: var(--space-sm);
  padding-left: var(--space-md);
}

.post-dresscode-nederland .dresscode-card li {
  margin-bottom: var(--space-xs);
}

.post-dresscode-nederland .dresscode-note {
  background-color: rgba(228, 160, 19, 0.1);
  border-left: 3px solid var(--color-secondary);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Tips Container */
.post-dresscode-nederland .tips-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .post-dresscode-nederland .tips-container {
    grid-template-columns: 1fr 1fr;
  }
}

.post-dresscode-nederland .tip-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-tertiary);
}

.post-dresscode-nederland .tip-item h4 {
  color: var(--color-tertiary);
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

.post-dresscode-nederland .tip-item p {
  margin-bottom: 0;
}

/* Key Takeaways */
.post-dresscode-nederland .key-takeaways {
  background-color: rgba(26, 58, 99, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-dresscode-nederland .key-takeaways h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-dresscode-nederland .key-takeaways ul {
  margin: 0;
  padding-left: var(--space-lg);
}

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

/* Related Posts */
.post-dresscode-nederland .related-posts-section {
  padding: var(--space-xl) 0;
}

.post-dresscode-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

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

.post-dresscode-nederland .related-post-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.post-dresscode-nederland .related-post-card a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.post-dresscode-nederland .related-post-card a:hover {
  color: var(--color-secondary);
}

.post-dresscode-nederland .related-post-card p {
  margin-bottom: 0;
  font-size: var(--text-md);
  color: var(--color-text-light);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .post-dresscode-nederland .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-dresscode-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-dresscode-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-dresscode-nederland .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-dresscode-nederland h2 {
    font-size: var(--text-2xl);
  }
}

  /* Page-specific styles */
  .post-vergaderetiquette-nederland {
    color: var(--color-text);
  }
  
  /* Breadcrumbs */
  .post-vergaderetiquette-nederland .breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    background-color: var(--color-background);
  }
  
  .post-vergaderetiquette-nederland .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .post-vergaderetiquette-nederland .breadcrumbs a:hover {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
  }
  
  /* Hero Section */
  .post-vergaderetiquette-nederland .post-hero {
    background-color: var(--color-background-alt);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-vergaderetiquette-nederland .post-hero .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .post-vergaderetiquette-nederland .post-hero h1 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    position: relative;
    line-height: var(--line-height-tight);
  }
  
  .post-vergaderetiquette-nederland .post-hero h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
  }
  
  .post-vergaderetiquette-nederland .lead {
    font-size: var(--text-xl);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    max-width: 90%;
  }
  
  .post-vergaderetiquette-nederland .hero-image {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: var(--space-md) 0;
  }
  
  /* Content Sections */
  .post-vergaderetiquette-nederland .content-section {
    padding: var(--space-xxl) 0;
  }
  
  .post-vergaderetiquette-nederland .bg-white {
    background-color: white;
  }
  
  .post-vergaderetiquette-nederland .bg-alt {
    background-color: var(--color-background-alt);
  }
  
  .post-vergaderetiquette-nederland .bg-primary {
    background-color: var(--color-primary);
  }
  
  .post-vergaderetiquette-nederland .content-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .post-vergaderetiquette-nederland .content-section h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    position: relative;
  }
  
  .post-vergaderetiquette-nederland .bg-primary h2 {
    color: white;
  }
  
  .post-vergaderetiquette-nederland .content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
  }
  
  .post-vergaderetiquette-nederland .content-section h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin: var(--space-md) 0 var(--space-sm);
  }
  
  .post-vergaderetiquette-nederland .section-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .post-vergaderetiquette-nederland .text-content {
    flex: 1;
  }
  
  .post-vergaderetiquette-nederland .section-image {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: var(--space-sm) 0;
  }
  
  /* Lists */
  .post-vergaderetiquette-nederland .etiquette-list,
  .post-vergaderetiquette-nederland .communication-tips {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
  }
  
  .post-vergaderetiquette-nederland .etiquette-list li,
  .post-vergaderetiquette-nederland .communication-tips li {
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-normal);
  }
  
  /* Takeaways Section */
  .post-vergaderetiquette-nederland .takeaways-section {
    padding: var(--space-xxl) 0;
  }
  
  .post-vergaderetiquette-nederland .takeaways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .post-vergaderetiquette-nederland .takeaway-card {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }
  
  .post-vergaderetiquette-nederland .takeaway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-vergaderetiquette-nederland .takeaway-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
  }
  
  .post-vergaderetiquette-nederland .takeaway-card p {
    color: var(--color-text);
    margin-bottom: 0;
  }
  
  /* Related Posts Section */
  .post-vergaderetiquette-nederland .related-posts-section {
    padding: var(--space-xxl) 0;
  }
  
  .post-vergaderetiquette-nederland .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
  }
  
  .post-vergaderetiquette-nederland .related-post-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
  }
  
  .post-vergaderetiquette-nederland .related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-vergaderetiquette-nederland .related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .post-vergaderetiquette-nederland .related-post-card h3 {
    font-size: var(--text-lg);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-sm);
    color: var(--color-primary);
  }
  
  .post-vergaderetiquette-nederland .related-post-card p {
    padding: 0 var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-md);
    color: var(--color-text-light);
    flex-grow: 1;
  }
  
  .post-vergaderetiquette-nederland .related-post-card .btn {
    margin: 0 var(--space-md) var(--space-md);
    align-self: flex-start;
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .post-vergaderetiquette-nederland .section-content {
      flex-direction: row;
      align-items: flex-start;
    }
    
    .post-vergaderetiquette-nederland .section-image {
      max-width: 45%;
      margin-left: var(--space-lg);
    }
  }
  
  @media (max-width: 991px) {
    .post-vergaderetiquette-nederland .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-vergaderetiquette-nederland .takeaways-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 767px) {
    .post-vergaderetiquette-nederland .post-hero {
      padding: var(--space-lg) 0;
    }
    
    .post-vergaderetiquette-nederland .post-hero h1 {
      font-size: var(--text-3xl);
    }
    
    .post-vergaderetiquette-nederland .lead {
      font-size: var(--text-lg);
      max-width: 100%;
    }
    
    .post-vergaderetiquette-nederland .content-section {
      padding: var(--space-xl) 0;
    }
    
    .post-vergaderetiquette-nederland .content-section h2 {
      font-size: var(--text-2xl);
    }
    
    .post-vergaderetiquette-nederland .content-section h3 {
      font-size: var(--text-lg);
    }
    
    .post-vergaderetiquette-nederland .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-vergaderetiquette-nederland .section-image {
      max-width: 100%;
      margin-left: 0;
    }
  }

/* Main Page Styles */
.post-vergaderetiquette-nederland {
  background-color: var(--color-background);
  color: var(--color-text);
}

/* Breadcrumbs Navigation */
.post-vergaderetiquette-nederland .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background-color: var(--color-background);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

/* Hero Section */
.post-vergaderetiquette-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-vergaderetiquette-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  line-height: var(--line-height-tight);
}

.post-vergaderetiquette-nederland .post-hero h1::after {
  background-color: var(--color-secondary);
}

.post-vergaderetiquette-nederland .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-loose);
  max-width: 900px;
  margin-bottom: 0;
}

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

.post-vergaderetiquette-nederland .content-section h2 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  position: relative;
}

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

.post-vergaderetiquette-nederland .content-section h3 {
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

.post-vergaderetiquette-nederland .content-section h4 {
  margin: var(--space-sm) 0;
  color: var(--color-primary);
}

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

.post-vergaderetiquette-nederland .content-section ul li {
  margin-bottom: var(--space-xs);
}

/* Email Section Styles */
.post-vergaderetiquette-nederland .email-section {
  background-color: white;
}

.post-vergaderetiquette-nederland .email-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.post-vergaderetiquette-nederland .email-section .image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-vergaderetiquette-nederland .email-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.post-vergaderetiquette-nederland .email-section img:hover {
  transform: scale(1.02);
}

/* Video Meeting Section Styles */
.post-vergaderetiquette-nederland .video-meeting-section {
  background-color: var(--color-background-alt);
}

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

.post-vergaderetiquette-nederland .tips-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.post-vergaderetiquette-nederland .do-column,
.post-vergaderetiquette-nederland .dont-column {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.post-vergaderetiquette-nederland .do-column h4 {
  color: var(--color-tertiary);
}

.post-vergaderetiquette-nederland .dont-column h4 {
  color: var(--color-accent);
}

.post-vergaderetiquette-nederland .video-meeting-section img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

/* Social Media Section Styles */
.post-vergaderetiquette-nederland .social-media-section {
  background-color: white;
}

.post-vergaderetiquette-nederland .platform-guidelines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.post-vergaderetiquette-nederland .platform {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.post-vergaderetiquette-nederland .platform:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-vergaderetiquette-nederland .platform h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: var(--space-xs);
  display: inline-block;
}

.post-vergaderetiquette-nederland .key-takeaways {
  background-color: var(--color-background-alt);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-lg);
}

.post-vergaderetiquette-nederland .key-takeaways h3 {
  margin-top: 0;
}

.post-vergaderetiquette-nederland .key-takeaways ul {
  margin-bottom: 0;
}

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

/* Related Posts Section */
.post-vergaderetiquette-nederland .related-posts-section {
  background-color: var(--color-background-alt);
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
}

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

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

.post-vergaderetiquette-nederland .post-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

.post-vergaderetiquette-nederland .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: none;
}

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

.post-vergaderetiquette-nederland .post-card p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  flex-grow: 1;
}

.post-vergaderetiquette-nederland .post-card .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-vergaderetiquette-nederland .platform-guidelines {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-vergaderetiquette-nederland .post-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .post-vergaderetiquette-nederland .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-vergaderetiquette-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-vergaderetiquette-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-vergaderetiquette-nederland .content-section {
    padding: var(--space-lg) 0;
  }
  
  .post-vergaderetiquette-nederland .email-section .section-content {
    grid-template-columns: 1fr;
  }
  
  .post-vergaderetiquette-nederland .tips-columns {
    grid-template-columns: 1fr;
  }
  
  .post-vergaderetiquette-nederland .platform-guidelines {
    grid-template-columns: 1fr;
  }
  
  .post-vergaderetiquette-nederland .post-cards {
    grid-template-columns: 1fr;
  }
}

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

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

.privacy-page__title {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
}

.privacy-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

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

.privacy-page__subheading {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin: var(--space-md) 0 var(--space-sm);
}

.privacy-page__intro {
  font-size: var(--text-md);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
}

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

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

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

.privacy-page p {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-loose);
}

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

@media (max-width: 767px) {
  .privacy-page__title {
    font-size: var(--text-2xl);
  }
  
  .privacy-page__heading {
    font-size: var(--text-lg);
  }
  
  .privacy-page__subheading {
    font-size: var(--text-md);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-lg) 0;
}

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

.terms-page__title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  position: relative;
}

.terms-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.terms-page__section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-background-alt);
}

.terms-page__section:last-child {
  border-bottom: none;
}

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

.terms-page__text {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
}

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

.terms-page__list-item {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-xs);
}

.terms-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-background-alt);
}

.terms-page__updated {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-style: italic;
}

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

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

.cookie-page h1 {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

.cookie-page h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.cookie-page h2 {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.cookie-page h3 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

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

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

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

.cookie-page__subsection {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--color-background-alt);
}

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

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

.cookie-page__intro {
  background-color: var(--color-background-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

@media (max-width: 767px) {
  .cookie-page h1 {
    font-size: var(--text-2xl);
  }
  
  .cookie-page h2 {
    font-size: var(--text-lg);
  }
  
  .cookie-page h3 {
    font-size: var(--text-md);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-md);
  }
}

/* Thank You Page Styles */
.thank-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-page__container {
  width: 100%;
}

.thank-page__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-page__title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.thank-page__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

.thank-page__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-background-alt);
  border-radius: 50%;
  color: var(--color-tertiary);
  font-size: var(--icon-lg);
  font-weight: bold;
  border: 3px solid var(--color-tertiary);
}

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

.thank-page__message {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-loose);
}

.thank-page__details {
  background-color: var(--color-background-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.thank-page__details p {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__card {
    padding: var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__subtitle {
    font-size: var(--text-xl);
  }
  
  .thank-page__message {
    font-size: var(--text-md);
  }
  
  .thank-page__icon i {
    width: 60px;
    height: 60px;
    font-size: var(--text-2xl);
  }
  
  .thank-page__details {
    padding: var(--space-sm);
  }
}

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

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

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

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

  .error-404__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
  }

  .error-404__message {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-loose);
    max-width: 90%;
  }

  .error-404__button {
    margin-top: var(--space-md);
    transition: var(--transition-normal);
  }

  .error-404__decoration {
    position: relative;
    margin-top: var(--space-xl);
  }

  .error-404__line {
    height: 2px;
    width: 100px;
    background-color: var(--color-secondary);
    opacity: 0.5;
    margin: 0 auto;
  }

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

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

    .error-404__title {
      font-size: var(--text-xl);
    }

    .error-404__message {
      font-size: var(--text-md);
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .error-404__code {
      font-size: 9rem;
    }
  }

  @media (min-width: 1024px) {
    .error-404__code {
      font-size: 12rem;
    }

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