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

:root {
  /* Color Scheme - Modern Dutch-inspired with data visualization accents */
  --color-primary: #005C8F; /* Dutch blue, trustworthy */
  --color-secondary: #FF6B35; /* Vibrant orange for energy */
  --color-accent: #00C2A8; /* Teal accent for data elements */
  --color-neutral-light: #F7F9FC; /* Light background */
  --color-neutral-medium: #E4EBF5; /* Medium background */
  --color-neutral-dark: #263238; /* Dark text */
  --color-success: #2E7D32; /* Success messages */
  --color-warning: #FFC107; /* Warnings */
  --color-error: #D32F2F; /* Error states */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  /* Font Sizes - Desktop */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem;  /* 36px */
  --text-4xl: 2.75rem;  /* 44px */
  --text-5xl: 3.5rem;   /* 56px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  --space-4xl: 6rem;    /* 96px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-index layers */
  --z-negative: -1;
  --z-elevate: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-popover: 400;
  --z-tooltip: 500;
  
  /* Icon sizes */
  --icon-xs: 16px;
  --icon-sm: 20px;
  --icon-md: 24px;
  --icon-lg: 32px;
  --icon-xl: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Form elements */
input, 
textarea, 
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  width: 100%;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

.icon-xs {
  width: var(--icon-xs);
  height: var(--icon-xs);
}

.icon-sm {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

.icon-md {
  width: var(--icon-md);
  height: var(--icon-md);
}

.icon-lg {
  width: var(--icon-lg);
  height: var(--icon-lg);
}

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

/* Data visualization elements */
.data-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

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

.data-label {
  font-size: var(--text-sm);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Badges */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-pill);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

/* Media Queries */
@media (max-width: 767px) {
  :root {
    /* Adjust font sizes for mobile */
    --text-5xl: 2.5rem;  /* 40px */
    --text-4xl: 2rem;    /* 32px */
    --text-3xl: 1.75rem; /* 28px */
    --text-2xl: 1.5rem;  /* 24px */
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
  }
  
  .card {
    padding: var(--space-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    /* Adjust font sizes for tablet */
    --text-5xl: 3rem;    /* 48px */
    --text-4xl: 2.5rem;  /* 40px */
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}
.header {
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
  padding: var(--space-md) 0;
  width: 100%;
  font-family: var(--font-primary);
}

.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-wrapper {
  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-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-md);
  margin-right: var(--space-sm);
  color: white;
}

.header__excel-icon {
  width: 24px;
  height: 24px;
}

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

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

.header__logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-secondary);
  font-weight: 500;
}

.header__nav {
  display: flex;
  margin-left: var(--space-xl);
}

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

.header__nav-item {
  position: relative;
}

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

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

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

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

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

.header__data-pill {
  display: flex;
  align-items: center;
  background-color: var(--color-neutral-medium);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-pill);
  gap: var(--space-xs);
}

.header__data-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.header__data-svg {
  width: 16px;
  height: 16px;
}

.header__data-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-neutral-dark);
}

.header__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 1;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.header__cta-button:hover {
  background-color: #004a73;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.header__mobile-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-neutral-dark);
  transition: all var(--transition-normal);
}

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

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

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

.header__mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-neutral-dark);
}

.header__mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--color-neutral-dark);
}

.header__close-icon {
  width: 24px;
  height: 24px;
}

.header__mobile-nav {
  padding: var(--space-lg);
}

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

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

.header__mobile-link {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-neutral-dark);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  transition: color var(--transition-normal);
}

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

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

.header__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-base);
  line-height: 1;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  background-color: var(--color-primary);
  color: white;
  width: 100%;
}

.header__mobile-cta:hover {
  background-color: #004a73;
}

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

.header__mobile-small {
  font-size: var(--text-xs);
  color: var(--color-neutral-dark);
  text-decoration: none;
}

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

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__actions .header__cta-button {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__mobile-menu {
    display: flex;
  }
  
  .header__container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 767px) {
  .header__data-pill {
    display: none;
  }
  
  .header__logo-main {
    font-size: var(--text-base);
  }
  
  .header__logo-tagline {
    font-size: 10px;
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .header__excel-icon {
    width: 20px;
    height: 20px;
  }
  
  .header__container {
    padding: 0 var(--space-sm);
  }
}

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

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

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

.main .hero-content {
  position: relative;
  z-index: var(--z-elevate);
}

.main .hero h1 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
}

.main .hero-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

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

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

.main .hero-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

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

.main .hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
}

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.1;
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.main .hero-stats .data-card {
  flex: 1;
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

.main .section-description {
  font-size: var(--text-lg);
  color: #666;
  margin-bottom: var(--space-xl);
}

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

.main .post-card {
  background-color: 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;
  height: 100%;
}

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

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

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

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

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

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

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

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

.main .benefit-card {
  background-color: white;
  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);
  height: 100%;
}

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

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

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

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

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

.main .benefit-card p {
  color: #666;
}

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

.main .process-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.main .process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  position: relative;
}

.main .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 2px;
  height: calc(100% + var(--space-2xl));
  background-color: var(--color-primary);
  z-index: 1;
}

.main .step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-secondary);
  z-index: 2;
}

.main .process-step:nth-child(2) .step-number {
  background-color: var(--color-secondary);
}

.main .process-step:nth-child(3) .step-number {
  background-color: var(--color-accent);
}

.main .process-step:nth-child(4) .step-number {
  background-color: var(--color-neutral-dark);
}

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

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

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

.main .step-content img {
  width: 50%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.main .testimonial-rating {
  color: var(--color-warning);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.main .testimonial-text {
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: var(--space-lg);
  min-height: 150px;
}

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

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

/* Skills Section */
.main .skills {
  padding: var(--space-3xl) 0;
  background-color: white;
}

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

.main .skill-category {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .skill-header {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main .skill-category:nth-child(2) .skill-header {
  background-color: var(--color-secondary);
}

.main .skill-category:nth-child(3) .skill-header {
  background-color: var(--color-accent);
}

.main .skill-category:nth-child(4) .skill-header {
  background-color: var(--color-neutral-dark);
}

.main .skill-header i {
  font-size: var(--text-2xl);
}

.main .skill-header h3 {
  margin: 0;
  color: white;
}

.main .skill-list {
  list-style: none;
  padding: var(--space-lg);
  margin: 0;
}

.main .skill-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
}

.main .skill-check {
  color: var(--color-success);
  margin-right: var(--space-sm);
  font-size: var(--text-base);
}

.main .skill-category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

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

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

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

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

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

.main .contact-feature i {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-top: var(--space-xs);
}

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

.main .feature-text p {
  font-size: var(--text-base);
  margin-bottom: 0;
}

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

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

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

.main .form-privacy {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

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

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

.main .btn-full {
  width: 100%;
}

/* FAQ Section */
.main .faq {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.main .faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.main .faq-item {
  border: 1px solid #eee;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

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

.main .faq-question:hover {
  background-color: var(--color-neutral-medium);
}

.main .faq-question h3 {
  margin: 0;
  font-size: var(--text-md);
  font-weight: 600;
}

.main .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.main .faq-icon .fa-minus {
  display: none;
}

.main .faq-question.active .fa-plus {
  display: none;
}

.main .faq-question.active .fa-minus {
  display: block;
}

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

.main .faq-question.active + .faq-answer {
  padding: var(--space-lg);
  max-height: 1000px;
}

/* CTA Section */
.main .cta {
  padding: var(--space-3xl) 0;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
}

.main .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.main .cta h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.main .cta p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1023px) {
  .main .hero-grid,
  .main .benefits-grid,
  .main .testimonials-grid,
  .main .skills-grid,
  .main .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .main .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero {
    padding: var(--space-2xl) 0;
  }
  
  .main .hero h1 {
    font-size: var(--text-3xl);
  }
  
  .main .hero-description {
    font-size: var(--text-base);
  }
  
  .main .section-header {
    margin-bottom: var(--space-xl);
  }
  
  .main .section-description {
    font-size: var(--text-base);
  }
  
  .main .process-step {
    grid-template-columns: 60px 1fr;
  }
  
  .main .step-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
  }
  
  .main .process-step:not(:last-child)::after {
    top: 60px;
    left: 30px;
  }
  
  .main .testimonial-text {
    min-height: auto;
  }
}

.footer {
  position: relative;
  background-color: var(--color-primary);
  color: white;
  padding-top: var(--space-xl);
  overflow: hidden;
  margin-top: var(--space-4xl);
}

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

.footer__wave svg {
  width: 100%;
  height: 100%;
}

.footer__content {
  position: relative;
  z-index: var(--z-elevate);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__brand {
  max-width: 400px;
}

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

.footer__tagline {
  font-size: var(--text-base);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
}

.footer__data-visual {
  display: flex;
  align-items: flex-end;
  height: 50px;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__data-bar {
  flex: 1;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  transition: height var(--transition-normal);
}

.footer__data-bar:nth-child(1) {
  height: 60%;
  animation: dataBar 3s infinite alternate-reverse;
}

.footer__data-bar:nth-child(2) {
  height: 85%;
  animation: dataBar 3.5s 0.2s infinite alternate-reverse;
}

.footer__data-bar:nth-child(3) {
  height: 45%;
  animation: dataBar 3.2s 0.4s infinite alternate-reverse;
}

.footer__data-bar:nth-child(4) {
  height: 75%;
  animation: dataBar 2.8s 0.6s infinite alternate-reverse;
}

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

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

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

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

.footer__nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-base);
  padding: var(--space-xs) 0;
  transition: all var(--transition-normal);
  position: relative;
}

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

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

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

.footer__newsletter {
  margin: var(--space-xl) 0;
  padding: var(--space-xl) var(--space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__newsletter-title {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: white;
}

.footer__newsletter-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.footer__form {
  width: 100%;
}

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

.footer__input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer__input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.3);
}

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

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

.footer__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.5);
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.footer__legal-link:hover {
  color: white;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer__excel-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 40px);
  grid-template-rows: repeat(2, 40px);
  opacity: 0.15;
  transform: scale(3) translate(20%, 20%);
}

.footer__cell {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__cell:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.3);
}

.footer__cell:nth-child(4) {
  background-color: rgba(255, 255, 255, 0.2);
}

@keyframes dataBar {
  0% {
    height: var(--min-height, 40%);
  }
  100% {
    height: var(--max-height, 90%);
  }
}

.footer__data-bar:nth-child(1) {
  --min-height: 60%;
  --max-height: 85%;
}

.footer__data-bar:nth-child(2) {
  --min-height: 75%;
  --max-height: 95%;
}

.footer__data-bar:nth-child(3) {
  --min-height: 45%;
  --max-height: 70%;
}

.footer__data-bar:nth-child(4) {
  --min-height: 65%;
  --max-height: 90%;
}

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

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

  .footer__newsletter {
    flex-direction: row;
    align-items: center;
  }

  .footer__newsletter-content {
    flex: 1;
  }

  .footer__form {
    flex: 1;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__input-group {
    flex-direction: row;
  }
  
  .footer__input {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: var(--space-2xl);
  }
  
  .footer__wave {
    top: -80px;
    height: 80px;
  }
}

/* Privacy Policy Page Styles */
.privacy-page {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--color-neutral-light);
}

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

.privacy-page__header h1 {
  color: var(--color-primary);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.terms-page__header h1 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

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

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

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

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-md);
}

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  font-size: var(--text-base);
}

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

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

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__header h1 {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .terms-page__list {
    padding-left: var(--space-lg);
  }
}

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

.cookie-page__title {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-neutral-medium);
}

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

.cookie-page__section-title {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
  position: relative;
}

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

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

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

.cookie-page__text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

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

.cookie-page__list-item {
  margin-bottom: var(--space-sm);
  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);
}

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

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

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

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

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

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

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

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

.thank-page__message p {
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

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

/* Media queries for responsiveness */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
}

.category-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.category-page__hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.category-page__hero-description {
  font-size: var(--text-lg);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  position: relative;
}

.category-page__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.category-page__stats .data-card {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--color-accent);
}

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

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

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

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  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-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-neutral-medium);
}

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

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

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

/* Skills Section */
.category-page__skills {
  background-color: var(--color-neutral-medium);
  padding: var(--space-3xl) 0;
}

.category-page__skills h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.category-page__skills-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: center;
}

.category-page__skills-text {
  flex: 1;
  min-width: 300px;
}

.category-page__skills-image {
  flex: 1;
  min-width: 300px;
}

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

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

.category-page__skills-list li {
  display: flex;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.category-page__skills-icon {
  background-color: var(--color-accent);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-page__skills-info h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Approaches Section */
.category-page__approaches {
  padding: var(--space-3xl) 0;
}

.category-page__approaches h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  text-align: center;
}

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

.approach-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.approach-card__header {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.approach-card__icon {
  font-size: var(--text-2xl);
  background-color: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card__title {
  margin: 0;
  font-size: var(--text-lg);
}

.approach-card__content {
  padding: var(--space-lg);
}

.approach-card__content h4 {
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

.approach-card__content ul {
  padding-left: var(--space-lg);
}

.approach-card__content ul li {
  margin-bottom: var(--space-sm);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-2xl) 0;
  }
  
  .category-page__hero h1 {
    font-size: var(--text-3xl);
  }
  
  .category-page__hero-description {
    font-size: var(--text-base);
  }
  
  .category-page__stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__skills-content {
    flex-direction: column;
  }
  
  .category-page__skills-image {
    order: -1;
  }
  
  .category-page__approaches-cards {
    grid-template-columns: 1fr;
  }
}

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

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

/* Breadcrumbs Navigation */
.post-page .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-page .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.post-page .breadcrumbs span {
  color: var(--color-neutral-dark);
}

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

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

.post-page .post-hero .lead {
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.post-page .hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

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

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

/* Content Sections General Styles */
.post-page .content-section {
  padding: var(--space-3xl) 0;
}

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

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

.post-page .text-content,
.post-page .image-container {
  flex: 1;
}

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

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

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

.post-page h4 {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-sm);
}

/* Data Fundamentals Section */
.post-page .data-fundamentals {
  background-color: white;
}

.post-page .feature-list {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.post-page .feature-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
}

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

.post-page .feature-highlight {
  font-weight: 600;
  color: var(--color-primary);
}

/* Dashboard Creation Section */
.post-page .dashboard-creation {
  background-color: var(--color-neutral-light);
}

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

.post-page .step-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-page .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-page .step-number {
  background-color: var(--color-accent);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.post-page .step-content {
  flex: 1;
}

.post-page .step-content h4 {
  margin-bottom: var(--space-xs);
}

.post-page .step-content p {
  font-size: var(--text-sm);
  margin: 0;
}

/* Practical Applications Section */
.post-page .practical-applications {
  background-color: white;
  text-align: center;
}

.post-page .practical-applications h2,
.post-page .practical-applications > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.post-page .application-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: left;
}

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

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

.post-page .application-card h3,
.post-page .application-card p {
  padding: 0 var(--space-lg);
}

.post-page .application-card h3 {
  margin-top: var(--space-lg);
}

.post-page .application-card p {
  margin-bottom: var(--space-lg);
}

/* Key Takeaways */
.post-page .key-takeaways {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  text-align: left;
}

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

.post-page .takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.post-page .takeaway-icon {
  font-size: var(--text-2xl);
  line-height: 1;
}

.post-page .takeaway-item p {
  margin: 0;
}

/* CTA Container */
.post-page .cta-container {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0 var(--space-lg);
  text-align: center;
}

.post-page .cta-container h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.post-page .cta-container p {
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .cta-container .btn {
  margin-top: var(--space-md);
}

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

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

.post-page .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 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);
}

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

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

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

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

.post-page .post-card-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.post-page .post-link {
  display: inline-block;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.post-page .post-link:after {
  content: " →";
  transition: transform var(--transition-normal);
  display: inline-block;
}

.post-page .post-link:hover:after {
  transform: translateX(4px);
}

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

@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-page .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .post-page .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-page .applications-grid,
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .takeaways-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page h2 {
    font-size: var(--text-xl);
  }
  
  .post-page h3 {
    font-size: var(--text-lg);
  }
}

/* Base Styles for Excel Course Landing Page */
.post-excel-vba-macros-automatisering {
  overflow-x: hidden;
}

.post-excel-vba-macros-automatisering .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-excel-vba-macros-automatisering .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-excel-vba-macros-automatisering .breadcrumbs a:hover {
  color: var(--color-secondary);
}

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

.post-excel-vba-macros-automatisering .post-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.post-excel-vba-macros-automatisering .hero-content {
  flex: 1;
  z-index: var(--z-elevate);
}

.post-excel-vba-macros-automatisering .hero-image {
  flex: 1;
  position: relative;
}

.post-excel-vba-macros-automatisering .hero-img {
  width: 100%;
  max-width: 550px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.post-excel-vba-macros-automatisering .hero-img:hover {
  transform: rotate(0);
}

.post-excel-vba-macros-automatisering .post-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-excel-vba-macros-automatisering .lead {
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  max-width: 600px;
}

/* Content Sections */
.post-excel-vba-macros-automatisering .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-excel-vba-macros-automatisering .excel-basics {
  background-color: white;
}

.post-excel-vba-macros-automatisering .excel-formulas {
  background-color: var(--color-neutral-light);
}

.post-excel-vba-macros-automatisering .excel-data-analysis {
  background-color: white;
}

.post-excel-vba-macros-automatisering .excel-basics .container {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.post-excel-vba-macros-automatisering .section-content {
  flex: 3;
}

.post-excel-vba-macros-automatisering .section-image {
  flex: 2;
}

.post-excel-vba-macros-automatisering .content-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-macros-automatisering .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-excel-vba-macros-automatisering .feature-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-vba-macros-automatisering .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-macros-automatisering .feature-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-excel-vba-macros-automatisering h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.post-excel-vba-macros-automatisering h3 {
  color: var(--color-secondary);
  margin: var(--space-xl) 0 var(--space-md);
}

/* Formulas Section */
.post-excel-vba-macros-automatisering .formula-examples {
  margin-top: var(--space-xl);
}

.post-excel-vba-macros-automatisering .formula-list {
  list-style: none;
  padding: 0;
}

.post-excel-vba-macros-automatisering .formula-list li {
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-accent);
  transition: transform var(--transition-fast);
}

.post-excel-vba-macros-automatisering .formula-list li:hover {
  transform: translateX(5px);
}

.post-excel-vba-macros-automatisering .practical-example {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-macros-automatisering .example-steps {
  margin-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-excel-vba-macros-automatisering .example-steps li {
  margin-bottom: var(--space-md);
}

.post-excel-vba-macros-automatisering .section-image-full {
  margin-top: var(--space-2xl);
  text-align: center;
}

.post-excel-vba-macros-automatisering .formula-img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Data Analysis Section */
.post-excel-vba-macros-automatisering .data-analysis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-excel-vba-macros-automatisering .workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.post-excel-vba-macros-automatisering .workflow-step {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal);
}

.post-excel-vba-macros-automatisering .workflow-step:hover {
  transform: translateY(-5px);
}

.post-excel-vba-macros-automatisering .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-sm);
}

.post-excel-vba-macros-automatisering .workflow-step h4 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-excel-vba-macros-automatisering .conclusion {
  margin-top: var(--space-2xl);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-excel-vba-macros-automatisering .conclusion .btn {
  margin-top: var(--space-lg);
}

/* Related Posts */
.post-excel-vba-macros-automatisering .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--space-4xl) 0;
}

.post-excel-vba-macros-automatisering .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-excel-vba-macros-automatisering .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-excel-vba-macros-automatisering .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-excel-vba-macros-automatisering .post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-excel-vba-macros-automatisering .post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-excel-vba-macros-automatisering .post-content {
  padding: var(--space-lg);
}

.post-excel-vba-macros-automatisering .post-content h3 {
  font-size: var(--text-md);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-excel-vba-macros-automatisering .post-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.post-excel-vba-macros-automatisering .post-content .btn {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-excel-vba-macros-automatisering .post-hero .container,
  .post-excel-vba-macros-automatisering .excel-basics .container {
    flex-direction: column;
  }
  
  .post-excel-vba-macros-automatisering .hero-content,
  .post-excel-vba-macros-automatisering .hero-image,
  .post-excel-vba-macros-automatisering .section-content,
  .post-excel-vba-macros-automatisering .section-image {
    width: 100%;
  }
  
  .post-excel-vba-macros-automatisering .features-grid,
  .post-excel-vba-macros-automatisering .data-analysis-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-excel-vba-macros-automatisering .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-excel-vba-macros-automatisering .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-excel-vba-macros-automatisering .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-excel-vba-macros-automatisering .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-excel-vba-macros-automatisering .features-grid,
  .post-excel-vba-macros-automatisering .data-analysis-cards,
  .post-excel-vba-macros-automatisering .workflow-steps,
  .post-excel-vba-macros-automatisering .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-excel-vba-macros-automatisering .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-excel-vba-macros-automatisering .lead {
    font-size: var(--text-base);
  }
}

/* Base Styles */
.post-excel-vba-macros-automatiseren {
  color: var(--color-neutral-dark);
}

/* Breadcrumbs */
.post-excel-vba-macros-automatiseren .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-excel-vba-macros-automatiseren .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-excel-vba-macros-automatiseren .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-excel-vba-macros-automatiseren .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
}

.post-excel-vba-macros-automatiseren .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-excel-vba-macros-automatiseren .post-hero .lead {
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Sections */
.post-excel-vba-macros-automatiseren .content-section {
  padding: var(--space-4xl) 0;
}

.post-excel-vba-macros-automatiseren .section-light {
  background-color: white;
}

.post-excel-vba-macros-automatiseren .section-accent {
  background-color: var(--color-neutral-light);
  position: relative;
}

.post-excel-vba-macros-automatiseren h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.post-excel-vba-macros-automatiseren h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-excel-vba-macros-automatiseren h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

.post-excel-vba-macros-automatiseren p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* Section 1 Layout */
.post-excel-vba-macros-automatiseren .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-excel-vba-macros-automatiseren .text-content {
  flex: 1;
}

.post-excel-vba-macros-automatiseren .image-container {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-excel-vba-macros-automatiseren .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
}

/* Use Cases Section */
.post-excel-vba-macros-automatiseren .use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-excel-vba-macros-automatiseren .use-case-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-vba-macros-automatiseren .use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-excel-vba-macros-automatiseren .use-case-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-excel-vba-macros-automatiseren .use-case-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-excel-vba-macros-automatiseren .use-case-card li {
  margin-bottom: var(--space-sm);
}

/* Example Container */
.post-excel-vba-macros-automatiseren .example-container {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-2xl);
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-macros-automatiseren .example-text {
  flex: 1;
}

/* Getting Started Section */
.post-excel-vba-macros-automatiseren .getting-started {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-excel-vba-macros-automatiseren .step-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-secondary);
}

.post-excel-vba-macros-automatiseren .step-card h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-excel-vba-macros-automatiseren .step-card ol {
  padding-left: var(--space-lg);
}

.post-excel-vba-macros-automatiseren .step-card li {
  margin-bottom: var(--space-sm);
}

/* Tips Section */
.post-excel-vba-macros-automatiseren .tips-section h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-excel-vba-macros-automatiseren .tips-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.post-excel-vba-macros-automatiseren .tip-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
}

.post-excel-vba-macros-automatiseren .tip-card h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* Related Posts Section */
.post-excel-vba-macros-automatiseren .related-posts-section {
  background-color: var(--color-neutral-medium);
  padding: var(--space-3xl) 0;
}

.post-excel-vba-macros-automatiseren .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-excel-vba-macros-automatiseren .related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-excel-vba-macros-automatiseren .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-vba-macros-automatiseren .post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-excel-vba-macros-automatiseren .post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-excel-vba-macros-automatiseren .post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-excel-vba-macros-automatiseren .btn-outline {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  color: var(--color-primary);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-normal);
}

.post-excel-vba-macros-automatiseren .btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-excel-vba-macros-automatiseren .use-cases,
  .post-excel-vba-macros-automatiseren .getting-started,
  .post-excel-vba-macros-automatiseren .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-excel-vba-macros-automatiseren .section-content {
    flex-direction: column;
  }
  
  .post-excel-vba-macros-automatiseren .example-container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .post-excel-vba-macros-automatiseren .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-excel-vba-macros-automatiseren .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-excel-vba-macros-automatiseren .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-excel-vba-macros-automatiseren .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-excel-vba-macros-automatiseren h2 {
    font-size: var(--text-2xl);
  }
  
  .post-excel-vba-macros-automatiseren .use-cases,
  .post-excel-vba-macros-automatiseren .getting-started,
  .post-excel-vba-macros-automatiseren .tips-container,
  .post-excel-vba-macros-automatiseren .related-posts {
    grid-template-columns: 1fr;
  }
}

/* Base Styles for the Excel Formulas Masterclass Page */
.post-excel-formules-functies-masterclass {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  overflow-x: hidden;
}

/* Breadcrumbs Navigation */
.post-excel-formules-functies-masterclass .breadcrumbs {
  background-color: var(--color-neutral-medium);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
}

.post-excel-formules-functies-masterclass .breadcrumbs .container {
  display: flex;
  align-items: center;
}

.post-excel-formules-functies-masterclass .breadcrumbs a {
  color: var(--color-primary);
  margin-right: var(--space-xs);
  text-decoration: none;
}

.post-excel-formules-functies-masterclass .breadcrumbs a:hover {
  color: var(--color-secondary);
}

.post-excel-formules-functies-masterclass .breadcrumbs span {
  color: var(--color-neutral-dark);
  font-weight: 500;
}

/* Hero Section */
.post-excel-formules-functies-masterclass .post-hero {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.post-excel-formules-functies-masterclass .post-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.post-excel-formules-functies-masterclass .post-hero .container {
  max-width: 900px;
}

.post-excel-formules-functies-masterclass .badge {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.post-excel-formules-functies-masterclass .post-hero h1 {
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  color: var(--color-primary);
}

.post-excel-formules-functies-masterclass .post-hero .lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  color: var(--color-neutral-dark);
}

.post-excel-formules-functies-masterclass .post-hero .btn {
  margin-top: var(--space-md);
}

/* Content Sections */
.post-excel-formules-functies-masterclass .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-excel-formules-functies-masterclass .content-section.bg-light {
  background-color: var(--color-neutral-light);
}

.post-excel-formules-functies-masterclass .content-section.bg-primary {
  background-color: var(--color-primary);
  color: white;
}

.post-excel-formules-functies-masterclass .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  font-size: var(--text-3xl);
  text-align: center;
}

.post-excel-formules-functies-masterclass .content-section.bg-primary h2 {
  color: white;
}

.post-excel-formules-functies-masterclass .content-section h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
  color: var(--color-primary);
}

.post-excel-formules-functies-masterclass .content-section.bg-primary h3 {
  color: white;
}

.post-excel-formules-functies-masterclass .light-heading {
  color: white !important;
}

/* Section Grid Layout */
.post-excel-formules-functies-masterclass .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-excel-formules-functies-masterclass .section-content {
  padding-right: var(--space-lg);
}

.post-excel-formules-functies-masterclass .section-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Data Highlights */
.post-excel-formules-functies-masterclass .data-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.post-excel-formules-functies-masterclass .data-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-left: 4px solid var(--color-accent);
}

.post-excel-formules-functies-masterclass .data-number {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.post-excel-formules-functies-masterclass .data-label {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.4;
}

/* Formula Cards Grid */
.post-excel-formules-functies-masterclass .formula-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-excel-formules-functies-masterclass .formula-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-formules-functies-masterclass .formula-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-excel-formules-functies-masterclass .formula-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-excel-formules-functies-masterclass .formula-list {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-excel-formules-functies-masterclass .formula-list li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.post-excel-formules-functies-masterclass .formula-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Full Width Image */
.post-excel-formules-functies-masterclass .section-image-full {
  margin-top: var(--space-2xl);
}

.post-excel-formules-functies-masterclass .full-width-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Benefits Grid */
.post-excel-formules-functies-masterclass .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-excel-formules-functies-masterclass .benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-excel-formules-functies-masterclass .benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  overflow: hidden;
}

.post-excel-formules-functies-masterclass .benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-excel-formules-functies-masterclass .benefit-item h3 {
  margin-bottom: var(--space-sm);
  color: white;
}

.post-excel-formules-functies-masterclass .benefit-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Section */
.post-excel-formules-functies-masterclass .testimonial-section {
  margin: var(--space-2xl) 0;
}

.post-excel-formules-functies-masterclass .testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.post-excel-formules-functies-masterclass .testimonial::before {
  content: "";
  font-family: var(--font-secondary);
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(255, 255, 255, 0.2);
}

.post-excel-formules-functies-masterclass .testimonial-quote {
  font-style: italic;
  margin-bottom: var(--space-lg);
  font-size: var(--text-md);
  line-height: 1.6;
  color: white;
}

.post-excel-formules-functies-masterclass .testimonial-author {
  display: flex;
  align-items: center;
}

.post-excel-formules-functies-masterclass .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-md);
  object-fit: cover;
}

.post-excel-formules-functies-masterclass .testimonial-info {
  color: white;
}

.post-excel-formules-functies-masterclass .testimonial-name {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.post-excel-formules-functies-masterclass .testimonial-role {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* CTA Container */
.post-excel-formules-functies-masterclass .cta-container {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
}

.post-excel-formules-functies-masterclass .cta-heading {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-excel-formules-functies-masterclass .cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Related Posts Section */
.post-excel-formules-functies-masterclass .related-posts-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
}

.post-excel-formules-functies-masterclass .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-primary);
}

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

.post-excel-formules-functies-masterclass .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);
}

.post-excel-formules-functies-masterclass .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-excel-formules-functies-masterclass .related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-excel-formules-functies-masterclass .related-post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--text-md);
  color: var(--color-primary);
}

.post-excel-formules-functies-masterclass .related-post-card p {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
}

.post-excel-formules-functies-masterclass .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-excel-formules-functies-masterclass .section-grid,
  .post-excel-formules-functies-masterclass .formula-grid,
  .post-excel-formules-functies-masterclass .benefits-grid,
  .post-excel-formules-functies-masterclass .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-excel-formules-functies-masterclass .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-excel-formules-functies-masterclass .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-excel-formules-functies-masterclass .content-section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 767px) {
  .post-excel-formules-functies-masterclass .section-grid,
  .post-excel-formules-functies-masterclass .formula-grid,
  .post-excel-formules-functies-masterclass .data-highlight,
  .post-excel-formules-functies-masterclass .benefits-grid,
  .post-excel-formules-functies-masterclass .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-excel-formules-functies-masterclass .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-excel-formules-functies-masterclass .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-excel-formules-functies-masterclass .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-excel-formules-functies-masterclass .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-excel-formules-functies-masterclass .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-excel-formules-functies-masterclass .section-content {
    padding-right: 0;
  }
  
  .post-excel-formules-functies-masterclass .cta-container {
    padding: var(--space-xl);
  }
}

/* Base Styles for Excel Finance Page */
.post-geavanceerde-excel-formules-functies {
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

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

.post-geavanceerde-excel-formules-functies .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-geavanceerde-excel-formules-functies .breadcrumbs a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.post-geavanceerde-excel-formules-functies .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero Section */
.post-geavanceerde-excel-formules-functies .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-geavanceerde-excel-formules-functies .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  line-height: 1.2;
}

.post-geavanceerde-excel-formules-functies .post-hero .lead {
  font-size: var(--text-xl);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.post-geavanceerde-excel-formules-functies .hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.post-geavanceerde-excel-formules-functies .hero-cta .btn-outline {
  border-color: white;
  color: white;
}

.post-geavanceerde-excel-formules-functies .hero-cta .btn-outline:hover {
  background-color: white;
  color: var(--color-primary);
}

/* Content Sections */
.post-geavanceerde-excel-formules-functies .content-section {
  padding: var(--space-3xl) 0;
}

.post-geavanceerde-excel-formules-functies .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-geavanceerde-excel-formules-functies .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

/* Finance Models Section */
.post-geavanceerde-excel-formules-functies .finance-models-section {
  background-color: white;
}

.post-geavanceerde-excel-formules-functies .section-text {
  flex: 1;
}

.post-geavanceerde-excel-formules-functies .section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.post-geavanceerde-excel-formules-functies .feature-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-geavanceerde-excel-formules-functies .feature-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-geavanceerde-excel-formules-functies .feature-list li strong {
  color: var(--color-primary);
}

/* Scenario Analysis Section */
.post-geavanceerde-excel-formules-functies .scenario-analysis-section {
  background-color: var(--color-neutral-light);
}

.post-geavanceerde-excel-formules-functies .techniques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.post-geavanceerde-excel-formules-functies .technique-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-geavanceerde-excel-formules-functies .technique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-geavanceerde-excel-formules-functies .data-number {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.post-geavanceerde-excel-formules-functies .technique-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

/* Reporting Section */
.post-geavanceerde-excel-formules-functies .reporting-section {
  background-color: white;
  text-align: center;
}

.post-geavanceerde-excel-formules-functies .reporting-section > .container > p {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-lg);
}

.post-geavanceerde-excel-formules-functies .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-geavanceerde-excel-formules-functies .benefit-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-geavanceerde-excel-formules-functies .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-geavanceerde-excel-formules-functies .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background-color: var(--color-primary);
  border-radius: 50%;
}

.post-geavanceerde-excel-formules-functies .icon-wrapper .icon {
  color: white;
  font-size: var(--text-2xl);
}

.post-geavanceerde-excel-formules-functies .benefit-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

/* Testimonial */
.post-geavanceerde-excel-formules-functies .testimonial-container {
  margin: var(--space-2xl) 0;
}

.post-geavanceerde-excel-formules-functies .testimonial {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.post-geavanceerde-excel-formules-functies .quote {
  font-size: var(--text-lg);
  font-style: italic;
  position: relative;
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-geavanceerde-excel-formules-functies .quote::before,
.post-geavanceerde-excel-formules-functies .quote::after {
  content: '"';
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  position: absolute;
}

.post-geavanceerde-excel-formules-functies .quote::before {
  left: 0;
  top: -10px;
}

.post-geavanceerde-excel-formules-functies .quote::after {
  right: 0;
  bottom: -10px;
}

.post-geavanceerde-excel-formules-functies .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.post-geavanceerde-excel-formules-functies .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-geavanceerde-excel-formules-functies .author-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.post-geavanceerde-excel-formules-functies .author-details strong {
  font-weight: 600;
  color: var(--color-primary);
}

.post-geavanceerde-excel-formules-functies .author-details span {
  font-size: var(--text-sm);
  color: #666;
}

/* Conclusion */
.post-geavanceerde-excel-formules-functies .conclusion {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  text-align: left;
}

.post-geavanceerde-excel-formules-functies .conclusion h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-geavanceerde-excel-formules-functies .cta-container {
  margin-top: var(--space-xl);
  text-align: center;
}

/* Related Posts Section */
.post-geavanceerde-excel-formules-functies .related-posts-section {
  background-color: var(--color-neutral-medium);
  padding: var(--space-3xl) 0;
}

.post-geavanceerde-excel-formules-functies .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.post-geavanceerde-excel-formules-functies .related-post-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-geavanceerde-excel-formules-functies .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-geavanceerde-excel-formules-functies .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-geavanceerde-excel-formules-functies .related-post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-geavanceerde-excel-formules-functies .related-post-card h3 a:hover {
  color: var(--color-secondary);
}

.post-geavanceerde-excel-formules-functies .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-geavanceerde-excel-formules-functies .read-more {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.post-geavanceerde-excel-formules-functies .read-more::after {
  content: "→";
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-geavanceerde-excel-formules-functies .read-more:hover::after {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-geavanceerde-excel-formules-functies .benefits-grid,
  .post-geavanceerde-excel-formules-functies .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-geavanceerde-excel-formules-functies .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-geavanceerde-excel-formules-functies .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-geavanceerde-excel-formules-functies .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-geavanceerde-excel-formules-functies .hero-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .post-geavanceerde-excel-formules-functies .section-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .post-geavanceerde-excel-formules-functies .techniques-grid,
  .post-geavanceerde-excel-formules-functies .benefits-grid,
  .post-geavanceerde-excel-formules-functies .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-geavanceerde-excel-formules-functies .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-geavanceerde-excel-formules-functies .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-geavanceerde-excel-formules-functies .scenario-analysis-section .section-content {
    flex-direction: column-reverse;
  }
}

/* Special Hover Effects */
.post-geavanceerde-excel-formules-functies .btn {
  position: relative;
  overflow: hidden;
}

.post-geavanceerde-excel-formules-functies .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.post-geavanceerde-excel-formules-functies .btn:hover::after {
  transform: translateX(0);
}

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

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

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

.privacy-page__last-updated {
  margin-bottom: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

.terms-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  opacity: 0.7;
  font-style: italic;
}

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__list {
    padding-left: var(--space-lg);
  }
  
  .terms-page__list li {
    margin-bottom: var(--space-sm);
  }
}

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

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

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-md);
}

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

.cookie-page__intro {
  margin-bottom: var(--space-xl);
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
}

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

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

.cookie-page__subtitle:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-top: var(--space-xs);
}

.cookie-page__card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--color-primary);
}

.cookie-page__card-title {
  color: var(--color-primary);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

@media (max-width: 767px) {
  .cookie-page__container {
    padding: var(--space-xl) var(--space-md);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__subtitle {
    font-size: var(--text-lg);
  }
  
  .cookie-page__card {
    padding: var(--space-md);
  }
}

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

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

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

.thank-page__icon {
  margin: 0 auto var(--space-xl);
  color: var(--color-primary);
  background-color: var(--color-neutral-light);
  width: var(--icon-xl);
  height: var(--icon-xl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.thank-page__message {
  margin-bottom: var(--space-xl);
  font-size: var(--text-md);
  color: var(--color-neutral-dark);
}

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

.thank-page__data-card {
  margin: var(--space-xl) auto;
  max-width: 400px;
}

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

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

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

  .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__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404__code {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
  }

  .error-404__digit {
    font-family: var(--font-secondary);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
  }

  .error-404__icon {
    margin: 0 var(--space-sm);
    animation: pulse 3s infinite ease-in-out;
  }

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

  .error-404__message {
    font-size: var(--text-md);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-xl);
    max-width: 90%;
  }

  .error-404__button {
    transition: all var(--transition-normal);
  }

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

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  /* Media Queries */
  @media (max-width: 767px) {
    .error-404__digit {
      font-size: 5rem;
    }

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

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

    .error-404__icon {
      transform: scale(0.8);
    }
  }
