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

:root {
  /* Color Scheme - Modern Dutch-inspired with analytical feel */
  --color-primary: #0077b6; /* Dutch blue, represents water/clarity */
  --color-secondary: #ff6b35; /* Warm orange, represents energy/creativity */
  --color-accent: #2ec4b6; /* Teal, represents innovative thinking */
  --color-neutral-dark: #1e3a5f; /* Deep navy, represents depth/knowledge */
  --color-neutral-light: #f8f9fa; /* Light background */
  --color-text-primary: #2b2d42; /* Main text color */
  --color-text-secondary: #555b6e; /* Secondary text color */
  --color-white: #ffffff;
  --color-success: #43aa8b;
  --color-error: #e63946;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Font Sizes - Desktop */
  --fs-h1: 3.5rem;
  --fs-h2: 2.75rem;
  --fs-h3: 2rem;
  --fs-h4: 1.5rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  /* Line Heights */
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Section Padding */
  --section-padding-desktop: 100px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 60px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 500px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: var(--lh-body);
  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: var(--lh-heading);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

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

a.underline {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Icons */
.icon {
  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-sm);
}

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

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

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

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

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

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

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-xxl { margin-bottom: var(--space-xxl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-xxl { margin-top: var(--space-xxl); }

/* Responsive Adjustments */
@media (max-width: 1023px) {
  :root {
    --fs-h1: 2.75rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.35rem;
    --fs-h5: 1.15rem;
    --fs-h6: 1rem;
  }
  
  section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-h1: 2.25rem;
    --fs-h2: 1.875rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-h5: 1.125rem;
    --fs-h6: 1rem;
    --fs-body: 0.9375rem;
  }
  
  section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .card {
    padding: var(--space-lg);
  }
}
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  position: relative;
}

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

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

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

.logo__icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: var(--space-sm);
}

.logo__brain {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  top: 0;
  left: 0;
}

.logo__connection {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-sm);
}

.logo__connection:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: var(--color-accent);
  top: 50%;
  left: -10px;
  transform: rotate(45deg);
}

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

.logo__name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h5);
  color: var(--color-neutral-dark);
  letter-spacing: -0.01em;
}

.logo__tagline {
  font-family: var(--font-secondary);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}

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

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

.nav__item {
  margin-left: var(--space-lg);
}

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

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

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

.nav__link:hover:after {
  transform: scaleX(1);
}

.nav__link--cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.nav__link--cta:hover {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav__link--cta:after {
  display: none;
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
}

.mobile-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-neutral-dark);
  margin: 5px auto;
  transition: all var(--transition-normal);
}

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

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

.mobile-menu__close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__close-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-neutral-dark);
  position: absolute;
  top: 50%;
  left: 50%;
}

.mobile-menu__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  margin-bottom: auto;
}

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

.mobile-menu__item {
  margin-bottom: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--color-neutral-dark);
  text-decoration: none;
  display: block;
  transition: color var(--transition-normal);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__link--cta {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  transition: all var(--transition-normal);
}

.mobile-menu__link--cta:hover {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
}

.mobile-menu__footer {
  margin-top: var(--space-xxl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.mobile-menu__footer-link {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .logo__name {
    font-size: var(--fs-h6);
  }
  
  .logo__icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: var(--space-sm) 0;
  }
  
  .logo__icon {
    width: 32px;
    height: 32px;
  }
  
  .logo__brain {
    width: 24px;
    height: 24px;
  }
  
  .logo__connection {
    width: 16px;
    height: 16px;
  }
  
  .logo__name {
    font-size: var(--fs-body);
  }
  
  .logo__tagline {
    font-size: 0.65rem;
  }
}

/* Animation for mobile menu toggle */
.mobile-toggle--active .mobile-toggle__line:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

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

/* Animation for mobile menu */
.mobile-menu--active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--section-padding-desktop) 0 calc(var(--section-padding-desktop) + 80px);
  overflow: hidden;
}

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

.main .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main .hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.2s;
}

.main .hero-tagline {
  font-size: var(--fs-h5);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  max-width: 90%;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.4s;
}

.main .hero-cta {
  display: flex;
  gap: var(--space-md);
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.6s;
}

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

.main .hero-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateX(20px);
  opacity: 0;
  animation: fadeInLeft 0.8s forwards 0.6s;
}

.main .hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.main .hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color-accent);
  top: -40px;
  right: -60px;
  opacity: 0.2;
  transform: rotate(45deg);
}

.main .hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color-secondary);
  bottom: -30px;
  left: -40px;
  opacity: 0.15;
  transform: rotate(30deg);
}

.main .hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.8s;
}

.main .stat-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  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 {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

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

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

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

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

.main .section-description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xxl);
  color: var(--color-text-secondary);
}

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

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

.main .post-card:hover {
  transform: translateY(-8px);
  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);
}

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

.main .post-content p {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

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

/* Benefits Section */
.main .benefits {
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

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

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

.main .benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.15);
}

.main .benefit-icon {
  font-size: var(--icon-xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

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

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

.main .benefits-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

/* Methodology Section */
.main .methodology {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

.main .methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.main .methodology-text {
  padding-right: var(--space-xl);
}

.main .methodology-text h2 {
  margin-bottom: var(--space-lg);
}

.main .lead {
  font-size: var(--fs-h6);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.main .methodology-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.main .step {
  display: flex;
  gap: var(--space-lg);
}

.main .step-number {
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.8;
  min-width: 40px;
}

.main .step-content h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

.main .step-content p {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.main .methodology-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  height: 450px;
}

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

.main .methodology-accent {
  position: absolute;
  width: 60%;
  height: 60%;
  background-color: var(--color-secondary);
  opacity: 0.1;
  bottom: -30px;
  left: -30px;
  border-radius: var(--radius-lg);
  z-index: 1;
}

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

.main .testimonials-slider {
  margin-top: var(--space-xxl);
  display: flex;
  gap: var(--space-xl);
  overflow-x: hidden;
}

.main .testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  flex: 0 0 calc(33.333% - var(--space-lg));
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .testimonial-quote {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
}

.main .testimonial-text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.main .testimonial-rating {
  color: var(--color-secondary);
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
}

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

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

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

.main .author-name {
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.main .author-position {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.main .testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.main .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-text-secondary);
  opacity: 0.3;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.main .indicator.active {
  opacity: 1;
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* Contact Section */
.main .contact {
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.main .contact-feature p {
  margin-bottom: 0;
}

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  transition: all 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.1);
}

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

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

.main .form-check label {
  margin-bottom: 0;
  font-size: var(--fs-small);
}

.main .contact-shape {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  animation: floatAnimation 8s ease-in-out infinite;
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  z-index: 1000;
  display: none;
}

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

.main .cookie-content p {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatAnimation {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, 10px) rotate(5deg);
  }
  50% {
    transform: translate(10px, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(0, -10px) rotate(3deg);
  }
}

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

/* Media Queries */
@media (max-width: 1023px) {
  .main .hero {
    padding: var(--section-padding-tablet) 0 calc(var(--section-padding-tablet) + 60px);
  }
  
  .main .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .main .hero-tagline {
    max-width: 100%;
  }
  
  .main .hero-visual {
    align-items: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .methodology-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .methodology-text {
    padding-right: 0;
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .contact-content {
    padding-right: 0;
  }
  
  .main .testimonial-card {
    flex: 0 0 calc(50% - var(--space-lg));
  }
}

@media (max-width: 767px) {
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
  
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .testimonial-card {
    flex: 0 0 100%;
  }
  
  .main .step {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

/* Footer Styling */
.footer {
  position: relative;
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
  padding: var(--space-xxl) 0 var(--space-xl);
  overflow: hidden;
  font-family: var(--font-secondary);
}

.footer__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
}

.footer__geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer__geometric-shape {
  position: absolute;
  border-radius: var(--radius-lg);
  opacity: 0.05;
}

.footer__geometric-shape--1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  top: -100px;
  right: -50px;
  transform: rotate(25deg);
  animation: float 15s ease-in-out infinite;
}

.footer__geometric-shape--2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  bottom: -80px;
  left: 10%;
  transform: rotate(-15deg);
  animation: float 18s ease-in-out infinite reverse;
}

.footer__geometric-shape--3 {
  width: 150px;
  height: 150px;
  background-color: var(--color-accent);
  top: 30%;
  left: 25%;
  transform: rotate(45deg);
  animation: float 20s ease-in-out infinite 2s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, 15px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

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

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

.footer__heading {
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

.footer__description {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-neutral-light);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.footer__cta {
  margin-top: auto;
}

.footer__cta-btn {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.footer__subheading {
  font-family: var(--font-primary);
  font-size: var(--fs-h6);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

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

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

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

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

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

.footer__nav-link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.footer__resource-link {
  display: flex;
  align-items: center;
  color: var(--color-neutral-light);
  text-decoration: none;
  font-size: var(--fs-body);
  transition: color var(--transition-normal), transform var(--transition-normal);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.footer__resource-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-normal);
}

.footer__resource-icon::before,
.footer__resource-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.footer__resource-icon::before {
  width: 10px;
  height: 2px;
  top: 10px;
  left: 6px;
}

.footer__resource-icon::after {
  width: 2px;
  height: 10px;
  top: 6px;
  left: 10px;
}

.footer__resource-link:hover {
  color: var(--color-white);
  transform: translateX(3px);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer__resource-link:hover .footer__resource-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer__resource-link:hover .footer__resource-icon::before,
.footer__resource-link:hover .footer__resource-icon::after {
  background-color: var(--color-secondary);
  transform: scale(1.2);
}

.footer__bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

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

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

.footer__legal-link {
  color: var(--color-neutral-light);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color var(--transition-normal);
  position: relative;
}

.footer__legal-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

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

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

.footer__copyright {
  text-align: center;
}

.footer__copyright-text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Media Queries */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer__column--brand {
    grid-column: span 2;
  }
  
  .footer__description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__column--brand {
    grid-column: span 1;
  }
  
  .footer__legal-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .footer__geometric-shape--1 {
    width: 200px;
    height: 200px;
  }
  
  .footer__geometric-shape--2 {
    width: 150px;
    height: 150px;
  }
  
  .footer__geometric-shape--3 {
    width: 100px;
    height: 100px;
  }
}

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

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

.privacy-page__header h1 {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

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

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

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

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

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

@media (max-width: 767px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--fs-h4);
  }
}

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

.terms-page__header {
  margin-bottom: var(--space-xxl);
}

.terms-page h1 {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: 700;
}

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

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

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

.terms-page h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 600;
  border-bottom: 2px solid var(--color-neutral-light);
  padding-bottom: var(--space-sm);
}

.terms-page p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

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

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

@media (max-width: 767px) {
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page h2 {
    font-size: var(--fs-h4);
  }
  
  .terms-page p {
    font-size: var(--fs-small);
  }
}

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

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

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

.cookie-page__header h1 {
  color: var(--color-neutral-dark);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.cookie-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

.cookie-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-accent);
  display: inline-block;
}

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

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

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

.cookie-page__list li {
  position: relative;
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
  padding-left: var(--space-md);
}

.cookie-page__list li:before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookie-page p {
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

@media (max-width: 767px) {
  .cookie-page__header h1 {
    font-size: var(--fs-h3);
  }
  
  .cookie-page__section h2 {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subsection h3 {
    font-size: var(--fs-h6);
  }
  
  .cookie-page__subsection {
    padding-left: var(--space-sm);
  }
  
  .cookie-page__list {
    padding-left: var(--space-md);
  }
}

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

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

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

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

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

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

.thank-page__message {
  font-size: var(--fs-h5);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
  font-family: var(--font-secondary);
}

.thank-page__confirmation {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
  font-family: var(--font-secondary);
}

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

.thank-page__cta .btn {
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
}

.thank-page__note {
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__message {
    font-size: var(--fs-body);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
}

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

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

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

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

.category-page__hero p {
  color: var(--color-white);
  font-size: var(--fs-h5);
  line-height: var(--lh-body);
}

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

.category-page__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* Post Card Styles */
.post-card {
  background-color: var(--color-white);
  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: 220px;
  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-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  line-height: 1.3;
}

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

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

/* Features Section */
.category-page__features {
  padding: var(--section-padding-desktop) 0;
}

.category-page__features-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.category-page__feature-card {
  padding: var(--space-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

/* Methods Section */
.category-page__methods {
  padding: var(--section-padding-desktop) 0;
}

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

.category-page__method {
  margin-bottom: var(--space-xxl);
}

.category-page__method-list {
  list-style-type: disc;
  padding-left: var(--space-xl);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__features-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__posts,
  .category-page__features,
  .category-page__methods {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__hero {
    padding: var(--space-xxl) 0;
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid,
  .category-page__features-content {
    grid-template-columns: 1fr;
  }
  
  .category-page__posts,
  .category-page__features,
  .category-page__methods {
    padding: var(--section-padding-mobile) 0;
  }
  
  .category-page__hero {
    padding: var(--space-xl) 0;
  }
  
  .category-page__hero h1 {
    font-size: var(--fs-h2);
  }
  
  .category-page__hero p {
    font-size: var(--fs-body);
  }
}

/* Page-specific styles */
.post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-probleemoplossend-vermogen-nederlandse-methoden .post-hero {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
  padding: var(--space-xxxl) 0;
  position: relative;
  overflow: hidden;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .post-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

/* Content Sections */
.post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .content-section.bg-light {
  background-color: var(--color-neutral-light);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .text-content {
  flex: 1;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .image-container {
  flex: 1;
}

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

.post-probleemoplossend-vermogen-nederlandse-methoden .center-image {
  display: block;
  margin: var(--space-xxl) auto 0;
  max-width: 800px;
}

/* Methods Grid Section */
.post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .method-card {
  border-top: 4px solid var(--color-primary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .method-card:nth-child(2) {
  border-top-color: var(--color-secondary);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .method-card:nth-child(3) {
  border-top-color: var(--color-accent);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .method-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

/* Key Elements */
.post-probleemoplossend-vermogen-nederlandse-methoden .key-elements {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xxl);
  box-shadow: var(--shadow-md);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .key-elements h3 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .key-elements ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .key-elements li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Results Section */
.post-probleemoplossend-vermogen-nederlandse-methoden .results-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item:nth-child(2) {
  border-left-color: var(--color-secondary);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item:nth-child(3) {
  border-left-color: var(--color-accent);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item:nth-child(4) {
  border-left-color: var(--color-success);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .result-item p {
  margin-bottom: 0;
  font-size: var(--fs-body);
}

/* Related Posts Section */
.post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-section {
  background-color: var(--color-white);
  padding: var(--section-padding-desktop) 0;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .related-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

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

.post-probleemoplossend-vermogen-nederlandse-methoden .related-post-content h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-probleemoplossend-vermogen-nederlandse-methoden .related-post-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  flex-grow: 1;
}

.post-probleemoplossend-vermogen-nederlandse-methoden .related-post-content .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .section-content {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero {
    padding: var(--space-xxl) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero .lead {
    font-size: var(--fs-body);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid,
  .post-probleemoplossend-vermogen-nederlandse-methoden .results-highlights,
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
}

  /* Page-specific styles */
  .post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero {
    padding: var(--space-xxxl) 0;
    background-color: var(--color-neutral-dark);
    color: var(--color-white);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero .lead {
    font-size: var(--fs-h5);
    font-weight: 400;
    line-height: var(--lh-subheading);
    max-width: 90%;
    margin-bottom: 0;
  }
  
  /* Content Sections */
  .post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .content-section h2 {
    margin-bottom: var(--space-xl);
    color: var(--color-neutral-dark);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .bg-light {
    background-color: var(--color-neutral-light);
  }
  
  /* Section 1 - Two Column Layout */
  .post-probleemoplossend-vermogen-nederlandse-methoden .section-content {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .text-content {
    flex: 3;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .image-container {
    flex: 2;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .image-container img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  /* Section 2 - Methods Grid */
  .post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .method-card {
    display: flex;
    flex-direction: column;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .method-card h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .method-benefits {
    list-style-type: none;
    padding: 0;
    margin: var(--space-md) 0 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .method-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-body);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .method-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .case-study {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .case-study h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .case-study img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
  }
  
  /* Section 3 - Implementation Steps */
  .post-probleemoplossend-vermogen-nederlandse-methoden .implementation-steps {
    margin: var(--space-xl) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .step {
    display: flex;
    margin-bottom: var(--space-xl);
    align-items: flex-start;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: bold;
    margin-right: var(--space-lg);
    flex-shrink: 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .step-content {
    flex: 1;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .step-content h4 {
    margin-bottom: var(--space-sm);
    color: var(--color-neutral-dark);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .results-section {
    margin-top: var(--space-xxl);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .results-section h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .result-item {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background-color: var(--color-neutral-light);
    transition: transform var(--transition-normal);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .result-item:hover {
    transform: translateY(-5px);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .result-item h4 {
    color: var(--color-secondary);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .conclusion {
    font-weight: 500;
    font-size: var(--fs-h6);
    line-height: var(--lh-subheading);
    margin-top: var(--space-xl);
    color: var(--color-text-primary);
  }
  
  /* Related Posts Section */
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-section {
    padding: var(--section-padding-desktop) 0;
    background-color: var(--color-white);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-section h2 {
    margin-bottom: var(--space-xl);
    text-align: center;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-post-card h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-post-card p {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
  }
  
  .post-probleemoplossend-vermogen-nederlandse-methoden .related-post-card .btn {
    align-self: flex-start;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .section-content {
      flex-direction: column;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .results-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero {
      padding: var(--space-xxl) 0;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .post-hero .lead {
      font-size: var(--fs-h6);
      max-width: 100%;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .methods-grid,
    .post-probleemoplossend-vermogen-nederlandse-methoden .results-grid,
    .post-probleemoplossend-vermogen-nederlandse-methoden .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .step {
      flex-direction: column;
    }
    
    .post-probleemoplossend-vermogen-nederlandse-methoden .step-number {
      margin-bottom: var(--space-sm);
    }
  }

  .post-probleemoplossend-vermogen-versterken-nederland .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-text-secondary);
    background-color: var(--color-neutral-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .breadcrumbs a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-probleemoplossend-vermogen-versterken-nederland .post-hero {
    background-color: var(--color-neutral-dark);
    color: var(--color-white);
    padding: var(--section-padding-desktop) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .post-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    max-width: 900px;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .post-hero .lead {
    font-size: var(--fs-h5);
    line-height: var(--lh-subheading);
    color: var(--color-white);
    max-width: 800px;
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  /* Content Sections */
  .post-probleemoplossend-vermogen-versterken-nederland .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .content-section h2 {
    margin-bottom: var(--space-xl);
    position: relative;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .content-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    position: absolute;
    bottom: -12px;
    left: 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .bg-white h2:after {
    background-color: var(--color-secondary);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .bg-primary h2:after {
    background-color: var(--color-white);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .bg-primary {
    color: var(--color-white);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .bg-primary h2,
  .post-probleemoplossend-vermogen-versterken-nederland .bg-primary h3 {
    color: var(--color-white);
  }
  
  /* Section 1 */
  .post-probleemoplossend-vermogen-versterken-nederland .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .image-container:hover img {
    transform: scale(1.02);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--color-accent);
    border-radius: 50%;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .key-elements li:last-child {
    border-bottom: none;
  }
  
  /* Section 2 */
  .post-probleemoplossend-vermogen-versterken-nederland .methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .method-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .method-card h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .center-image {
    margin: var(--space-xl) auto;
    max-width: 800px;
  }
  
  /* Section 3 */
  .post-probleemoplossend-vermogen-versterken-nederland .implementation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .implementation-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform var(--transition-normal);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .implementation-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .implementation-item h3 {
    margin-bottom: var(--space-md);
    font-size: var(--fs-h4);
    color: var(--color-white);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .conclusion {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-xl);
    margin-top: var(--space-xxl);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .conclusion h3 {
    margin-bottom: var(--space-md);
  }
  
  /* Related Posts Section */
  .post-probleemoplossend-vermogen-versterken-nederland .related-posts-section {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-post-card h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-post-card p {
    margin-bottom: var(--space-xl);
    flex-grow: 1;
  }
  
  .post-probleemoplossend-vermogen-versterken-nederland .related-post-card .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-probleemoplossend-vermogen-versterken-nederland .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .post-hero {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .related-posts-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .methods-grid,
    .post-probleemoplossend-vermogen-versterken-nederland .related-posts-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .section-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 767px) {
    .post-probleemoplossend-vermogen-versterken-nederland .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .post-hero {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .related-posts-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .methods-grid,
    .post-probleemoplossend-vermogen-versterken-nederland .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .post-hero .lead {
      font-size: var(--fs-h6);
    }
    
    .post-probleemoplossend-vermogen-versterken-nederland .section-content,
    .post-probleemoplossend-vermogen-versterken-nederland .implementation-grid {
      grid-template-columns: 1fr;
    }
  }

/* Page-specific styles */
.post-kritisch-denken-ethiek-nederlandse-tech-sector {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-neutral-light);
}

/* Breadcrumbs */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .breadcrumbs a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .post-hero {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
  padding: var(--space-xxxl) 0;
  text-align: center;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-white);
}

/* Content Sections */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-light {
  background-color: var(--color-white);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-dark {
  background-color: var(--color-neutral-dark);
  color: var(--color-white);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-dark h2,
.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-dark h3 {
  color: var(--color-white);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-accent h2,
.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-accent h3 {
  color: var(--color-white);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section p {
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

/* Two Column Layout */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .two-column-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .image-column img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Feature Box */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .feature-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .feature-box h3 {
  margin-bottom: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .feature-box ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .feature-box li {
  margin-bottom: var(--space-md);
}

/* Best Practices Box */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .best-practices-box {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .best-practices-box h3 {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .best-practices-box ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .best-practices-box li {
  margin-bottom: var(--space-md);
}

/* Key Takeaways */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .key-takeaways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .takeaway-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .takeaway-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .takeaway-number {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .takeaway-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .takeaway-card p {
  font-size: var(--fs-body);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .conclusion {
  font-size: var(--fs-h6);
  line-height: var(--lh-subheading);
  margin-top: var(--space-xxl);
  font-weight: 500;
}

/* Related Posts Section */
.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-neutral-dark);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card h3 {
  font-size: var(--fs-h5);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  color: var(--color-neutral-dark);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .related-post-card .btn {
  margin: 0 var(--space-lg) var(--space-lg);
}

/* Images */
.post-kritisch-denken-ethiek-nederlandse-tech-sector img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section-dark img {
  box-shadow: var(--shadow-lg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .two-column-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .key-takeaways {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .post-hero {
    padding: var(--space-xxl) 0;
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .key-takeaways {
    grid-template-columns: 1fr;
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .feature-box,
  .post-kritisch-denken-ethiek-nederlandse-tech-sector .best-practices-box {
    padding: var(--space-lg);
  }
}

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

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

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

.privacy-page__last-updated {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
}

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

.privacy-page__content:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

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

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

.privacy-page__list-item {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

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

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

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

@media (max-width: 767px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section-title {
    font-size: var(--fs-h5);
  }
  
  .privacy-page__list {
    padding-left: var(--space-lg);
  }
}

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

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

.terms-page__title {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  font-weight: 700;
  text-align: center;
}

.terms-page__last-updated {
  text-align: center;
  margin-bottom: var(--space-xxl);
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

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

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

.terms-page__section-title {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

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

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

.terms-page p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

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

.cookie-page {
  font-family: var(--font-secondary);
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  padding: var(--space-xxl) 0;
  line-height: var(--lh-body);
}

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

.cookie-page__header {
  margin-bottom: var(--space-xxl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-page__title {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.cookie-page__text {
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

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

.cookie-page__list-item {
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__title {
    font-size: var(--fs-h3);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--fs-h6);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
}

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

.thank-page__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-page__card {
  padding: var(--space-xxl);
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thank-page__icon {
  width: var(--icon-xl);
  height: var(--icon-xl);
  margin: 0 auto var(--space-xl);
  color: var(--color-success);
}

.thank-page__title {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
}

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

.thank-page__message p {
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

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

.thank-page__action .btn {
  padding: var(--space-md) var(--space-xxl);
  font-weight: 600;
}

@media (max-width: 1023px) {
  .thank-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .thank-page__card {
    padding: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__card {
    padding: var(--space-lg);
  }
  
  .thank-page__icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__title {
    margin-bottom: var(--space-lg);
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-xxxl) 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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-404__number {
  font-family: var(--font-primary);
  font-size: calc(var(--fs-h1) * 2.5);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.04em;
  position: relative;
  text-shadow: var(--shadow-md);
}

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

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

.error-404__message {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
}

.error-404__button {
  margin-top: var(--space-md);
  transition: transform var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.error-404__icon {
  font-size: var(--fs-body);
  transition: transform var(--transition-normal);
}

.error-404__button:hover .error-404__icon {
  transform: translateX(-4px);
}

.error-404__decoration {
  margin-top: var(--space-xxl);
  width: 100%;
  max-width: 500px;
}

.error-404__line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

@media (max-width: 767px) {
  .error-404 {
    padding: var(--space-xl) var(--space-md);
  }
  
  .error-404__number {
    font-size: calc(var(--fs-h1) * 2);
  }
  
  .error-404__title {
    font-size: var(--fs-h4);
  }
  
  .error-404__message {
    font-size: var(--fs-small);
    margin-bottom: var(--space-lg);
  }
  
  .error-404__decoration {
    margin-top: var(--space-xl);
  }
}
