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

:root {
  /* Color Scheme - Soft Dutch-inspired palette with calming blues */
  --color-primary: #1E88E5; /* Dutch blue */
  --color-primary-light: #64B5F6;
  --color-secondary: #FF8A65; /* Warm orange for balance */
  --color-accent: #43A047; /* Green representing wellness */
  --color-neutral-light: #F5F7FA;
  --color-neutral: #E0E6ED;
  --color-neutral-dark: #8795A9;
  --color-text: #2D3B4E;
  --color-text-light: #546E7A;
  --color-background: #FFFFFF;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  /* Font sizes */
  --fs-xxl: 3.5rem;
  --fs-xl: 2.5rem;
  --fs-lg: 2rem;
  --fs-md: 1.5rem;
  --fs-base: 1.125rem;
  --fs-sm: 1rem;
  --fs-xs: 0.875rem;
  
  /* Line heights */
  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
  
  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(45, 59, 78, 0.05);
  --shadow-md: 0 4px 12px rgba(45, 59, 78, 0.08);
  --shadow-lg: 0 8px 24px rgba(45, 59, 78, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Container width */
  --container-max-width: 1440px;
  
  /* Section padding */
  --section-padding-desktop: 100px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 50px;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-background);
}

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

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

h1 {
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-lg);
}

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

h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.btn-accent:hover {
  background-color: #66BB6A;
  box-shadow: var(--shadow-md);
}

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

/* Cards */
.card {
  background-color: var(--color-background);
  border-radius: var(--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);
}

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  :root {
    --fs-xxl: 2.75rem;
    --fs-xl: 2.25rem;
    --fs-lg: 1.75rem;
    --fs-md: 1.375rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 767px) {
  :root {
    --fs-xxl: 2.25rem;
    --fs-xl: 1.875rem;
    --fs-lg: 1.5rem;
    --fs-md: 1.25rem;
    --fs-base: 1rem;
  }
  
  h1, h2, h3 {
    margin-bottom: var(--space-sm);
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
  }
}
.header {
  background-color: var(--color-background);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral);
  position: relative;
}

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

.header__logo-wrapper {
  flex: 0 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-primary);
  transition: transform var(--transition-normal);
}

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

.header__logo-icon {
  display: inline-block;
  margin-right: var(--space-xxs);
  font-size: var(--fs-lg);
  color: var(--color-accent);
  transform: rotate(15deg);
  transition: transform var(--transition-normal);
}

.header__logo:hover .header__logo-icon {
  transform: rotate(195deg);
}

.header__logo-text {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

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

.header__nav-item {
  position: relative;
}

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

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

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

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

.header__actions {
  display: flex;
  align-items: center;
  margin-left: var(--space-lg);
  gap: var(--space-md);
}

.header__cta {
  font-size: var(--fs-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__mobile-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 9999;
  overflow-y: auto;
  padding: var(--space-lg);
  flex-direction: column;
}

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

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: var(--fs-lg);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-normal);
}

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

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

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

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

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

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

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

.header__mobile-nav-link--accent:hover {
  color: var(--color-accent);
  opacity: 0.8;
}

.header__mobile-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral);
}

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

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

.header__mobile-decoration {
  margin-top: var(--space-xl);
  width: 100%;
  display: flex;
  justify-content: center;
}

.header__balance-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: absolute;
  z-index: -1;
  opacity: 0.8;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    padding: var(--space-sm) 0;
  }
  
  .header__logo {
    font-size: var(--fs-base);
  }
  
  .header__logo-icon {
    font-size: var(--fs-md);
  }
}

@media (max-width: 480px) {
  .header__mobile-menu {
    padding: var(--space-md);
  }
  
  .header__mobile-nav-link {
    font-size: var(--fs-md);
  }
}

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

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

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

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

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

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

.main .hero-text p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-loose);
}

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

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

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

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

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

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

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary-light);
  opacity: 0.2;
  top: -100px;
  right: -100px;
  z-index: 1;
  transform: rotate(45deg);
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.15;
  bottom: -80px;
  left: -60px;
  z-index: 1;
  transform: rotate(30deg);
}

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

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

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

.main .stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  text-align: center;
}

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

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

.main .section-header h2 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

.main .post-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

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

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

.main .btn-large {
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--fs-base);
}

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

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

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

.main .benefits-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.main .benefits-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--color-primary-light),
    var(--color-primary-light) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.1;
  border-radius: var(--radius-lg);
  z-index: 1;
}

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

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

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

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

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

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

.main .benefit-card:nth-child(4) .benefit-icon {
  background-color: var(--color-text-light);
}

.main .benefit-card h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.main .steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.main .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
}

.main .step-number {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-neutral);
  line-height: 1;
}

.main .step-content {
  position: relative;
}

.main .step-content h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.main .step-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.main .step-content img {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.main .step-content img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.main .step:nth-child(even) .step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.main .step:nth-child(even) .step-content p {
  margin-left: auto;
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--color-neutral-light) 0%, var(--color-background) 100%);
}

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

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

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

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

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

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

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

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

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

.main .testimonial-author h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xxs);
  color: var(--color-text);
}

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

/* Stats Section */
.main .stats {
  padding: var(--space-xxl) 0;
  background-color: var(--color-primary);
  color: var(--color-background);
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  padding-top: calc(var(--space-xxl) + 50px);
  padding-bottom: calc(var(--space-xxl) + 50px);
}

.main .stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.main .stats-content h2 {
  color: var(--color-background);
  margin-bottom: var(--space-sm);
}

.main .stats-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-base);
}

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

.main .stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.main .stat-card .stat-label {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-background);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main .stat-card p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

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

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

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

.main .contact-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-base);
}

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

.main .contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

.main .form-group label {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text);
}

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-sm);
  border: 1px solid var(--color-neutral);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  transition: border-color var(--transition-fast);
}

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

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

.main .form-checkbox input {
  width: 20px;
  height: 20px;
}

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

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

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

.main .cookie-content p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

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

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

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

@media (max-width: 768px) {
  .main .posts-grid,
  .main .testimonials-grid,
  .main .benefits-cards,
  .main .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-cta {
    flex-direction: column;
  }
  
  .main .step {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .main .step-number {
    font-size: 3rem;
  }
  
  .main .step:nth-child(even) .step-content {
    text-align: left;
    align-items: flex-start;
  }
  
  .main .step:nth-child(even) .step-content p {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .main .hero-image-container {
    height: 300px;
  }
  
  .main .hero-stats {
    bottom: 0;
    right: 0;
    margin-top: var(--space-lg);
  }
  
  .main .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .main .step-content img {
    height: 200px;
  }
}

.footer {
  position: relative;
  background-color: var(--color-neutral-light);
  color: var(--color-text);
  font-family: var(--font-secondary);
  padding: var(--space-xl) 0;
  margin-top: var(--space-xxl);
  overflow: hidden;
}

.footer__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

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

.footer__section {
  display: flex;
  flex-direction: column;
}

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

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

.footer__section:hover .footer__heading::after {
  width: 60px;
}

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

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

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

.footer__nav-link {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-sm);
  display: inline-block;
}

.footer__nav-link::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-fast);
}

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

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

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

.footer__input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__input {
  padding: var(--space-sm);
  border: 1px solid var(--color-neutral);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  background-color: var(--color-background);
  transition: all var(--transition-fast);
}

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

.footer__button {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  transition: all var(--transition-normal);
}

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

.footer__divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 3px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-pill);
}

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

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

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

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

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

.footer__decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  border-radius: 50%;
}

.footer__decoration--left {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  bottom: -150px;
  left: -150px;
}

.footer__decoration--right {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  top: -100px;
  right: -100px;
}

@media (max-width: 1200px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .footer__legal {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer__input-group {
    flex-direction: column;
  }
  
  .footer__decoration--left {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
  }
  
  .footer__decoration--right {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
  }
}

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

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

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

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

.privacy-page h1 {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
}

.privacy-page h2 {
  font-size: var(--fs-md);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.privacy-page h3 {
  font-size: var(--fs-base);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.privacy-page p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
}

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

.privacy-page__list li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
  line-height: var(--lh-normal);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page h1 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-base);
  }
  
  .privacy-page h3 {
    font-size: var(--fs-sm);
  }
  
  .privacy-page p,
  .privacy-page__list li {
    font-size: var(--fs-sm);
  }
}

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

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

.terms-page__title {
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  text-align: center;
}

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

.terms-page__updated p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  font-style: italic;
}

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

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

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

.terms-page__text {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

.terms-page__list li {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-base);
  }
  
  .terms-page__text, 
  .terms-page__list li {
    font-size: var(--fs-sm);
  }
}

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

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

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

.cookie-page__header h1 {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

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

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

.cookie-page__section h2 {
  color: var(--color-text);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-sm);
}

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

.cookie-page__subsection h3 {
  font-size: var(--fs-base);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.cookie-page p {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.cookie-page__list li {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

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

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

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

.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);
  color: var(--color-accent);
}

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

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

.thank-page__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

.thank-page__button {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-base);
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--fs-lg);
  }
  
  .thank-page__text {
    font-size: var(--fs-sm);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.category-page__hero h1 {
  color: white;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.category-page__hero-description {
  font-size: var(--fs-md);
  max-width: 800px;
  line-height: var(--lh-loose);
  color: var(--color-neutral-light);
}

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

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

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

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

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

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

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

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

.post-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card__content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

.category-page__tips-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.category-page__tips-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.category-page__tips-list ol {
  list-style-position: inside;
  counter-reset: tip-counter;
}

.category-page__tips-list li {
  margin-bottom: var(--space-md);
  counter-increment: tip-counter;
  position: relative;
  padding-left: var(--space-lg);
}

.category-page__tips-list li::before {
  content: counter(tip-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.category-page__tips-list h4 {
  color: var(--color-text);
  margin-bottom: var(--space-xxs);
}

.category-page__tips-list p {
  color: var(--color-text-light);
}

/* Statistics Section */
.category-page__statistics {
  padding: var(--space-xl) 0;
}

.category-page__statistics h2 {
  margin-bottom: var(--space-lg);
}

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

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

.statistics-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.statistics-card h4 {
  color: var(--color-primary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xxs);
}

.statistics-number {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-xxs);
}

.statistics-source {
  font-size: var(--fs-xs);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-top: var(--space-md);
}

.category-page__statistics-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.category-page__statistics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-content,
  .category-page__statistics-content {
    grid-template-columns: 1fr;
  }
  
  .category-page__statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-image,
  .category-page__statistics-image {
    max-height: 300px;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__statistics-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero {
    padding: var(--space-lg) 0;
  }
  
  .category-page__hero-description {
    font-size: var(--fs-base);
  }
  
  .post-card__image-container {
    height: 180px;
  }
}

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

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

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

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

/* Hero Section */
.post-page .post-hero {
  padding: var(--space-xxl) 0;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
}

.post-page .post-hero h1 {
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  color: white;
  line-height: var(--lh-tight);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: white;
}

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

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

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

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

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

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

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

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

/* Stats Container */
.post-vierdaagse-werkweek-nederland .stats-container {
  display: flex;
  justify-content: space-between;
  margin: var(--space-lg) 0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.post-vierdaagse-werkweek-nederland .stat-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--color-primary-light);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-vierdaagse-werkweek-nederland .stat-card h4 {
  font-size: var(--fs-xl);
  color: white;
  margin-bottom: var(--space-xs);
}

.post-vierdaagse-werkweek-nederland .stat-card p {
  color: white;
  margin-bottom: 0;
}

/* Models Container */
.post-vierdaagse-werkweek-nederland .models-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-vierdaagse-werkweek-nederland .model-column {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-vierdaagse-werkweek-nederland .model-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-vierdaagse-werkweek-nederland .model-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.post-vierdaagse-werkweek-nederland .model-column h3 {
  color: var(--color-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.post-vierdaagse-werkweek-nederland .benefits-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
}

.post-vierdaagse-werkweek-nederland .benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

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

/* Implementation Container */
.post-vierdaagse-werkweek-nederland .implementation-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-vierdaagse-werkweek-nederland .implementation-step {
  background-color: var(--color-neutral);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-vierdaagse-werkweek-nederland .implementation-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Quote Container */
.post-vierdaagse-werkweek-nederland .quote-container {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.post-vierdaagse-werkweek-nederland .quote-container blockquote {
  font-size: var(--fs-md);
  font-style: italic;
  line-height: var(--lh-loose);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.post-vierdaagse-werkweek-nederland .quote-container cite {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  display: block;
  text-align: right;
}

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

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

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

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

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

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

.post-page .related-post-card h3 {
  font-size: var(--fs-md);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  color: var(--color-text);
}

.post-page .related-post-card p {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.post-page .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-page .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-vierdaagse-werkweek-nederland .models-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .post-hero h1 {
    font-size: var(--fs-xl);
  }
}

@media (max-width: 767px) {
  .post-page .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-vierdaagse-werkweek-nederland .stats-container {
    flex-direction: column;
  }
  
  .post-vierdaagse-werkweek-nederland .models-container,
  .post-vierdaagse-werkweek-nederland .implementation-container,
  .post-page .related-posts-container {
    grid-template-columns: 1fr;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--fs-lg);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--fs-base);
  }
}

/* Base styles for post page */
.post-thuiswerken-nederland {
  color: var(--color-text);
  font-family: var(--font-secondary);
  line-height: var(--lh-normal);
}

/* Breadcrumbs */
.post-thuiswerken-nederland .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  background-color: var(--color-neutral-light);
}

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

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

/* Hero Section */
.post-thuiswerken-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.post-thuiswerken-nederland .post-hero h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: white;
  line-height: var(--lh-tight);
}

.post-thuiswerken-nederland .post-hero .lead {
  font-size: var(--fs-md);
  max-width: 800px;
  margin: 0 auto;
  color: white;
  line-height: var(--lh-loose);
}

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

.post-thuiswerken-nederland .section-light {
  background-color: var(--color-background);
}

.post-thuiswerken-nederland .section-accent {
  background-color: var(--color-neutral-light);
}

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

.post-thuiswerken-nederland .content-section h3 {
  font-size: var(--fs-lg);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.post-thuiswerken-nederland .content-section h4 {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-thuiswerken-nederland .content-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: var(--lh-loose);
}

/* Two Column Layout */
.post-thuiswerken-nederland .two-column-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-thuiswerken-nederland .text-column {
  padding-right: var(--space-md);
}

.post-thuiswerken-nederland .image-column img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Tips Section */
.post-thuiswerken-nederland .tips-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

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

.post-thuiswerken-nederland .image-container {
  margin-top: var(--space-xl);
  text-align: center;
}

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

/* Balance Grid */
.post-thuiswerken-nederland .balance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-thuiswerken-nederland .balance-item {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.post-thuiswerken-nederland .balance-item:hover {
  transform: translateY(-3px);
}

/* Conclusion */
.post-thuiswerken-nederland .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-neutral);
}

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

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

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

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

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

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

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

.post-thuiswerken-nederland .related-post-card h3 {
  font-size: var(--fs-md);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  color: var(--color-text);
}

.post-thuiswerken-nederland .related-post-card p {
  padding: 0 var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-thuiswerken-nederland .read-more {
  display: inline-block;
  margin: 0 var(--space-md) var(--space-md);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  transition: color var(--transition-fast);
}

.post-thuiswerken-nederland .read-more:hover {
  color: var(--color-primary-light);
}

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

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

.post-thuiswerken-nederland .btn-primary:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-thuiswerken-nederland .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-thuiswerken-nederland .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-thuiswerken-nederland .two-column-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-thuiswerken-nederland .text-column {
    padding-right: 0;
  }
  
  .post-thuiswerken-nederland .tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-thuiswerken-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-thuiswerken-nederland .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-thuiswerken-nederland .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-thuiswerken-nederland .post-hero h1 {
    font-size: var(--fs-xl);
  }
  
  .post-thuiswerken-nederland .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-thuiswerken-nederland .tips-container {
    grid-template-columns: 1fr;
  }
  
  .post-thuiswerken-nederland .balance-grid {
    grid-template-columns: 1fr;
  }
  
  .post-thuiswerken-nederland .related-posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* Base styles specific to this page */
.post-lunchpauzes-nederland {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: var(--color-background);
}

/* Breadcrumbs styling */
.post-lunchpauzes-nederland .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  background-color: var(--color-neutral-light);
  margin-bottom: var(--space-md);
}

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

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

/* Hero section styling */
.post-lunchpauzes-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

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

.post-lunchpauzes-nederland .post-hero h1 {
  color: white;
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.post-lunchpauzes-nederland .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: white;
  opacity: 0.9;
  max-width: 800px;
}

/* Content sections styling */
.post-lunchpauzes-nederland .content-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.post-lunchpauzes-nederland .section-light {
  background-color: var(--color-background);
}

.post-lunchpauzes-nederland .section-neutral {
  background-color: var(--color-neutral-light);
}

.post-lunchpauzes-nederland .section-accent {
  background-color: var(--color-primary-light);
  color: white;
}

.post-lunchpauzes-nederland .section-accent h2,
.post-lunchpauzes-nederland .section-accent h4 {
  color: white;
}

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

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

.post-lunchpauzes-nederland .image-container {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-lunchpauzes-nederland .content-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-lunchpauzes-nederland .image-container:hover .content-image {
  transform: scale(1.03);
}

/* Benefits grid styling */
.post-lunchpauzes-nederland .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

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

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

.post-lunchpauzes-nederland .benefit-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-md);
}

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

/* Lunch walk section styling */
.post-lunchpauzes-nederland .lunch-walk-section {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

/* Implementation section styling */
.post-lunchpauzes-nederland .implementation-content {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-lunchpauzes-nederland .tips-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.post-lunchpauzes-nederland .tips-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  position: relative;
  color: white;
}

.post-lunchpauzes-nederland .tips-list li:before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
  font-size: var(--fs-md);
}

.post-lunchpauzes-nederland .testimonial-box {
  background-color: rgba(255, 255, 255, 0.15);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  flex: 0 0 300px;
}

.post-lunchpauzes-nederland .testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: white;
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

.post-lunchpauzes-nederland .testimonial-author {
  font-weight: 600;
  color: white;
  opacity: 0.9;
  font-size: var(--fs-sm);
}

.post-lunchpauzes-nederland .conclusion {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.post-lunchpauzes-nederland .conclusion p {
  color: white;
  opacity: 0.9;
}

/* Related posts section styling */
.post-lunchpauzes-nederland .related-posts-section {
  background-color: var(--color-neutral);
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

.post-lunchpauzes-nederland .card-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.post-lunchpauzes-nederland .card-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-lunchpauzes-nederland .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.post-lunchpauzes-nederland .read-more:hover {
  color: var(--color-primary-light);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .post-lunchpauzes-nederland .section-content,
  .post-lunchpauzes-nederland .lunch-walk-section,
  .post-lunchpauzes-nederland .implementation-content {
    flex-direction: column;
  }
  
  .post-lunchpauzes-nederland .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .post-lunchpauzes-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-lunchpauzes-nederland .content-section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  .post-lunchpauzes-nederland .post-hero h1 {
    font-size: var(--fs-xl);
  }
  
  .post-lunchpauzes-nederland .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-lunchpauzes-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-lunchpauzes-nederland .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-lunchpauzes-nederland .testimonial-box {
    flex: 1;
  }
}

  /* Page-specific styles */
  .post-woon-werkverkeer-fiets-nederland .post-hero {
    background-color: var(--color-neutral-light);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-hero h1 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-hero .lead {
    font-size: var(--fs-md);
    font-family: var(--font-secondary);
    line-height: var(--lh-loose);
    color: var(--color-text);
    max-width: 800px;
  }
  
  /* Breadcrumbs */
  .post-woon-werkverkeer-fiets-nederland .breadcrumbs {
    padding: var(--space-sm) 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-neutral);
    font-size: var(--fs-xs);
    color: var(--color-text-light);
  }
  
  .post-woon-werkverkeer-fiets-nederland .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-woon-werkverkeer-fiets-nederland .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Content Sections */
  .post-woon-werkverkeer-fiets-nederland .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-woon-werkverkeer-fiets-nederland .content-section h2 {
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    position: relative;
  }
  
  .post-woon-werkverkeer-fiets-nederland .content-section h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary-light);
    margin-top: var(--space-xs);
  }
  
  .post-woon-werkverkeer-fiets-nederland .content-section p {
    margin-bottom: var(--space-md);
    line-height: var(--lh-loose);
  }
  
  /* Section specific styles */
  .post-woon-werkverkeer-fiets-nederland .section-benefits {
    background-color: var(--color-background);
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-benefits .section-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-benefits .image-content img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-implementation {
    background-color: var(--color-neutral-light);
  }
  
  .post-woon-werkverkeer-fiets-nederland .tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
  }
  
  .post-woon-werkverkeer-fiets-nederland .tip-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
  }
  
  .post-woon-werkverkeer-fiets-nederland .tip-card h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .tip-card ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .tip-card li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-implementation img {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--space-lg) auto;
    display: block;
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-mindset {
    background-color: var(--color-background);
  }
  
  .post-woon-werkverkeer-fiets-nederland .mindset-box {
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    color: white;
  }
  
  .post-woon-werkverkeer-fiets-nederland .mindset-box h4 {
    color: white;
    margin-bottom: var(--space-md);
  }
  
  .post-woon-werkverkeer-fiets-nederland .mindset-box ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .mindset-box li {
    margin-bottom: var(--space-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .section-mindset img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
  }
  
  /* Related Posts */
  .post-woon-werkverkeer-fiets-nederland .related-posts {
    background-color: var(--color-neutral-light);
    padding: var(--space-xl) 0;
  }
  
  .post-woon-werkverkeer-fiets-nederland .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-content {
    padding: var(--space-lg);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card h3 a:hover {
    color: var(--color-primary);
  }
  
  .post-woon-werkverkeer-fiets-nederland .post-card p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
  }
  
  .post-woon-werkverkeer-fiets-nederland .read-more {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    position: relative;
  }
  
  .post-woon-werkverkeer-fiets-nederland .read-more:after {
    content: "→";
    margin-left: var(--space-xxs);
    transition: transform var(--transition-fast);
  }
  
  .post-woon-werkverkeer-fiets-nederland .read-more:hover:after {
    transform: translateX(4px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1023px) {
    .post-woon-werkverkeer-fiets-nederland .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-woon-werkverkeer-fiets-nederland .section-benefits .section-content {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
    
    .post-woon-werkverkeer-fiets-nederland .post-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-woon-werkverkeer-fiets-nederland .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-woon-werkverkeer-fiets-nederland .tips-grid {
      grid-template-columns: 1fr;
    }
    
    .post-woon-werkverkeer-fiets-nederland .post-grid {
      grid-template-columns: 1fr;
    }
    
    .post-woon-werkverkeer-fiets-nederland .post-hero .lead {
      font-size: var(--fs-base);
    }
  }

/* Page-specific styles */
.post-grenzen-stellen .post-hero {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-grenzen-stellen .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background-image: linear-gradient(to right, rgba(30, 136, 229, 0), rgba(30, 136, 229, 1));
  z-index: 1;
}

.post-grenzen-stellen .post-hero h1 {
  color: white;
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.post-grenzen-stellen .post-hero .lead {
  color: white;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* Breadcrumbs */
.post-grenzen-stellen .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-sm) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.post-grenzen-stellen .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-grenzen-stellen .breadcrumbs a:hover {
  text-decoration: underline;
}

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

.post-grenzen-stellen .section-light {
  background-color: var(--color-background);
}

.post-grenzen-stellen .section-neutral {
  background-color: var(--color-neutral-light);
}

.post-grenzen-stellen .content-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.post-grenzen-stellen .content-section h4 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

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

.post-grenzen-stellen .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Strategies Section */
.post-grenzen-stellen .strategies-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

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

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

.post-grenzen-stellen .strategy-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-grenzen-stellen .strategy-card p {
  color: var(--color-text-light);
  line-height: var(--lh-normal);
}

/* Conversation Example */
.post-grenzen-stellen .conversation-example {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-grenzen-stellen .conversation-example h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.post-grenzen-stellen .conversation-example img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.post-grenzen-stellen .conversation-steps ol {
  padding-left: var(--space-lg);
  counter-reset: step-counter;
}

.post-grenzen-stellen .conversation-steps ol li {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  color: var(--color-text-light);
}

.post-grenzen-stellen .conversation-steps ol li strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Challenges Grid */
.post-grenzen-stellen .challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-grenzen-stellen .challenge-item {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.post-grenzen-stellen .challenge-item h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-grenzen-stellen .challenge-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-sm) 0;
}

/* Key Takeaways */
.post-grenzen-stellen .key-takeaways {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-text);
}

.post-grenzen-stellen .key-takeaways h4 {
  color: white;
  margin-bottom: var(--space-md);
  text-align: center;
}

.post-grenzen-stellen .key-takeaways ul {
  list-style-type: none;
  padding: 0;
}

.post-grenzen-stellen .key-takeaways ul li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
  color: white;
}

.post-grenzen-stellen .key-takeaways ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

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

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

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

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

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

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

.post-grenzen-stellen .related-post-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-grenzen-stellen .related-post-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-grenzen-stellen .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.post-grenzen-stellen .read-more::after {
  content: "→";
  margin-left: var(--space-xxs);
  transition: transform var(--transition-fast);
}

.post-grenzen-stellen .read-more:hover::after {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-grenzen-stellen .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-grenzen-stellen .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-grenzen-stellen .strategies-container,
  .post-grenzen-stellen .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-grenzen-stellen .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-grenzen-stellen .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-grenzen-stellen .post-hero h1 {
    font-size: var(--fs-xl);
  }
  
  .post-grenzen-stellen .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-grenzen-stellen .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-grenzen-stellen .strategies-container,
  .post-grenzen-stellen .challenges-grid,
  .post-grenzen-stellen .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-grenzen-stellen .conversation-steps ol {
    padding-left: var(--space-md);
  }
}

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

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

.privacy-page h1 {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

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

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

.privacy-page h2 {
  color: var(--color-text);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.privacy-page p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page h1 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-base);
  }
  
  .privacy-page p, 
  .privacy-page__list li {
    font-size: var(--fs-sm);
  }
}

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

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

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

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

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

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

.terms-page__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.terms-page__list li {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  padding-left: var(--space-xs);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__title {
    font-size: var(--fs-lg);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-base);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-md) 0;
  }
  
  .terms-page__title {
    font-size: var(--fs-md);
    margin-bottom: var(--space-md);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__text,
  .terms-page__list li {
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
  }
}

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

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

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

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

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

.cookie-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

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

.cookie-page__subsection h3 {
  color: var(--color-text);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

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

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

.cookie-page p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-lg) 0;
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page p {
    font-size: var(--fs-sm);
  }
  
  .cookie-page__list li {
    font-size: var(--fs-sm);
  }
}

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

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

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

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

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

.thank-page__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.error-404__container {
  width: 100%;
  max-width: 800px;
}

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

.error-404__title {
  font-size: calc(var(--fs-xxl) * 2);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1;
  opacity: 0.8;
}

.error-404__divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-pill);
}

.error-404__subtitle {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.error-404__message {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  color: var(--color-text-light);
  max-width: 550px;
  margin-bottom: var(--space-xl);
  line-height: var(--lh-loose);
}

.error-404__button {
  padding: var(--space-sm) var(--space-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

  .error-404__title {
    font-size: calc(var(--fs-xxl) * 1.5);
  }

  .error-404__subtitle {
    font-size: var(--fs-md);
  }

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

  .error-404__divider {
    width: 60px;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .error-404__title {
    font-size: calc(var(--fs-xl) * 1.5);
  }
}
