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

:root {
  /* Color Scheme - Modern Dutch-inspired palette with professional tones */
  --color-primary: #0077b6; /* Dutch blue - represents water/innovation */
  --color-primary-light: #90e0ef;
  --color-secondary: #e95420; /* Warm orange for transformation/change */
  --color-secondary-light: #ffaa80;
  --color-accent: #3d5a80; /* Deep blue-gray for professionalism */
  --color-neutral-dark: #2b2d42; /* Near-black for text */
  --color-neutral-light: #f8f9fa; /* Off-white background */
  --color-neutral-medium: #dee2e6; /* Medium gray for dividers */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 15px 25px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Container */
  --container-padding: 0 20px;
  --section-spacing-desktop: 100px;
  --section-spacing-mobile: 50px;
}

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

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

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

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

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

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-top: var(--space-sm);
}

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

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

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

h6 {
  font-size: var(--text-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

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

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

a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-secondary);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-with-text {
  margin-right: var(--space-sm);
  vertical-align: middle;
}

/* Utility classes */
.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: white;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  :root {
    --section-spacing-desktop: 80px;
  }
  
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
}

@media (max-width: 767px) {
  :root {
    --section-spacing-mobile: 40px;
  }
  
  h1 {
    font-size: var(--text-2xl);
  }
  
  h2 {
    font-size: var(--text-xl);
  }
  
  h3 {
    font-size: var(--text-lg);
  }
  
  p {
    font-size: var(--text-sm);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
  }
}
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  position: relative;
}

.header__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-container {
  display: flex;
  align-items: center;
}

.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);
}

.header__logo:hover::after {
  display: none;
}

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

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

.header__logo-arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid white;
  border-top: 3px solid white;
  transform: rotate(45deg);
  position: relative;
  left: -2px;
}

.header__logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary);
  letter-spacing: -0.01em;
  transition: color var(--transition-normal);
}

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

.header__nav {
  display: flex;
}

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

.header__nav-item {
  position: relative;
}

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

.header__nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(0, 119, 182, 0.05);
}

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

.header__nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: var(--color-primary);
  transition: width var(--transition-normal), left var(--transition-normal);
}

.header__nav-link:hover::before {
  width: 100%;
  left: 0;
}

.header__nav-link--highlight {
  color: white;
  background-color: var(--color-secondary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.header__nav-link--highlight:hover {
  background-color: var(--color-secondary-light);
  color: white;
  transform: translateY(-2px);
}

.header__nav-link--highlight::before,
.header__nav-link--highlight::after {
  display: none;
}

.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-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

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

.header__mobile-menu.active {
  transform: translateX(0);
}

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

.header__logo--mobile {
  margin-right: 0;
}

.header__mobile-close {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.header__mobile-close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

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

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

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

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

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-neutral-dark);
  text-decoration: none;
  display: block;
  transition: color var(--transition-normal), transform var(--transition-fast);
}

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

.header__mobile-nav-link--highlight {
  color: var(--color-secondary);
  font-weight: 700;
}

.header__mobile-nav-link--highlight:hover {
  color: var(--color-secondary-light);
}

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

.header__mobile-footer-link {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-decoration: none;
}

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

@media (max-width: 1023px) {
  .header__nav-link {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-xs);
  }
  
  .header__nav-link--highlight {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .header__nav-list {
    gap: var(--space-sm);
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .header__logo-arrow {
    width: 16px;
    height: 16px;
  }
  
  .header__logo-text {
    font-size: var(--text-lg);
  }
}

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

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

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

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

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

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

.main .hero-text p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

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

.main .hero-visual {
  position: relative;
  height: 100%;
}

.main .hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 5% 95%);
  transform: perspective(1000px) rotateY(-5deg);
}

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

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

.main .hero-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius-lg);
  z-index: 1;
  clip-path: polygon(5% 5%, 100% 0%, 95% 95%, 0% 100%);
}

.main .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.main .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.main .stat-text {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

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

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

.main .featured-posts h2::after {
  margin: var(--space-sm) auto 0;
}

.main .section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--text-md);
  color: var(--color-accent);
}

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

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

.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);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

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

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

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

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

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

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

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

.main .methodology::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary-light);
  opacity: 0.1;
  border-radius: var(--border-radius-circle);
  transform: translate(100px, -150px);
  z-index: 1;
}

.main .methodology::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary-light);
  opacity: 0.1;
  border-radius: var(--border-radius-circle);
  transform: translate(-100px, 100px);
  z-index: 1;
}

.main .methodology-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.main .methodology-header h2::after {
  margin: var(--space-sm) auto 0;
}

.main .methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.main .methodology-item {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.main .methodology-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--border-radius-circle);
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.main .methodology-item:hover .methodology-icon {
  background-color: var(--color-primary);
  color: white;
}

.main .methodology-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .methodology-item p {
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-bottom: 0;
}

.main .methodology-visual {
  position: relative;
  z-index: 2;
  text-align: center;
}

.main .methodology-visual img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Process Section */
.main .process {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, white 0%, var(--color-neutral-light) 100%);
}

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

.main .process-header h2::after {
  margin: var(--space-sm) auto 0;
}

.main .process-flow {
  position: relative;
}

.main .process-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 4px;
  background-color: var(--color-primary-light);
  z-index: 1;
}

.main .process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.main .process-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-circle);
  font-size: var(--text-2xl);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.main .process-content {
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

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

.main .process-content p {
  margin-bottom: var(--space-md);
}

.main .process-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main .process-details li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
}

.main .process-details li i {
  color: var(--color-secondary);
  margin-right: var(--space-sm);
}

.main .process-image {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

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

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

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-4xl) 0;
  background-color: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.main .testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-circle);
}

.main .testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-circle);
}

.main .testimonials h2 {
  color: white;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.main .testimonials h2::after {
  background-color: white;
  margin: var(--space-sm) auto 0;
}

.main .testimonials .section-description {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.main .testimonials-carousel {
  position: relative;
  display: flex;
  overflow: hidden;
}

.main .testimonial-card {
  flex: 0 0 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: 0 var(--space-md);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

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

.main .quote-mark {
  font-size: var(--text-3xl);
  color: var(--color-secondary-light);
  margin-bottom: var(--space-md);
}

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

.main .testimonial-rating {
  color: var(--color-secondary-light);
  font-size: var(--text-sm);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
}

.main .testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-circle);
  overflow: hidden;
  margin-right: var(--space-md);
  border: 3px solid white;
}

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

.main .testimonial-info h4 {
  color: white;
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
}

.main .testimonial-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin: 0;
}

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

.main .nav-prev,
.main .nav-next {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.main .nav-prev:hover,
.main .nav-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.main .nav-indicators {
  display: flex;
  margin: 0 var(--space-md);
}

.main .nav-indicators span {
  width: 12px;
  height: 12px;
  border-radius: var(--border-radius-circle);
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 var(--space-xs);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.main .nav-indicators span.active {
  background-color: white;
}

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

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

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

.main .contact-text .section-description {
  text-align: left;
  margin: 0 0 var(--space-xl) 0;
}

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

.main .benefit-item {
  display: flex;
  align-items: flex-start;
}

.main .benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.main .benefit-text h4 {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
}

.main .benefit-text p {
  color: var(--color-accent);
  margin: 0;
  font-size: var(--text-sm);
}

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

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

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

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

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-md);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.main .form-privacy {
  font-size: var(--text-xs);
  margin: 0;
  color: var(--color-accent);
}

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

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

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

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

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

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

.main .cookie-buttons .btn-outline {
  border-color: white;
  color: white;
}

.main .cookie-buttons .btn-outline:hover {
  background-color: white;
  color: var(--color-neutral-dark);
}

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

/* Media Queries */
@media (max-width: 1023px) {
  .main .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    margin-top: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .process-step {
    grid-template-columns: 80px 1fr;
  }
  
  .main .process-image {
    display: none;
  }
  
  .main .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .main .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .methodology-grid {
    grid-template-columns: 1fr;
  }
  
  .main .process-flow::before {
    left: 40px;
  }
  
  .main .process-step {
    grid-template-columns: 80px 1fr;
  }
  
  .main .process-number {
    width: 80px;
    height: 80px;
    font-size: var(--text-xl);
  }
  
  .main .cookie-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

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

.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.footer__wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.footer__brand {
  position: relative;
}

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

.footer__tagline {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-neutral-light);
  margin-bottom: var(--space-lg);
  max-width: 80%;
  line-height: 1.6;
}

.footer__transformation-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-lg);
}

.footer__icon-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius-circle);
  top: 0;
  left: 0;
  transition: transform var(--transition-normal);
}

.footer__icon-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--color-primary-light);
  border-right: 2px solid var(--color-primary-light);
  transform: rotate(45deg);
  top: 10px;
  left: 8px;
  transition: transform var(--transition-normal);
}

.footer__transformation-icon:hover .footer__icon-circle {
  transform: scale(1.1);
}

.footer__transformation-icon:hover .footer__icon-arrow {
  transform: rotate(45deg) scale(1.1);
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-secondary-light);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

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

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

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

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

.footer__nav-link:before {
  content: '›';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

.footer__nav-link:hover::after {
  transform: scaleX(0);
}

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

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

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

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

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

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

.footer__legal-link:hover::after {
  transform: scaleX(0);
}

.footer__copyright-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-neutral-medium);
  margin: 0;
}

/* Animation for wave effect */
@keyframes wave-animation {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Media Queries */
@media (max-width: 1023px) {
  .footer__main-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand {
    grid-column: span 2;
    margin-bottom: var(--space-lg);
  }
  
  .footer__tagline {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
  
  .footer__wave {
    height: 60px;
  }
  
  .footer__wave svg {
    height: 60px;
  }
  
  .footer__container {
    padding: 0 var(--space-lg);
  }
  
  .footer__main-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: span 1;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__legal-list {
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
}

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

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

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

.privacy-page h1 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.privacy-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 0;
}

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

.privacy-page h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}

.privacy-page h2::after {
  background-color: var(--color-primary-light);
  width: 80px;
  height: 3px;
}

.privacy-page p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.privacy-page__list li {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

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

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page h1 {
    font-size: var(--text-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--text-lg);
  }
  
  .privacy-page p,
  .privacy-page__list li {
    font-size: var(--text-sm);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

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

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

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

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

.terms-page__last-updated p {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 0;
}

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

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

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

.terms-page__section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: var(--space-xs);
}

.terms-page__text {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

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

.terms-page__list li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--color-neutral-dark);
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__title {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-md);
  }
  
  .terms-page__text,
  .terms-page__list li {
    font-size: var(--text-sm);
  }
}

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

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

.cookie-page__title {
  color: var(--color-accent);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

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

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

.cookie-page__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: var(--space-sm);
}

.cookie-page__subtitle {
  color: var(--color-neutral-dark);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.cookie-page__text {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

.cookie-page__text--small {
  font-size: var(--text-sm);
  color: var(--color-accent);
}

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

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

.cookie-page__footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
  text-align: center;
}

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

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

.thank-page__container {
  width: 100%;
}

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

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

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

.thank-page__message p {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

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

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

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

.thank-page__note {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-2xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
}

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

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

.category-page .category-hero h1 {
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  position: relative;
}

.category-page .hero-description {
  font-size: var(--text-lg);
  max-width: 800px;
  color: var(--color-neutral-dark);
  line-height: 1.7;
}

/* Posts Grid Section */
.category-page .category-posts {
  padding: var(--space-3xl) 0;
  background-color: white;
}

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

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

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

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

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

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

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

.category-page .post-card-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  line-height: 1.3;
}

.category-page .post-card-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

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

/* Additional Content Sections */
.category-page .category-content {
  padding: var(--space-3xl) 0;
}

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

.category-page .content-column h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.category-page .trend-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-lg);
}

.category-page .trend-list li {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
}

.category-page .trend-icon {
  display: inline-block;
  margin-right: var(--space-sm);
  font-size: var(--text-lg);
}

.category-page .stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.category-page .stat-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.category-page .stat-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--space-sm);
}

.category-page .stat-description {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.category-page .methodology-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.category-page .methodology-item {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.category-page .methodology-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-lg);
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius-circle);
}

.category-page .methodology-content {
  flex-grow: 1;
}

.category-page .methodology-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.category-page .methodology-features {
  list-style-type: disc;
  padding-left: var(--space-xl);
  margin-top: var(--space-md);
}

.category-page .methodology-features li {
  margin-bottom: var(--space-sm);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .category-page .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page .content-columns {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .category-page .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page .stats-container {
    grid-template-columns: 1fr;
  }
  
  .category-page .methodology-item {
    flex-direction: column;
  }
  
  .category-page .methodology-icon {
    margin-bottom: var(--space-md);
    margin-right: 0;
  }
}

  /* Page-specific styles */
  .post-digitale-transformatie-nederlandse-organisaties .post-hero {
    background-color: var(--color-accent);
    color: white;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--color-secondary);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
    font-size: var(--text-xl);
    font-weight: 300;
    margin-bottom: var(--space-xl);
    max-width: 900px;
    line-height: 1.5;
    color: white;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .hero-cta {
    margin-top: var(--space-xl);
  }
  
  /* Breadcrumbs */
  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs {
    padding: var(--space-md) 0;
    background-color: var(--color-neutral-light);
    border-bottom: 1px solid var(--color-neutral-medium);
    font-size: var(--text-sm);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs span {
    color: var(--color-neutral-dark);
  }
  
  /* Content Sections */
  .post-digitale-transformatie-nederlandse-organisaties .content-section {
    padding: var(--section-spacing-desktop) 0;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .section-light {
    background-color: white;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .section-dark {
    background-color: var(--color-primary);
    color: white;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .section-dark h2 {
    color: white;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .section-dark h2::after {
    background-color: var(--color-secondary-light);
  }
  
  /* Section 1 - Features */
  .post-digitale-transformatie-nederlandse-organisaties .content-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .feature-list {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .feature-list li {
    margin-bottom: var(--space-md);
    position: relative;
    font-family: var(--font-secondary);
    line-height: 1.6;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .feature-list li::before {
    content: '→';
    color: var(--color-secondary);
    position: absolute;
    left: -20px;
    font-weight: bold;
  }
  
  /* Section 2 - Implementation */
  .post-digitale-transformatie-nederlandse-organisaties .implementation-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .implementation-steps {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
    counter-reset: step-counter;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .implementation-steps li {
    margin-bottom: var(--space-md);
    position: relative;
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: white;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .implementation-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--color-secondary-light);
    color: var(--color-neutral-dark);
    font-weight: bold;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-circle);
    position: absolute;
    left: -35px;
    top: 2px;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .section-dark p {
    color: white;
  }
  
  /* Section 3 - Benefits and Challenges */
  .post-digitale-transformatie-nederlandse-organisaties .benefits-challenges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .benefits-box,
  .post-digitale-transformatie-nederlandse-organisaties .challenges-box {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .benefits-box {
    border-top: 4px solid var(--color-primary);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .challenges-box {
    border-top: 4px solid var(--color-secondary);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .benefits-box h3,
  .post-digitale-transformatie-nederlandse-organisaties .challenges-box h3 {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .benefits-box ul,
  .post-digitale-transformatie-nederlandse-organisaties .challenges-box ul {
    padding-left: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .benefits-box li,
  .post-digitale-transformatie-nederlandse-organisaties .challenges-box li {
    margin-bottom: var(--space-md);
    font-family: var(--font-secondary);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .future-perspective {
    background-color: var(--color-neutral-light);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-2xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .future-perspective h3 {
    margin-bottom: var(--space-lg);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .success-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .factor {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .factor h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-md);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .factor p {
    margin-bottom: 0;
    font-size: var(--text-sm);
  }
  
  /* Related Posts */
  .post-digitale-transformatie-nederlandse-organisaties .related-posts-section {
    background-color: var(--color-neutral-light);
    padding: var(--section-spacing-desktop) 0;
    border-top: 1px solid var(--color-neutral-medium);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .related-posts-section h2 {
    margin-bottom: var(--space-2xl);
    text-align: center;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-card {
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-card-content {
    padding: var(--space-xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-card p {
    font-size: var(--text-sm);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-lg);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .read-more {
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--color-primary);
  }
  
  /* Images */
  .post-digitale-transformatie-nederlandse-organisaties .section-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1023px) {
    .post-digitale-transformatie-nederlandse-organisaties .content-grid,
    .post-digitale-transformatie-nederlandse-organisaties .implementation-grid {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .benefits-challenges {
      grid-template-columns: 1fr;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .success-factors {
      grid-template-columns: 1fr;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .content-section {
      padding: var(--section-spacing-mobile) 0;
    }
  }
  
  @media (max-width: 767px) {
    .post-digitale-transformatie-nederlandse-organisaties .post-hero {
      padding: var(--space-2xl) 0;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
      font-size: var(--text-2xl);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
      font-size: var(--text-md);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .implementation-steps li::before,
    .post-digitale-transformatie-nederlandse-organisaties .feature-list li::before {
      left: -25px;
    }
  }

  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-neutral-medium);
    margin-bottom: var(--space-xl);
  }

  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs a {
    color: var(--color-accent);
    transition: color var(--transition-normal);
  }

  .post-digitale-transformatie-nederlandse-organisaties .breadcrumbs a:hover {
    color: var(--color-primary);
  }

  /* Hero Section */
  .post-digitale-transformatie-nederlandse-organisaties .post-hero {
    background-color: var(--color-accent);
    color: white;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--section-spacing-desktop);
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: var(--text-4xl);
    line-height: 1.1;
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
    font-size: var(--text-xl);
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    font-weight: 300;
    color: white;
    max-width: 800px;
  }

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

  /* Content Sections - Common Styles */
  .post-digitale-transformatie-nederlandse-organisaties .content-section {
    padding: var(--section-spacing-desktop) 0;
    position: relative;
  }

  .post-digitale-transformatie-nederlandse-organisaties .content-section h2 {
    margin-bottom: var(--space-2xl);
    position: relative;
    display: inline-block;
  }

  .post-digitale-transformatie-nederlandse-organisaties .content-section h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
  }

  .post-digitale-transformatie-nederlandse-organisaties .section-content {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
  }

  .post-digitale-transformatie-nederlandse-organisaties .text-content {
    flex: 1;
  }

  .post-digitale-transformatie-nederlandse-organisaties .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .post-digitale-transformatie-nederlandse-organisaties .section-image {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

  .post-digitale-transformatie-nederlandse-organisaties .section-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .post-digitale-transformatie-nederlandse-organisaties .feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: var(--space-xl);
  }

  .post-digitale-transformatie-nederlandse-organisaties .feature-list li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-xl);
    font-family: var(--font-secondary);
    line-height: 1.5;
  }

  .post-digitale-transformatie-nederlandse-organisaties .feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
  }

  /* Foundation Section */
  .post-digitale-transformatie-nederlandse-organisaties .foundation-section {
    background-color: white;
  }

  /* Implementation Section */
  .post-digitale-transformatie-nederlandse-organisaties .implementation-section {
    background-color: var(--color-neutral-light);
  }

  .post-digitale-transformatie-nederlandse-organisaties .implementation-section .section-content {
    flex-direction: row-reverse;
  }

  /* Execution Section */
  .post-digitale-transformatie-nederlandse-organisaties .execution-section {
    background-color: white;
  }

  .post-digitale-transformatie-nederlandse-organisaties .conclusion {
    background-color: var(--color-primary-light);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-3xl);
  }

  .post-digitale-transformatie-nederlandse-organisaties .conclusion h3 {
    color: var(--color-accent);
  }

  .post-digitale-transformatie-nederlandse-organisaties .conclusion p:last-child {
    margin-bottom: 0;
  }

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

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

  .post-digitale-transformatie-nederlandse-organisaties .related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

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

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

  .post-digitale-transformatie-nederlandse-organisaties .post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-content {
    padding: var(--space-lg);
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-content h3 {
    font-size: var(--text-lg);
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: var(--color-neutral-dark);
  }

  .post-digitale-transformatie-nederlandse-organisaties .post-content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    color: var(--color-neutral-dark);
    opacity: 0.8;
  }

  .post-digitale-transformatie-nederlandse-organisaties .read-more {
    display: inline-block;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
      font-size: var(--text-3xl);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
      font-size: var(--text-lg);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .section-content {
      flex-direction: column;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .implementation-section .section-content {
      flex-direction: column;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .related-posts {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .content-section {
      padding: var(--section-spacing-mobile) 0;
    }
  }

  @media (max-width: 767px) {
    .post-digitale-transformatie-nederlandse-organisaties .post-hero {
      padding: var(--space-2xl) 0;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
      font-size: var(--text-2xl);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
      font-size: var(--text-base);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .related-posts {
      grid-template-columns: 1fr;
    }
    
    .post-digitale-transformatie-nederlandse-organisaties h2 {
      font-size: var(--text-xl);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties h3 {
      font-size: var(--text-lg);
    }
    
    .post-digitale-transformatie-nederlandse-organisaties .conclusion {
      padding: var(--space-lg);
    }
  }

/* Base Styles for the Digitale Transformatie landing page */
.post-digitale-transformatie-nederlandse-organisaties {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
}

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

.post-digitale-transformatie-nederlandse-organisaties .breadcrumbs a {
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-digitale-transformatie-nederlandse-organisaties .breadcrumbs a:hover {
  color: var(--color-secondary);
}

.post-digitale-transformatie-nederlandse-organisaties .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero Section */
.post-digitale-transformatie-nederlandse-organisaties .post-hero {
  background-color: var(--color-accent);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  max-width: 90%;
}

.post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 80%;
  margin-bottom: 0;
  color: white;
}

/* Content Sections - Common Styles */
.post-digitale-transformatie-nederlandse-organisaties .content-section {
  padding: var(--section-spacing-desktop) 0;
}

.post-digitale-transformatie-nederlandse-organisaties .content-section h2 {
  margin-bottom: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-organisaties .content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.post-digitale-transformatie-nederlandse-organisaties .content-section h4 {
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* Section 1 - The Dutch Approach */
.post-digitale-transformatie-nederlandse-organisaties .section-challenges {
  background-color: white;
}

.post-digitale-transformatie-nederlandse-organisaties .content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-digitale-transformatie-nederlandse-organisaties .content-image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section 2 - Challenges and Success Factors */
.post-digitale-transformatie-nederlandse-organisaties .section-strategies {
  background-color: var(--color-neutral-light);
}

.post-digitale-transformatie-nederlandse-organisaties .success-factors {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.post-digitale-transformatie-nederlandse-organisaties .success-factors ul {
  list-style-type: none;
  padding-left: 0;
}

.post-digitale-transformatie-nederlandse-organisaties .success-factors li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
  font-family: var(--font-secondary);
  position: relative;
  padding-left: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-organisaties .success-factors li:last-child {
  border-bottom: none;
}

.post-digitale-transformatie-nederlandse-organisaties .success-factors li::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.post-digitale-transformatie-nederlandse-organisaties .case-study {
  margin-top: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-organisaties .case-study img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Implementation Strategies */
.post-digitale-transformatie-nederlandse-organisaties .section-implementation {
  background-color: white;
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps {
  background-color: var(--color-primary-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  position: relative;
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps li {
  counter-increment: step-counter;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0,119,182,0.2);
  font-family: var(--font-secondary);
  position: relative;
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.post-digitale-transformatie-nederlandse-organisaties .implementation-steps li::before {
  content: counter(step-counter);
  color: white;
  background-color: var(--color-primary);
  font-weight: bold;
  font-size: var(--text-sm);
  border-radius: var(--border-radius-circle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: calc(var(--space-md) + 2px);
}

.post-digitale-transformatie-nederlandse-organisaties .conclusion {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-secondary);
  margin-top: var(--space-2xl);
}

.post-digitale-transformatie-nederlandse-organisaties .conclusion h3 {
  margin-top: 0;
  color: var(--color-secondary);
}

/* Related Posts Section */
.post-digitale-transformatie-nederlandse-organisaties .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--section-spacing-desktop) 0;
  border-top: 1px solid var(--color-neutral-medium);
}

.post-digitale-transformatie-nederlandse-organisaties .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-digitale-transformatie-nederlandse-organisaties .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

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

.post-digitale-transformatie-nederlandse-organisaties .post-content {
  padding: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-organisaties .post-card h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-digitale-transformatie-nederlandse-organisaties .post-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}

.post-digitale-transformatie-nederlandse-organisaties .read-more {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-digitale-transformatie-nederlandse-organisaties .read-more:hover {
  color: var(--color-secondary-light);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-digitale-transformatie-nederlandse-organisaties .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
    font-size: var(--text-3xl);
    max-width: 100%;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
    font-size: var(--text-md);
    max-width: 100%;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .content-section {
    padding: var(--section-spacing-mobile) 0;
  }
}

@media (max-width: 767px) {
  .post-digitale-transformatie-nederlandse-organisaties .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-transformatie-nederlandse-organisaties .success-factors,
  .post-digitale-transformatie-nederlandse-organisaties .implementation-steps,
  .post-digitale-transformatie-nederlandse-organisaties .conclusion {
    padding: var(--space-lg);
  }
}

/* Base Styles for the Post Page */
.post-weerstand-verandering-aanpakken {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

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

.post-weerstand-verandering-aanpakken .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-weerstand-verandering-aanpakken .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero Section */
.post-weerstand-verandering-aanpakken .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-weerstand-verandering-aanpakken .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-weerstand-verandering-aanpakken .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 300;
  font-family: var(--font-secondary);
}

/* Content Sections */
.post-weerstand-verandering-aanpakken .content-section {
  padding: var(--section-spacing-desktop) 0;
}

.post-weerstand-verandering-aanpakken .section-content {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.post-weerstand-verandering-aanpakken .section-content.reverse {
  flex-direction: row-reverse;
}

.post-weerstand-verandering-aanpakken .text-content {
  flex: 1;
}

.post-weerstand-verandering-aanpakken .image-container {
  flex: 1;
}

.post-weerstand-verandering-aanpakken .image-container img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-weerstand-verandering-aanpakken .image-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Feature List */
.post-weerstand-verandering-aanpakken .feature-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-weerstand-verandering-aanpakken .feature-list li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  position: relative;
  line-height: 1.6;
}

.post-weerstand-verandering-aanpakken .feature-list li strong {
  color: var(--color-primary);
}

/* Strategy List */
.post-weerstand-verandering-aanpakken .strategy-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
  counter-reset: strategy-counter;
}

.post-weerstand-verandering-aanpakken .strategy-list li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  position: relative;
  padding-left: var(--space-lg);
  counter-increment: strategy-counter;
  line-height: 1.6;
}

.post-weerstand-verandering-aanpakken .strategy-list li::before {
  content: counter(strategy-counter);
  position: absolute;
  left: -25px;
  top: 0;
  background-color: var(--color-secondary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
}

.post-weerstand-verandering-aanpakken .strategy-list li strong {
  color: var(--color-secondary);
}

/* Accent Section */
.post-weerstand-verandering-aanpakken .bg-accent {
  background-color: var(--color-accent);
  color: white;
}

.post-weerstand-verandering-aanpakken .light-heading {
  color: white;
}

.post-weerstand-verandering-aanpakken .light-heading::after {
  background-color: var(--color-primary-light);
}

/* Action Cards */
.post-weerstand-verandering-aanpakken .action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.post-weerstand-verandering-aanpakken .action-card {
  background-color: white;
  color: var(--color-neutral-dark);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-weerstand-verandering-aanpakken .action-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-weerstand-verandering-aanpakken .action-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
}

.post-weerstand-verandering-aanpakken .action-card p {
  margin-bottom: var(--space-md);
}

.post-weerstand-verandering-aanpakken .action-card ul {
  padding-left: var(--space-lg);
}

.post-weerstand-verandering-aanpakken .action-card ul li {
  margin-bottom: var(--space-sm);
  font-family: var(--font-secondary);
}

/* Conclusion */
.post-weerstand-verandering-aanpakken .conclusion {
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-primary-light);
}

.post-weerstand-verandering-aanpakken .conclusion p {
  color: white;
  margin-bottom: var(--space-md);
}

.post-weerstand-verandering-aanpakken .conclusion p:last-child {
  margin-bottom: 0;
}

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

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

.post-weerstand-verandering-aanpakken .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

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

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

.post-weerstand-verandering-aanpakken .post-content {
  padding: var(--space-lg);
}

.post-weerstand-verandering-aanpakken .post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.post-weerstand-verandering-aanpakken .post-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  opacity: 0.8;
}

.post-weerstand-verandering-aanpakken .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-normal);
}

.post-weerstand-verandering-aanpakken .read-more:hover {
  color: var(--color-secondary);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-weerstand-verandering-aanpakken .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-weerstand-verandering-aanpakken .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-weerstand-verandering-aanpakken .action-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-weerstand-verandering-aanpakken .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-weerstand-verandering-aanpakken .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-weerstand-verandering-aanpakken .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-weerstand-verandering-aanpakken .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-weerstand-verandering-aanpakken .section-content {
    flex-direction: column;
  }
  
  .post-weerstand-verandering-aanpakken .section-content.reverse {
    flex-direction: column;
  }
  
  .post-weerstand-verandering-aanpakken .content-section {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .post-weerstand-verandering-aanpakken .action-cards {
    grid-template-columns: 1fr;
  }
  
  .post-weerstand-verandering-aanpakken .post-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.post-page .breadcrumbs a, 
.post-page .breadcrumbs span {
  color: var(--color-accent);
}

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

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

.post-page .post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(61, 90, 128, 0.95) 0%, rgba(43, 45, 66, 0.85) 100%);
  z-index: 1;
}

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

.post-page .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  line-height: 1.1;
  font-weight: 700;
}

.post-page .post-hero .lead {
  font-size: var(--text-lg);
  font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

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

.post-page .content-section h4 {
  color: var(--color-primary);
  margin: var(--space-xl) 0 var(--space-md);
}

/* Section 1: Foundations */
.post-page .section-foundations {
  background-color: white;
}

.post-page .content-with-image {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.post-page .principles-list li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-weight: 300;
}

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

/* Section 2: Implementation */
.post-page .section-implementation {
  background-color: var(--color-neutral-light);
}

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

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

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

.post-page .method-card h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--space-sm);
}

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

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

.post-page .case-study img {
  width: 100%;
  border-radius: var(--border-radius-md);
  margin-top: var(--space-lg);
}

/* Section 3: Challenges & Success Factors */
.post-page .section-challenges {
  background-color: white;
}

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

.post-page .challenges, 
.post-page .success-factors {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
}

.post-page .challenges {
  border-left: 4px solid var(--color-secondary);
}

.post-page .success-factors {
  border-left: 4px solid var(--color-primary);
}

.post-page .challenges h3, 
.post-page .success-factors h3 {
  margin-top: 0;
}

.post-page .challenges ul, 
.post-page .success-factors ul {
  padding-left: var(--space-lg);
}

.post-page .challenges li, 
.post-page .success-factors li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-weight: 300;
}

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

.post-page .key-takeaways h4 {
  color: var(--color-primary);
}

.post-page .key-takeaways p:last-child {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-page .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-spacing-desktop) 0;
  border-top: 1px solid var(--color-neutral-medium);
}

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

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

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

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

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

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

.post-page .read-more {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-page .content-with-image {
    grid-template-columns: 1fr;
  }
  
  .post-page .methods-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .challenges-success {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-md);
  }
}

@media (max-width: 767px) {
  .post-page .content-section {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .post-page .related-posts-section {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-page .case-study {
    padding: var(--space-lg);
  }
  
  .post-page .challenges, 
  .post-page .success-factors {
    padding: var(--space-lg);
  }
  
  .post-page .key-takeaways {
    padding: var(--space-lg);
  }
}

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

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

.privacy-page__header h1 {
  color: var(--color-accent);
  font-size: var(--text-4xl);
  position: relative;
  display: inline-block;
}

.privacy-page__header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--space-sm) auto 0;
}

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

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

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

.privacy-page__section h2::after {
  display: none;
}

.privacy-page__section p {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  line-height: 1.7;
}

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

.privacy-page__list li {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  position: relative;
}

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

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

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

@media (max-width: 767px) {
  .privacy-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .privacy-page__header h1 {
    font-size: var(--text-3xl);
  }
  
  .privacy-page__section h2 {
    font-size: var(--text-xl);
  }
}

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

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

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

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

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

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

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

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

.terms-page__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: var(--space-sm);
}

.terms-page p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

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

.terms-page__list li {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__title {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
  
  .terms-page p,
  .terms-page__list li {
    font-size: var(--text-sm);
  }
}

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

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

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

.thank-page__title {
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
  position: relative;
}

.thank-page__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--space-sm) auto 0;
}

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

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

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

.thank-page__button {
  font-weight: 600;
  padding: var(--space-md) var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.thank-page__card {
  width: 100%;
  max-width: 600px;
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  background-color: white;
  border-left: 4px solid var(--color-primary);
}

.thank-page__card-title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.thank-page__card-text {
  font-size: var(--text-base);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-2xl) 0;
  }
  
  .thank-page__text {
    font-size: var(--text-base);
    line-height: 1.6;
  }
  
  .thank-page__card {
    padding: var(--space-lg);
  }
}

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

  .error-404 .container {
    max-width: 800px;
    text-align: center;
  }

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .error-404__code {
    font-family: var(--font-primary);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    line-height: 1;
    letter-spacing: -0.05em;
    position: relative;
    text-shadow: var(--shadow-md);
  }

  .error-404__code::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: var(--space-md) auto 0;
  }

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

  .error-404__title::after {
    display: none;
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--text-md);
    color: var(--color-neutral-dark);
    max-width: 540px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
  }

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

  .error-404__decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
  }

  .error-404__line {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: rotate(-5deg);
  }

  .error-404__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-secondary-light);
    border-radius: var(--border-radius-circle);
  }

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

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

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

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

    .error-404__decoration {
      display: none;
    }
  }

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

  .error-404__content > * {
    animation: fadeIn var(--transition-normal) forwards;
    opacity: 0;
  }

  .error-404__code {
    animation-delay: 100ms;
  }

  .error-404__title {
    animation-delay: 200ms;
  }

  .error-404__message {
    animation-delay: 300ms;
  }

  .error-404__button {
    animation-delay: 400ms;
  }
