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

:root {
  /* Colors */
  --color-primary: #0077B6; /* Deep blue for primary elements */
  --color-secondary: #023E8A; /* Darker blue for secondary elements */
  --color-accent: #FF9E00; /* Warm orange accent for highlights */
  --color-neutral-light: #F8F9FA; /* Light background */
  --color-neutral-medium: #E9ECEF; /* Medium neutral for cards/sections */
  --color-text-primary: #212529; /* Dark text for readability */
  --color-text-secondary: #495057; /* Secondary text color */
  --color-success: #38B000; /* Green for success states */
  
  /* Typography */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-size-base: 1rem; /* 16px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  
  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-2xl: 3rem; /* 48px */
  --space-3xl: 4rem; /* 64px */
  --space-4xl: 5rem; /* 80px */
  --space-5xl: 7.5rem; /* 120px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 2.5rem;
  
  /* Section padding */
  --section-padding-desktop: var(--space-5xl) 0;
  --section-padding-tablet: var(--space-3xl) 0;
  --section-padding-mobile: var(--space-2xl) 0;
}

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

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

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

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

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

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

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

h3 {
  font-size: var(--font-size-3xl);
}

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

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

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

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

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

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

a.underline {
  display: inline-block;
}

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

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

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

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

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

.btn-secondary {
  background-color: var(--color-neutral-medium);
  color: var(--color-text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

/* Badge styles */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--font-size-xs);
  font-weight: 500;
  border-radius: var(--border-radius-pill);
  background-color: var(--color-neutral-medium);
  color: var(--color-text-secondary);
}

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

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

.badge-success {
  background-color: var(--color-success);
  color: white;
}

/* Form elements */
input, textarea, select {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #CED4DA;
  border-radius: var(--border-radius-md);
  background-color: white;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  h1 {
    font-size: var(--font-size-4xl);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
  }
  
  h3 {
    font-size: var(--font-size-2xl);
  }
  
  section {
    padding: var(--section-padding-tablet);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
  
  section {
    padding: var(--section-padding-mobile);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
  }
}
/* Header Styles */
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  transition: all var(--transition-normal);
}

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

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

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

.header__logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-md);
  margin-right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header__logo-home {
  position: absolute;
  width: 20px;
  height: 16px;
  background-color: white;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  bottom: 8px;
}

.header__logo-home:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  top: -10px;
  left: 0;
}

.header__logo-wifi {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.header__logo-wifi:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  border-top-color: transparent;
}

.header__logo-wifi:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: white;
  border-radius: 50%;
}

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

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

.header__logo-tagline {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1;
}

/* Navigation Styles */
.header__nav {
  margin-left: auto;
  margin-right: var(--space-lg);
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-secondary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.header__nav-link:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

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

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

/* CTA Button */
.header__cta-button {
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-md);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

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

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

.header__mobile-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 5px auto;
  transition: all var(--transition-fast);
  border-radius: var(--border-radius-pill);
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-neutral-light);
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

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

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

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

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

.header__mobile-close-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  border-radius: var(--border-radius-pill);
}

.header__mobile-close-line:first-child {
  transform: rotate(45deg);
}

.header__mobile-close-line:last-child {
  transform: rotate(-45deg);
}

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

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

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

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast);
}

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

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

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

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

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

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

/* Show mobile menu when active */
.header--mobile-active .header__mobile-menu {
  transform: translateX(0);
}

.header--mobile-active .header__mobile-toggle-line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.header--mobile-active .header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header--mobile-active .header__mobile-toggle-line:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Media Queries */
@media (max-width: 1023px) {
  .header__nav-list {
    gap: var(--space-md);
  }
  
  .header__nav-link {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-xs);
  }
  
  .header__cta-button {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-sm);
  }
  
  .header__logo-main {
    font-size: var(--font-size-lg);
  }
  
  .header__logo-tagline {
    font-size: var(--font-size-xs);
  }
  
  .header__logo-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__mobile-menu {
    display: block;
  }
}

/* Main Styles */
.main {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
}

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

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

.main .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.main .hero h1 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-5xl);
  line-height: 1.1;
  color: var(--color-text-primary);
  position: relative;
}

.main .hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

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

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

.main .hero-image-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

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

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

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(0, 119, 182, 0.1);
  top: -100px;
  right: -50px;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 158, 0, 0.1);
  bottom: -70px;
  left: -30px;
}

.main .hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 3;
}

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

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

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

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

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

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

.main .section-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

.main .section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

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

/* Benefits Section */
.main .benefits {
  padding: var(--space-5xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

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

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

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

.main .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-normal);
}

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

.main .benefit-card:hover::before {
  transform: scaleY(1);
}

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

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

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

.main .benefit-card p {
  color: var(--color-text-secondary);
}

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

.main .steps-container {
  margin-top: var(--space-3xl);
}

.main .step-card {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.main .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

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

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

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

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

.main .step-content img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  height: 200px;
  object-fit: cover;
}

.main .step-connector {
  position: relative;
  width: 2px;
  height: 50px;
  background-color: var(--color-primary);
  margin-left: 30px;
  margin-bottom: -25px;
}

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

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

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

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

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

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

.main .quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--font-size-2xl);
  color: rgba(0, 119, 182, 0.1);
}

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

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

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

.main .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-neutral-medium);
}

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

.main .author-info h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

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

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

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

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

.main .contact-content p {
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-lg);
}

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

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

.main .info-item i {
  font-size: var(--icon-md);
  color: var(--color-primary);
}

.main .info-item p {
  margin-bottom: 0;
}

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

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

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #CED4DA;
  border-radius: var(--border-radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .main .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .main .hero h1 {
    font-size: var(--font-size-4xl);
  }
  
  .main .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 992px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-visual {
    order: -1;
  }
  
  .main .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .main .hero-subtitle {
    max-width: 100%;
  }
  
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-buttons {
    margin-top: var(--space-md);
  }
}

@media (max-width: 768px) {
  .main .hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .main .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
  
  .main .hero-stats {
    flex-direction: column;
    position: static;
    transform: none;
    margin-top: var(--space-xl);
  }
  
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .main .step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .main .step-connector {
    margin-left: 30px;
    height: 30px;
    margin-bottom: -15px;
  }
}

@media (max-width: 576px) {
  .main .hero {
    padding: var(--space-2xl) 0;
  }
  
  .main .hero h1 {
    font-size: var(--font-size-2xl);
  }
  
  .main .featured-posts,
  .main .benefits,
  .main .how-it-works,
  .main .testimonials,
  .main .contact {
    padding: var(--space-3xl) 0;
  }
  
  .main .benefit-card {
    padding: var(--space-lg);
  }
  
  .main .contact-form-container {
    padding: var(--space-lg);
  }
}

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

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

.footer__container {
  position: relative;
}

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

.footer__brand {
  position: relative;
}

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

.footer__tagline {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  max-width: 90%;
  line-height: 1.5;
}

.footer__accent-shape {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-accent);
  opacity: 0.1;
  top: -15px;
  left: -15px;
  z-index: -1;
  transform: rotate(15deg);
  transition: transform var(--transition-normal);
}

.footer__brand:hover .footer__accent-shape {
  transform: rotate(30deg) scale(1.1);
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer__nav-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
}

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

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

.footer__nav-link {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: var(--space-sm);
}

.footer__nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.footer__nav-link:hover::before {
  opacity: 1;
}

.footer__newsletter {
  position: relative;
}

.footer__newsletter-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__input {
  padding: var(--space-sm);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.footer__button {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.footer__button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
}

.footer__divider {
  height: 1px;
  background-color: var(--color-neutral-medium);
  margin: var(--space-xl) 0;
  position: relative;
}

.footer__divider::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  top: -1px;
  left: 0;
  border-radius: var(--border-radius-pill);
}

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

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

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

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

.footer__legal-item {
  position: relative;
}

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

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

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

.footer__decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: var(--space-sm);
}

.footer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.6;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

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

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

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

.footer:hover .footer__dot {
  opacity: 0.8;
}

.footer:hover .footer__dot--1 {
  transform: translateY(-5px);
}

.footer:hover .footer__dot--2 {
  transform: translateY(-8px);
}

.footer:hover .footer__dot--3 {
  transform: translateY(-3px);
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
  }
  
  .footer__newsletter {
    grid-column: 1 / -1;
    margin-top: var(--space-md);
  }
  
  .footer__form {
    flex-direction: row;
  }
  
  .footer__input {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-xl) 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__form {
    flex-direction: column;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .footer__legal-links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  .footer__legal-item:not(:last-child)::after {
    display: none;
  }
  
  .footer__decoration {
    position: relative;
    margin-top: var(--space-md);
    align-self: flex-end;
  }
}

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

.privacy-page__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

.privacy-page__last-updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

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

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

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

.privacy-page__list li strong {
  color: var(--color-text-primary);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page__content {
    padding: var(--space-md);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-lg);
  }
  
  .privacy-page__list {
    margin-left: var(--space-md);
  }
}

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

.terms-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

.terms-page__last-updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

.terms-page__section h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-medium);
}

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

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

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

.terms-page__navigation h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.terms-page__nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.terms-page__nav-list li {
  flex: 1 1 calc(50% - var(--space-sm));
  min-width: 200px;
}

.terms-page__nav-list a {
  display: block;
  padding: var(--space-sm);
  color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-normal);
  text-decoration: none;
  border-left: 3px solid var(--color-neutral-medium);
}

.terms-page__nav-list a:hover {
  background-color: var(--color-neutral-medium);
  border-left-color: var(--color-accent);
}

@media (max-width: 767px) {
  .terms-page__content,
  .terms-page__navigation {
    padding: var(--space-lg);
  }
  
  .terms-page__nav-list li {
    flex: 1 1 100%;
  }
  
  .terms-page__section h2 {
    font-size: var(--font-size-lg);
  }
}

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

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

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

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

.cookie-page__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

.cookie-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-neutral-medium);
}

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  .cookie-page__container {
    padding: var(--space-xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 767px) {
  .cookie-page__container {
    padding: var(--space-lg);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-lg);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--font-size-base);
  }
}

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

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

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

.thank-page__icon {
  margin: 0 auto var(--space-xl);
  width: var(--icon-xl);
  height: var(--icon-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.thank-page__additional-info {
  border-top: 1px solid var(--color-neutral-medium);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

.thank-page__additional-info p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-xl) var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--font-size-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--font-size-base);
  }
  
  .thank-page__icon {
    margin-bottom: var(--space-lg);
  }
}

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

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

.category-page__hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.category-page__hero-content {
  flex: 1;
}

.category-page__hero-image {
  flex: 1;
  max-width: 550px;
}

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

.category-page__hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

.category-page__badges {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* Posts Section */
.category-page__posts {
  padding: var(--section-padding-desktop);
}

.category-page__section-title {
  margin-bottom: var(--space-xl);
  text-align: center;
  position: relative;
}

.category-page__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-pill);
}

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

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

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

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

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

.post-card p {
  padding: 0 var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  flex-grow: 1;
}

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

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

.category-page__stats-content {
  max-width: 900px;
  margin: 0 auto;
}

.category-page__intro, 
.category-page__conclusion {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.category-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

.stats-card__number {
  font-family: var(--font-primary);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.stats-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

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

.category-page__tips-content {
  max-width: 900px;
  margin: 0 auto;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tip-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal);
}

.tip-item__number {
  font-family: var(--font-primary);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.tip-item__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .category-page__hero .container {
    flex-direction: column;
  }
  
  .category-page__hero-image {
    max-width: 100%;
    margin-top: var(--space-lg);
  }
  
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__hero,
  .category-page__posts,
  .category-page__stats,
  .category-page__tips {
    padding: var(--section-padding-tablet);
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .category-page__hero,
  .category-page__posts,
  .category-page__stats,
  .category-page__tips {
    padding: var(--section-padding-mobile);
  }
}

  /* Page-specific styles */
  .post-thuiswerkplek-nederland {
    overflow-x: hidden;
  }

  /* Breadcrumbs */
  .post-thuiswerkplek-nederland .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-neutral-medium);
  }
  
  .post-thuiswerkplek-nederland .breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-thuiswerkplek-nederland .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-thuiswerkplek-nederland .post-hero {
    background-color: white;
    padding: var(--space-3xl) 0;
    position: relative;
    text-align: center;
  }
  
  .post-thuiswerkplek-nederland .post-hero h1 {
    margin-bottom: var(--space-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .post-thuiswerkplek-nederland .post-hero .lead {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
  }
  
  .post-thuiswerkplek-nederland .workspace-feature {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-lg);
  }
  
  /* Content Sections */
  .post-thuiswerkplek-nederland .content-section {
    padding: var(--section-padding-desktop);
  }
  
  .post-thuiswerkplek-nederland .space-section {
    background-color: white;
  }
  
  .post-thuiswerkplek-nederland .light-section {
    background-color: var(--color-neutral-light);
  }
  
  .post-thuiswerkplek-nederland .accent-section {
    background-color: white;
    border-top: 1px solid var(--color-neutral-medium);
    border-bottom: 1px solid var(--color-neutral-medium);
  }
  
  .post-thuiswerkplek-nederland .content-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
    position: relative;
  }
  
  .post-thuiswerkplek-nederland .content-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto var(--space-lg);
    border-radius: var(--border-radius-pill);
  }
  
  .post-thuiswerkplek-nederland .content-section h3 {
    color: var(--color-secondary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xl);
  }
  
  .post-thuiswerkplek-nederland .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-thuiswerkplek-nederland .content-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  
  .post-thuiswerkplek-nederland .content-grid.reverse .content-text {
    direction: ltr;
  }
  
  .post-thuiswerkplek-nederland .content-grid.reverse .content-image {
    direction: ltr;
  }
  
  .post-thuiswerkplek-nederland .content-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
  }
  
  .post-thuiswerkplek-nederland .content-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-thuiswerkplek-nederland .content-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  /* Lists */
  .post-thuiswerkplek-nederland .feature-list,
  .post-thuiswerkplek-nederland .check-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-lg) 0;
  }
  
  .post-thuiswerkplek-nederland .feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-md);
  }
  
  .post-thuiswerkplek-nederland .feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }
  
  .post-thuiswerkplek-nederland .check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-md);
  }
  
  .post-thuiswerkplek-nederland .check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
  }
  
  .post-thuiswerkplek-nederland .highlight {
    color: var(--color-primary);
    font-weight: 500;
  }
  
  /* Tips Grid */
  .post-thuiswerkplek-nederland .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-size-lg);
  }
  
  .post-thuiswerkplek-nederland .tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .post-thuiswerkplek-nederland .tip-card {
    background-color: var(--color-neutral-light);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-thuiswerkplek-nederland .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-thuiswerkplek-nederland .tip-card h3 {
    color: var(--color-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: var(--space-xs);
    display: inline-block;
  }
  
  .post-thuiswerkplek-nederland .conclusion {
    background-color: var(--color-neutral-light);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
    margin-top: var(--space-xl);
  }
  
  .post-thuiswerkplek-nederland .conclusion h3 {
    color: var(--color-primary);
    margin-top: 0;
  }
  
  /* Related Posts Section */
  .post-thuiswerkplek-nederland .related-posts {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop);
  }
  
  .post-thuiswerkplek-nederland .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .post-thuiswerkplek-nederland .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .post-thuiswerkplek-nederland .post-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-thuiswerkplek-nederland .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-thuiswerkplek-nederland .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .post-thuiswerkplek-nederland .card-content {
    padding: var(--space-lg);
  }
  
  .post-thuiswerkplek-nederland .card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }
  
  .post-thuiswerkplek-nederland .card-content p {
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1023px) {
    .post-thuiswerkplek-nederland .content-section {
      padding: var(--section-padding-tablet);
    }
    
    .post-thuiswerkplek-nederland .related-posts {
      padding: var(--section-padding-tablet);
    }
    
    .post-thuiswerkplek-nederland .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-thuiswerkplek-nederland .post-hero {
      padding: var(--space-2xl) 0;
    }
    
    .post-thuiswerkplek-nederland .post-hero h1 {
      font-size: var(--font-size-4xl);
    }
    
    .post-thuiswerkplek-nederland .post-hero .lead {
      font-size: var(--font-size-lg);
    }
  }
  
  @media (max-width: 767px) {
    .post-thuiswerkplek-nederland .content-section {
      padding: var(--section-padding-mobile);
    }
    
    .post-thuiswerkplek-nederland .related-posts {
      padding: var(--section-padding-mobile);
    }
    
    .post-thuiswerkplek-nederland .content-grid,
    .post-thuiswerkplek-nederland .content-grid.reverse,
    .post-thuiswerkplek-nederland .tips-grid,
    .post-thuiswerkplek-nederland .posts-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
    
    .post-thuiswerkplek-nederland .content-grid.reverse {
      direction: ltr;
    }
    
    .post-thuiswerkplek-nederland .post-hero h1 {
      font-size: var(--font-size-3xl);
    }
    
    .post-thuiswerkplek-nederland .post-hero .lead {
      font-size: var(--font-size-base);
    }
    
    .post-thuiswerkplek-nederland .content-image {
      margin-bottom: var(--space-lg);
    }
  }

/* Page-specific styles */
.post-productiviteitstools-remote-workers-nederland {
  --section-spacing: var(--space-5xl);
  --section-spacing-mobile: var(--space-2xl);
  --card-spacing: var(--space-lg);
  --content-max-width: 800px;
}

/* Breadcrumbs */
.post-productiviteitstools-remote-workers-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  font-family: var(--font-secondary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.post-productiviteitstools-remote-workers-nederland .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.post-productiviteitstools-remote-workers-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-productiviteitstools-remote-workers-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
}

.post-productiviteitstools-remote-workers-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-productiviteitstools-remote-workers-nederland .post-hero .lead {
  font-size: var(--font-size-xl);
  color: white;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.post-productiviteitstools-remote-workers-nederland .hero-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Content Sections */
.post-productiviteitstools-remote-workers-nederland .content-section {
  padding: var(--section-spacing) 0;
}

.post-productiviteitstools-remote-workers-nederland .section-communication {
  background-color: white;
}

.post-productiviteitstools-remote-workers-nederland .section-project-management {
  background-color: var(--color-neutral-light);
}

.post-productiviteitstools-remote-workers-nederland .section-productivity {
  background-color: white;
}

.post-productiviteitstools-remote-workers-nederland .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-productiviteitstools-remote-workers-nederland .section-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.post-productiviteitstools-remote-workers-nederland .section-grid.reverse .section-content {
  direction: ltr;
}

.post-productiviteitstools-remote-workers-nederland .section-grid.reverse .section-image {
  direction: ltr;
}

.post-productiviteitstools-remote-workers-nederland .section-content {
  max-width: var(--content-max-width);
}

.post-productiviteitstools-remote-workers-nederland .section-content h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.post-productiviteitstools-remote-workers-nederland .section-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-pill);
}

.post-productiviteitstools-remote-workers-nederland .section-content h3 {
  color: var(--color-text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

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

.post-productiviteitstools-remote-workers-nederland .section-image img,
.post-productiviteitstools-remote-workers-nederland .section-image-full img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.post-productiviteitstools-remote-workers-nederland .section-image img:hover,
.post-productiviteitstools-remote-workers-nederland .section-image-full img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.post-productiviteitstools-remote-workers-nederland .section-image-full {
  margin-top: var(--space-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Tool Cards */
.post-productiviteitstools-remote-workers-nederland .tool-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-left: 4px solid var(--color-primary);
}

.post-productiviteitstools-remote-workers-nederland .section-project-management .tool-card {
  background-color: white;
}

.post-productiviteitstools-remote-workers-nederland .tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-productiviteitstools-remote-workers-nederland .tool-card h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.post-productiviteitstools-remote-workers-nederland .tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.post-productiviteitstools-remote-workers-nederland .tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Implementation Tips */
.post-productiviteitstools-remote-workers-nederland .implementation-tips {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-productiviteitstools-remote-workers-nederland .implementation-tips li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  position: relative;
}

.post-productiviteitstools-remote-workers-nederland .implementation-tips li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
  display: inline-block;
  margin-right: var(--space-sm);
  margin-left: calc(-1 * var(--space-lg));
}

/* Related Posts */
.post-productiviteitstools-remote-workers-nederland .related-posts {
  background-color: var(--color-neutral-medium);
  padding: var(--section-spacing) 0;
}

.post-productiviteitstools-remote-workers-nederland .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.post-productiviteitstools-remote-workers-nederland .related-posts h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-pill);
}

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

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

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

.post-productiviteitstools-remote-workers-nederland .post-image {
  height: 200px;
  overflow: hidden;
}

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

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

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

.post-productiviteitstools-remote-workers-nederland .post-content h3 {
  font-size: var(--font-size-lg);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-productiviteitstools-remote-workers-nederland .post-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-productiviteitstools-remote-workers-nederland .post-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-productiviteitstools-remote-workers-nederland .content-section {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .post-productiviteitstools-remote-workers-nederland .section-grid,
  .post-productiviteitstools-remote-workers-nederland .section-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    direction: ltr;
  }
  
  .post-productiviteitstools-remote-workers-nederland .section-image {
    order: 1;
  }
  
  .post-productiviteitstools-remote-workers-nederland .section-content {
    order: 2;
  }
  
  .post-productiviteitstools-remote-workers-nederland .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .post-productiviteitstools-remote-workers-nederland .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-productiviteitstools-remote-workers-nederland .post-hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .post-productiviteitstools-remote-workers-nederland .post-hero .lead {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 767px) {
  .post-productiviteitstools-remote-workers-nederland .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-productiviteitstools-remote-workers-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-productiviteitstools-remote-workers-nederland .post-hero h1 {
    font-size: var(--font-size-2xl);
  }
  
  .post-productiviteitstools-remote-workers-nederland .post-hero .lead {
    font-size: var(--font-size-base);
  }
}

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

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

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

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

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

.post-page .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-page .post-hero .lead {
  font-size: var(--font-size-xl);
  color: white;
  max-width: 800px;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.post-page .hero-badges {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* Content Sections */
.post-page .content-section {
  padding: var(--section-padding-desktop);
}

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

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

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

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

.post-page .section-content.reversed {
  flex-direction: row-reverse;
}

.post-page .section-text {
  flex: 1;
}

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

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

/* Technique Steps */
.post-page .technique-steps {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-lg);
}

.post-page .technique-steps h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-page .technique-steps ol {
  padding-left: var(--space-lg);
}

.post-page .technique-steps li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Timeblock Example */
.post-page .timeblock-example {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.post-page .timeblock-example h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-page .timeblock-example ul {
  list-style-type: none;
  padding: 0;
}

.post-page .timeblock-example li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  color: var(--color-text-secondary);
}

.post-page .timeblock-example li:last-child {
  border-bottom: none;
}

.post-page .timeblock-example strong {
  color: var(--color-primary);
  font-weight: 500;
}

/* Strategies Grid */
.post-page .strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

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

.post-page .strategy-tips {
  margin-top: auto;
  background-color: var(--color-neutral-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
}

.post-page .strategy-tips h5 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

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

.post-page .strategy-tips li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
}

/* Conclusion */
.post-page .conclusion {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
}

.post-page .conclusion h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-page .action-steps {
  margin-top: var(--space-lg);
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.post-page .action-steps h5 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-page .action-steps ol {
  padding-left: var(--space-lg);
}

.post-page .action-steps li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Related Posts Section */
.post-page .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop);
}

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

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

.post-page .related-post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-page .content-section {
    padding: var(--section-padding-tablet);
  }
  
  .post-page .section-content {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .post-page .section-content.reversed {
    flex-direction: column;
  }
  
  .post-page .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Page-specific styles */
.post-effectief-virtueel-samenwerken-nederland {
  /* Base styles */
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-effectief-virtueel-samenwerken-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-effectief-virtueel-samenwerken-nederland .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.post-effectief-virtueel-samenwerken-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
}

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

.post-effectief-virtueel-samenwerken-nederland .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(135deg, transparent 0%, var(--color-secondary) 100%);
  opacity: 0.3;
  z-index: 1;
}

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

.post-effectief-virtueel-samenwerken-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--font-size-5xl);
  line-height: 1.1;
}

.post-effectief-virtueel-samenwerken-nederland .post-hero .lead {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 800px;
}

.post-effectief-virtueel-samenwerken-nederland .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* Content Sections - General */
.post-effectief-virtueel-samenwerken-nederland .content-section {
  padding: var(--section-padding-desktop);
}

.post-effectief-virtueel-samenwerken-nederland .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  position: relative;
}

.post-effectief-virtueel-samenwerken-nederland .content-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: var(--space-sm);
}

.post-effectief-virtueel-samenwerken-nederland .content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-effectief-virtueel-samenwerken-nederland .content-section h4 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

/* Communication Section */
.post-effectief-virtueel-samenwerken-nederland .communication-section {
  background-color: white;
}

.post-effectief-virtueel-samenwerken-nederland .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.post-effectief-virtueel-samenwerken-nederland .feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.post-effectief-virtueel-samenwerken-nederland .feature-list li {
  display: flex;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.post-effectief-virtueel-samenwerken-nederland .feature-icon {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 40px;
}

.post-effectief-virtueel-samenwerken-nederland .feature-content {
  flex: 1;
}

.post-effectief-virtueel-samenwerken-nederland .feature-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.post-effectief-virtueel-samenwerken-nederland .section-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Tools Section */
.post-effectief-virtueel-samenwerken-nederland .tools-section {
  background-color: var(--color-neutral-light);
}

.post-effectief-virtueel-samenwerken-nederland .tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-effectief-virtueel-samenwerken-nederland .tool-card {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-effectief-virtueel-samenwerken-nederland .tool-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.post-effectief-virtueel-samenwerken-nederland .tool-card ul {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-effectief-virtueel-samenwerken-nederland .tool-card li {
  margin-bottom: var(--space-sm);
}

.post-effectief-virtueel-samenwerken-nederland .tools-implementation {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-effectief-virtueel-samenwerken-nederland .implementation-steps {
  margin-top: var(--space-md);
  padding-left: var(--space-xl);
}

.post-effectief-virtueel-samenwerken-nederland .implementation-steps li {
  margin-bottom: var(--space-md);
}

.post-effectief-virtueel-samenwerken-nederland .tools-image {
  margin-top: var(--space-2xl);
  text-align: center;
}

.post-effectief-virtueel-samenwerken-nederland .tools-image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Culture Section */
.post-effectief-virtueel-samenwerken-nederland .culture-section {
  background-color: white;
}

.post-effectief-virtueel-samenwerken-nederland .culture-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-effectief-virtueel-samenwerken-nederland .culture-card {
  padding: var(--space-lg);
  height: 100%;
  border-top: 3px solid var(--color-accent);
}

.post-effectief-virtueel-samenwerken-nederland .culture-card h4 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-effectief-virtueel-samenwerken-nederland .case-study {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-effectief-virtueel-samenwerken-nederland .case-study h3 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-effectief-virtueel-samenwerken-nederland .case-study ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.post-effectief-virtueel-samenwerken-nederland .case-study li {
  margin-bottom: var(--space-sm);
}

.post-effectief-virtueel-samenwerken-nederland .takeaways {
  margin-top: var(--space-2xl);
}

.post-effectief-virtueel-samenwerken-nederland .takeaway-list {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  list-style: none;
}

.post-effectief-virtueel-samenwerken-nederland .takeaway-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-effectief-virtueel-samenwerken-nederland .takeaway-list li::before {
  content: '✓';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.post-effectief-virtueel-samenwerken-nederland .culture-image {
  margin-top: var(--space-2xl);
  text-align: center;
}

.post-effectief-virtueel-samenwerken-nederland .culture-image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Related Posts Section */
.post-effectief-virtueel-samenwerken-nederland .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop);
}

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

.post-effectief-virtueel-samenwerken-nederland .related-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.post-effectief-virtueel-samenwerken-nederland .related-post-card h3 {
  font-size: var(--font-size-lg);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-effectief-virtueel-samenwerken-nederland .related-post-card p {
  flex: 1;
  margin-bottom: var(--space-lg);
}

.post-effectief-virtueel-samenwerken-nederland .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-effectief-virtueel-samenwerken-nederland .section-grid,
  .post-effectief-virtueel-samenwerken-nederland .tools-grid,
  .post-effectief-virtueel-samenwerken-nederland .culture-cards,
  .post-effectief-virtueel-samenwerken-nederland .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero h1 {
    font-size: var(--font-size-4xl);
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero .lead {
    font-size: var(--font-size-lg);
  }
  
  .post-effectief-virtueel-samenwerken-nederland .content-section {
    padding: var(--section-padding-tablet);
  }
}

@media (max-width: 767px) {
  .post-effectief-virtueel-samenwerken-nederland .section-grid,
  .post-effectief-virtueel-samenwerken-nederland .tools-grid,
  .post-effectief-virtueel-samenwerken-nederland .culture-cards,
  .post-effectief-virtueel-samenwerken-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .post-effectief-virtueel-samenwerken-nederland .post-hero .lead {
    font-size: var(--font-size-base);
  }
  
  .post-effectief-virtueel-samenwerken-nederland .content-section {
    padding: var(--section-padding-mobile);
  }
  
  .post-effectief-virtueel-samenwerken-nederland .tools-implementation,
  .post-effectief-virtueel-samenwerken-nederland .case-study {
    padding: var(--space-lg);
  }
  
  .post-effectief-virtueel-samenwerken-nederland h2 {
    font-size: var(--font-size-2xl);
  }
  
  .post-effectief-virtueel-samenwerken-nederland h3 {
    font-size: var(--font-size-xl);
  }
}

/* Page specific styles */
.post-werk-prive-balans {
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
}

/* Breadcrumbs */
.post-werk-prive-balans .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  background-color: white;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-werk-prive-balans .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-werk-prive-balans .breadcrumbs a:hover {
  color: var(--color-secondary);
}

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

.post-werk-prive-balans .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(2, 62, 138, 0.3), rgba(0, 119, 182, 0));
  z-index: 1;
}

.post-werk-prive-balans .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.post-werk-prive-balans .post-hero h1 {
  color: white;
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  font-weight: 700;
}

.post-werk-prive-balans .post-hero .lead {
  font-size: var(--font-size-xl);
  color: white;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Content Sections */
.post-werk-prive-balans .content-section {
  padding: var(--section-padding-desktop);
}

.post-werk-prive-balans .section-light {
  background-color: white;
}

.post-werk-prive-balans .section-medium {
  background-color: var(--color-neutral-light);
}

.post-werk-prive-balans .content-section h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-werk-prive-balans .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-pill);
}

.post-werk-prive-balans .content-section h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.post-werk-prive-balans .content-section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  font-size: var(--font-size-base);
}

/* Content Grid Layout */
.post-werk-prive-balans .content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.post-werk-prive-balans .image-container {
  margin: var(--space-xl) 0;
}

.post-werk-prive-balans .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Ritual Cards */
.post-werk-prive-balans .ritual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-werk-prive-balans .ritual-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-left: 4px solid var(--color-primary);
}

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

.post-werk-prive-balans .ritual-card h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.post-werk-prive-balans .ritual-card ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-werk-prive-balans .ritual-card li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.post-werk-prive-balans .ritual-card li strong {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Tips Block */
.post-werk-prive-balans .tips-block {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.post-werk-prive-balans .tips-block h3 {
  margin-top: 0;
  color: var(--color-accent);
}

.post-werk-prive-balans .tips-block ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-werk-prive-balans .tips-block li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Communication Tips */
.post-werk-prive-balans .communication-tips {
  margin-bottom: var(--space-xl);
}

.post-werk-prive-balans .example-block {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-left: 3px solid var(--color-primary);
}

.post-werk-prive-balans .example-heading {
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.post-werk-prive-balans .example-content {
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-werk-prive-balans .family-communication ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-werk-prive-balans .family-communication li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Balance Strategies */
.post-werk-prive-balans .balance-strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-werk-prive-balans .strategy-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-werk-prive-balans .strategy-card:nth-child(1) {
  border-top: 4px solid var(--color-primary);
}

.post-werk-prive-balans .strategy-card:nth-child(2) {
  border-top: 4px solid var(--color-accent);
}

.post-werk-prive-balans .strategy-card:nth-child(3) {
  border-top: 4px solid var(--color-success);
}

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

.post-werk-prive-balans .strategy-card h3 {
  margin-top: 0;
}

/* Key Takeaways */
.post-werk-prive-balans .key-takeaways {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-werk-prive-balans .key-takeaways h3 {
  color: white;
  margin-top: 0;
}

.post-werk-prive-balans .key-takeaways ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-werk-prive-balans .key-takeaways li {
  margin-bottom: var(--space-sm);
  color: white;
}

/* Related Posts */
.post-werk-prive-balans .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop);
}

.post-werk-prive-balans .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-secondary);
  position: relative;
}

.post-werk-prive-balans .related-posts h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-pill);
}

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

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

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

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

.post-werk-prive-balans .post-content {
  padding: var(--space-lg);
}

.post-werk-prive-balans .post-content h3 {
  font-size: var(--font-size-lg);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-werk-prive-balans .post-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-werk-prive-balans .post-content a.btn-outline {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.post-werk-prive-balans .post-content a.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-werk-prive-balans .content-section {
    padding: var(--section-padding-tablet);
  }
  
  .post-werk-prive-balans .related-posts {
    padding: var(--section-padding-tablet);
  }
  
  .post-werk-prive-balans .post-hero h1 {
    font-size: var(--font-size-4xl);
  }
  
  .post-werk-prive-balans .post-hero .lead {
    font-size: var(--font-size-lg);
  }
  
  .post-werk-prive-balans .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-werk-prive-balans .ritual-cards {
    grid-template-columns: 1fr;
  }
  
  .post-werk-prive-balans .balance-strategies {
    grid-template-columns: 1fr;
  }
  
  .post-werk-prive-balans .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-werk-prive-balans .content-section {
    padding: var(--section-padding-mobile);
  }
  
  .post-werk-prive-balans .related-posts {
    padding: var(--section-padding-mobile);
  }
  
  .post-werk-prive-balans .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-werk-prive-balans .post-hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .post-werk-prive-balans .post-hero .lead {
    font-size: var(--font-size-base);
  }
  
  .post-werk-prive-balans .content-section h2 {
    font-size: var(--font-size-2xl);
  }
  
  .post-werk-prive-balans .post-grid {
    grid-template-columns: 1fr;
  }
}

/* Privacy page specific styles */
.privacy-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
}

.privacy-page__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

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

.privacy-page__last-updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-medium);
}

.privacy-page__list {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__content {
    padding: var(--space-md);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-lg);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-md);
  }
}

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

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

.terms-page__title {
  font-family: var(--font-primary);
  font-size: var(--font-size-4xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-md);
}

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

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

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

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

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

@media (max-width: 767px) {
  .terms-page__container {
    padding: var(--space-lg);
  }
  
  .terms-page__title {
    font-size: var(--font-size-3xl);
  }
  
  .terms-page__section-title {
    font-size: var(--font-size-lg);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  background-color: var(--color-neutral-light);
  padding: var(--space-2xl) 0;
  color: var(--color-text-primary);
}

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

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

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

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

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

.cookie-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-neutral-medium);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .cookie-page .container {
    padding: var(--space-lg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .error-404__number::after {
    content: '';
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: var(--border-radius-pill);
  }

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

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.6;
  }

  .error-404__button {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
  }

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

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

  .error-404__icon {
    color: var(--color-text-secondary);
    opacity: 0.2;
    transform: rotate(5deg);
    transition: transform var(--transition-normal);
  }

  .error-404__icon:hover {
    transform: rotate(0deg);
    opacity: 0.3;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .error-404__content {
    animation: fadeIn var(--transition-slow);
  }

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

    .error-404__number {
      font-size: 7rem;
    }

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

    .error-404__message {
      font-size: var(--font-size-base);
      padding: 0 var(--space-md);
    }

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

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

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