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

:root {
  /* Color Scheme - Dutch-inspired with professional tech accent */
  --color-primary: #1E88E5;       /* Dutch blue */
  --color-secondary: #FF5722;     /* Vibrant orange - Dutch national color */
  --color-tertiary: #4CAF50;      /* Excel green */
  --color-neutral-dark: #263238;  /* Dark slate for text */
  --color-neutral-light: #ECEFF1; /* Light background */
  --color-accent: #7C4DFF;        /* Purple accent for highlights */
  --color-background: #FFFFFF;    /* White background */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  
  /* Font Sizes - Desktop */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */
  
  /* Spacing */
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2rem;     /* 32px */
  --spacing-2xl: 2.5rem;  /* 40px */
  --spacing-3xl: 3rem;    /* 48px */
  --spacing-4xl: 4rem;    /* 64px */
  --spacing-5xl: 5rem;    /* 80px */
  --spacing-6xl: 7.5rem;  /* 120px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Icon Sizes */
  --icon-xs: 1rem;    /* 16px */
  --icon-sm: 1.25rem; /* 20px */
  --icon-md: 1.5rem;  /* 24px */
  --icon-lg: 2rem;    /* 32px */
  --icon-xl: 2.5rem;  /* 40px */
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.8;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-dark);
  background-color: var(--color-background);
}

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

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

h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--spacing-xl);
}

h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-lg);
}

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

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

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

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

p {
  margin-bottom: var(--spacing-md);
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  text-decoration: none;
}

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

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

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

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

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

.btn-tertiary:hover {
  background-color: rgba(30, 136, 229, 0.1);
}

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

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

.icon-text i, 
.icon-text .fas,
.icon-text .far,
.icon-text .fab {
  margin-right: var(--spacing-sm);
}

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

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

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

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

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

/* Card styling */
.card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
  transition: var(--transition-normal);
}

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

/* Section spacing */
.section {
  padding: var(--spacing-6xl) 0;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  :root {
    --text-5xl: 2.5rem;  /* 40px */
    --text-4xl: 2rem;    /* 32px */
    --text-3xl: 1.75rem; /* 28px */
  }
  
  .section {
    padding: var(--spacing-5xl) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --text-5xl: 2rem;    /* 32px */
    --text-4xl: 1.75rem; /* 28px */
    --text-3xl: 1.5rem;  /* 24px */
    --text-2xl: 1.25rem; /* 20px */
  }
  
  h1, h2, h3 {
    margin-bottom: var(--spacing-md);
  }
  
  .section {
    padding: var(--spacing-4xl) 0;
  }
  
  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
  }
}
/* Header Styles */
.header {
  padding: var(--spacing-md) 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-neutral-light);
  font-family: var(--font-primary);
}

.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo Styles */
.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-neutral-dark);
  transition: var(--transition-fast);
}

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

.header__logo-icon {
  font-size: var(--icon-md);
  color: var(--color-tertiary);
  margin-right: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-text {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: -0.5px;
}

.header__logo-accent {
  color: var(--color-primary);
  margin-left: var(--spacing-xs);
}

/* Navigation Styles */
.header__nav {
  margin-left: auto;
}

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

.header__nav-item {
  margin: 0 var(--spacing-md);
}

.header__nav-link {
  color: var(--color-neutral-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: var(--transition-normal);
}

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

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

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

/* Actions Styles */
.header__actions {
  display: flex;
  align-items: center;
  margin-left: var(--spacing-xl);
}

.header__cta {
  font-size: var(--text-sm);
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: var(--radius-pill);
}

/* Mobile Toggle Button */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: var(--spacing-md);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

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

.header__mobile-icon,
.header__mobile-icon::before,
.header__mobile-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-neutral-dark);
  position: absolute;
  transition: var(--transition-normal);
}

.header__mobile-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__mobile-icon::before,
.header__mobile-icon::after {
  content: '';
  left: 0;
}

.header__mobile-icon::before {
  top: -8px;
}

.header__mobile-icon::after {
  bottom: -8px;
}

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

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

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

.header__mobile-logo {
  display: flex;
  align-items: center;
}

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

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

.header__close-icon,
.header__close-icon::before {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-neutral-dark);
  position: absolute;
  top: 50%;
  left: 50%;
}

.header__close-icon {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__close-icon::before {
  content: '';
  transform: rotate(90deg);
}

.header__mobile-nav {
  padding: var(--spacing-lg) var(--spacing-md);
  flex-grow: 1;
}

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

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

.header__mobile-link {
  color: var(--color-neutral-dark);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  display: block;
  padding: var(--spacing-xs) 0;
  transition: var(--transition-fast);
}

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

.header__mobile-footer {
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid var(--color-neutral-light);
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .header__nav-item {
    margin: 0 var(--spacing-sm);
  }
  
  .header__nav-link {
    font-size: var(--text-xs);
  }
  
  .header__cta {
    font-size: var(--text-xs);
    padding: var(--spacing-xs) var(--spacing-md);
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__mobile-menu {
    display: flex;
  }
  
  .header__logo-text {
    font-size: var(--text-lg);
  }
}

/* Dutch-inspired accent styles */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-primary) 33%, 
    var(--color-background) 33%,
    var(--color-background) 34%,
    var(--color-tertiary) 34%,
    var(--color-tertiary) 67%,
    var(--color-background) 67%,
    var(--color-background) 68%,
    var(--color-secondary) 68%,
    var(--color-secondary) 100%
  );
}

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

/* Hero Section */
.main .hero-section {
  position: relative;
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--color-neutral-light) 0%, #ffffff 100%);
  overflow: hidden;
}

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

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

.main .hero-content h1 {
  color: var(--color-neutral-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
}

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

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

.main .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.main .hero-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.main .hero-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background-color: white;
}

.main .hero-feature i {
  color: var(--color-primary);
  font-size: var(--icon-sm);
}

.main .hero-feature span {
  font-weight: var(--weight-medium);
  color: var(--color-neutral-dark);
}

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

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

.main .hero-shape {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-slow);
}

.main .hero-shape:hover {
  transform: rotate(0deg) scale(1.02);
}

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

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

.main .hero-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.main .excel-element {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.main .excel-element i {
  font-size: var(--icon-md);
}

.main .excel-element-1 {
  top: 10%;
  left: -5%;
  background-color: rgba(255, 255, 255, 0.9);
  animation-delay: 0s;
}

.main .excel-element-1 i {
  color: var(--color-primary);
}

.main .excel-element-2 {
  bottom: 15%;
  left: -8%;
  background-color: rgba(255, 255, 255, 0.9);
  animation-delay: 1s;
}

.main .excel-element-2 i {
  color: var(--color-secondary);
}

.main .excel-element-3 {
  top: 20%;
  right: -5%;
  background-color: rgba(255, 255, 255, 0.9);
  animation-delay: 2s;
}

.main .excel-element-3 i {
  color: var(--color-tertiary);
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FFFFFF' opacity='1'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

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

.main .section-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

.main .post-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-neutral-dark);
  line-height: 1.3;
}

.main .post-content p {
  margin-bottom: var(--spacing-lg);
  color: var(--color-neutral-dark);
  flex-grow: 1;
}

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

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

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

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

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

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

.main .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-4xl);
}

.main .benefit-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  text-align: center;
}

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

.main .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.1);
}

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

.main .benefit-card:nth-child(2) .benefit-icon {
  background-color: rgba(255, 87, 34, 0.1);
}

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

.main .benefit-card:nth-child(3) .benefit-icon {
  background-color: rgba(76, 175, 80, 0.1);
}

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

.main .benefit-card:nth-child(4) .benefit-icon {
  background-color: rgba(124, 77, 255, 0.1);
}

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

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

.main .benefit-card p {
  color: var(--color-neutral-dark);
  line-height: var(--line-height-loose);
}

.main .benefits-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main .highlight-content {
  padding: var(--spacing-xl);
}

.main .highlight-content h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-neutral-dark);
}

.main .highlight-content p {
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
}

.main .highlight-image {
  height: 100%;
  overflow: hidden;
}

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

/* Approach Section */
.main .approach-section {
  padding: var(--spacing-6xl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

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

.main .approach-content h2 {
  margin-bottom: var(--spacing-lg);
}

.main .approach-steps {
  margin-top: var(--spacing-2xl);
}

.main .approach-step {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.main .approach-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% + var(--spacing-xl) - 50px);
  background-color: rgba(30, 136, 229, 0.2);
  z-index: 1;
}

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

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

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

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

.main .step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-sm);
}

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

.main .approach-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.main .approach-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: var(--transition-normal);
}

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

.main .approach-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.main .approach-decoration-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: rgba(30, 136, 229, 0.1);
  z-index: 1;
}

.main .approach-decoration-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: rgba(255, 87, 34, 0.1);
  z-index: 1;
}

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

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

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

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

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

.main .testimonial-quote {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  color: rgba(30, 136, 229, 0.1);
  font-size: 4rem;
  line-height: 1;
}

.main .testimonial-content p {
  position: relative;
  z-index: 2;
  font-style: italic;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.main .testimonial-rating {
  display: flex;
  gap: 4px;
}

.main .testimonial-rating i {
  color: #FFD700;
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg);
  background-color: rgba(30, 136, 229, 0.05);
  gap: var(--spacing-md);
}

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

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

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

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

/* Contact Section */
.main .contact-section {
  padding: var(--spacing-6xl) 0;
  background-color: var(--color-background);
  position: relative;
}

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

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

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

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

.main .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.1);
  flex-shrink: 0;
}

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

.main .contact-feature:nth-child(2) .feature-icon {
  background-color: rgba(255, 87, 34, 0.1);
}

.main .contact-feature:nth-child(2) .feature-icon i {
  color: var(--color-secondary);
}

.main .contact-feature:nth-child(3) .feature-icon {
  background-color: rgba(76, 175, 80, 0.1);
}

.main .contact-feature:nth-child(3) .feature-icon i {
  color: var(--color-tertiary);
}

.main .feature-text h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
}

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

.main .contact-form-container {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-2deg);
  transition: var(--transition-normal);
}

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

.main .contact-form {
  padding: var(--spacing-xl);
}

.main .form-group {
  margin-bottom: var(--spacing-lg);
}

.main .form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--weight-medium);
  color: var(--color-neutral-dark);
}

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid rgba(38, 50, 56, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  transition: var(--transition-fast);
}

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

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

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

.main .form-checkbox label {
  margin-bottom: 0;
  font-weight: var(--weight-regular);
}

.main .form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  font-size: var(--text-lg);
  margin-top: var(--spacing-lg);
}

.main .form-submit i {
  transition: var(--transition-normal);
}

.main .form-submit:hover i {
  transform: translateX(4px);
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-neutral-dark);
  color: white;
  padding: var(--spacing-lg);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.main .cookie-banner.show {
  transform: translateY(0);
}

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

.main .cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
  
  .main .hero-content {
    text-align: center;
    order: 2;
  }
  
  .main .hero-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .hero-features {
    justify-content: center;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    order: 1;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .approach-grid,
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-highlight {
    grid-template-columns: 1fr;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main .posts-grid,
  .main .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
  
  .main .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .main .hero-feature {
    width: 100%;
    justify-content: center;
  }
  
  .main .contact-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .main .approach-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .main .approach-step:not(:last-child)::after {
    display: none;
  }
  
  .main .step-content {
    text-align: center;
  }
}

.footer {
  position: relative;
  background-color: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
  font-family: var(--font-secondary);
  margin-top: var(--spacing-5xl);
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 200%;
  height: 50px;
  transform: rotate(180deg);
  color: var(--color-background);

}

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

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

.footer__brand {
  grid-column: 1 / 2;
}

.footer__title {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  color: var(--color-background);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

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

.footer__tagline {
  color: var(--color-neutral-light);
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-md);
  max-width: 90%;
}

.footer__excel-icon {
  display: inline-block;
  margin-top: var(--spacing-md);
  font-size: var(--icon-lg);
  color: var(--color-tertiary);
  background-color: rgba(76, 175, 80, 0.1);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.footer__excel-icon:hover {
  transform: translateY(-5px) rotate(5deg);
  background-color: rgba(76, 175, 80, 0.2);
}

.footer__navigation {
  grid-column: 2 / 3;
}

.footer__resources {
  grid-column: 3 / 4;
}

.footer__newsletter {
  grid-column: 4 / 5;
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

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

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

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

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

.footer__nav-link:hover {
  color: var(--color-background);
  transform: translateX(var(--spacing-xs));
}

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

.footer__newsletter-text {
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-md);
}

.footer__input-group {
  display: flex;
  position: relative;
}

.footer__input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-background);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  transition: var(--transition-normal);
}

.footer__input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

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

.footer__submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 var(--spacing-md);
  background-color: var(--color-tertiary);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-neutral-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer__submit:hover {
  background-color: #5BBD60;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.05) 0%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.05) 100%);
  margin: var(--spacing-xl) 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.footer__formula {
  background-color: rgba(30, 136, 229, 0.15);
  border-radius: var(--radius-md);
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: "Consolas", monospace;
  color: var(--color-primary);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  border-left: 2px solid var(--color-primary);
  transition: var(--transition-normal);
}

.footer__formula:hover {
  transform: translateY(-2px);
  background-color: rgba(30, 136, 229, 0.25);
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__brand {
    grid-column: 1 / 2;
  }
  
  .footer__navigation {
    grid-column: 2 / 3;
  }
  
  .footer__resources {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  
  .footer__newsletter {
    grid-column: 2 / 3;
    grid-row: 2;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: var(--spacing-3xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer__brand,
  .footer__navigation,
  .footer__resources,
  .footer__newsletter {
    grid-column: 1;
  }
  
  .footer__brand {
    margin-bottom: var(--spacing-lg);
  }
  
  .footer__navigation {
    grid-row: 2;
  }
  
  .footer__resources {
    grid-row: 3;
  }
  
  .footer__newsletter {
    grid-row: 4;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
}

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

.privacy-page__header {
  margin-bottom: var(--spacing-2xl);
}

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

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

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

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

.privacy-page__section p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-loose);
}

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

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

.privacy-page__list li strong {
  font-weight: var(--weight-medium);
  color: var(--color-neutral-dark);
}

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

.privacy-page__contact p {
  margin-bottom: var(--spacing-xs);
  line-height: var(--line-height-normal);
}

.privacy-page__contact p strong {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--spacing-lg) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--spacing-xl);
  }
  
  .privacy-page__header h1 {
    font-size: var(--text-3xl);
  }
  
  .privacy-page__section h2 {
    font-size: var(--text-xl);
  }
  
  .privacy-page__list {
    margin-left: var(--spacing-lg);
  }
  
  .privacy-page__contact {
    padding: var(--spacing-md);
  }
}

.terms-page {
  background-color: var(--color-background);
  color: var(--color-neutral-dark);
  padding: var(--spacing-4xl) 0;
  font-family: var(--font-secondary);
}

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

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

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

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

.terms-page__section-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
}

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

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

.terms-page p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-loose);
  font-size: var(--text-base);
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--spacing-2xl) 0;
  }
  
  .terms-page__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
  }
  
  .terms-page__section {
    margin-bottom: var(--spacing-xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
}

.cookie-page {
  background-color: var(--color-background);
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
  padding: var(--spacing-3xl) 0;
}

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

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

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-sm);
}

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

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

.cookie-page__section-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--spacing-md);
  border-left: 3px solid var(--color-primary);
  padding-left: var(--spacing-md);
}

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

.cookie-page__subsection-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  margin-bottom: var(--spacing-sm);
}

.cookie-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-md);
}

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

.cookie-page__list-item {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-normal);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--spacing-xl) 0;
  }
  
  .cookie-page__title {
    font-size: var(--text-3xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-xl);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__text,
  .cookie-page__list-item {
    font-size: var(--text-sm);
  }
}

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

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

.thank-page__content {
  text-align: center;
}

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

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

.thank-page__title {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-xl);
}

.thank-page__card {
  margin-bottom: var(--spacing-2xl);
  text-align: left;
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-2xl);
}

.thank-page__card:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.thank-page__subtitle {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-dark);
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-lg);
}

.thank-page__message,
.thank-page__details {
  font-family: var(--font-secondary);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  color: var(--color-neutral-dark);
  margin-bottom: var(--spacing-lg);
}

.thank-page__action {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.thank-page__button {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
}

.thank-page__follow-up {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-top: var(--spacing-lg);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-lg);
  }
  
  .thank-page__subtitle {
    font-size: var(--text-xl);
  }
  
  .thank-page__card {
    padding: var(--spacing-lg);
  }
  
  .thank-page__button {
    padding: var(--spacing-sm) var(--spacing-lg);
    width: 100%;
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-5xl) 0;
  border-bottom: 4px solid var(--color-primary);
}

.category-page__hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.category-page__hero-description {
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin: 0 auto;
}

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

.category-page__posts h2 {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.post-card__content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-neutral-dark);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
}

.post-card__content p {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
  color: var(--color-neutral-dark);
  line-height: var(--line-height-normal);
}

.post-card .btn {
  align-self: flex-start;
  transition: var(--transition-normal);
}

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

.category-page__tips h2 {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  color: var(--color-primary);
}

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

.category-page__tips-content > p {
  text-align: center;
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-3xl);
}

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

.category-page__tip-card {
  padding: var(--spacing-lg);
  height: 100%;
  transition: var(--transition-normal);
}

.category-page__tip-card:hover {
  transform: translateY(-5px);
}

.category-page__tip-card .icon-text {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.category-page__tip-card .icon-text i {
  margin-right: var(--spacing-sm);
  font-size: var(--icon-md);
}

.category-page__tip-card h4 {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  margin: 0;
}

.category-page__tip-card p {
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
}

/* Business Section */
.category-page__business {
  padding: var(--spacing-5xl) 0;
}

.category-page__business h2 {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  color: var(--color-primary);
}

.category-page__business-content {
  max-width: 1000px;
  margin: 0 auto;
}

.category-page__business-stats {
  margin-bottom: var(--spacing-3xl);
}

.category-page__business-stats h3 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-secondary);
}

.category-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.category-page__stat-item {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-tertiary);
}

.category-page__stat-item h4 {
  color: var(--color-tertiary);
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-lg);
}

.category-page__certification {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-accent);
}

.category-page__certification h3 {
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
}

.category-page__certification p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-loose);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .category-page__tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .category-page__hero {
    padding: var(--spacing-4xl) 0;
  }
  
  .category-page__posts {
    padding: var(--spacing-4xl) 0;
  }
  
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero-description {
    font-size: var(--text-base);
  }
  
  .category-page__tips-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__tips,
  .category-page__business {
    padding: var(--spacing-4xl) 0;
  }
}

@media (max-width: 480px) {
  .post-card__image-container {
    height: 180px;
  }
  
  .post-card__content {
    padding: var(--spacing-md);
  }
  
  .post-card__content h3 {
    font-size: var(--text-lg);
  }
  
  .category-page__tip-card,
  .category-page__stat-item,
  .category-page__certification {
    padding: var(--spacing-md);
  }
}

  /* Base Styles for Power Query Masterclass Page */
  .post-geavanceerde-excel-formules-financiele-professionals {
    color: var(--color-neutral-dark);
    font-family: var(--font-secondary);
    line-height: var(--line-height-normal);
  }
  
  /* Breadcrumbs */
  .post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs {
    padding: var(--spacing-md) 0;
    font-size: var(--text-sm);
    background-color: var(--color-neutral-light);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs a:hover {
    color: var(--color-accent);
  }
  
  /* Hero Section */
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-5xl) 0;
    text-align: center;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-lg);
    color: white;
    line-height: 1.2;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
    font-size: var(--text-xl);
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--line-height-loose);
  }
  
  /* Content Sections - General */
  .post-geavanceerde-excel-formules-financiele-professionals .content-section {
    padding: var(--spacing-6xl) 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section h2 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-xl);
    color: var(--color-neutral-dark);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section h3 {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section h4 {
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-neutral-dark);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section p {
    font-size: var(--text-base);
    line-height: var(--line-height-loose);
    margin-bottom: var(--spacing-md);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .content-section li {
    margin-bottom: var(--spacing-xs);
    line-height: var(--line-height-loose);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals code {
    font-family: monospace;
    background-color: var(--color-neutral-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9em;
  }
  
  /* Intro Section */
  .post-geavanceerde-excel-formules-financiele-professionals .intro-section {
    background-color: var(--color-background);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .section-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .text-content {
    flex: 1;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .image-container {
    flex: 1;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .section-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  /* Features Section */
  .post-geavanceerde-excel-formules-financiele-professionals .features-section {
    background-color: var(--color-neutral-light);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .feature-card {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .case-study {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-secondary);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .case-study-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
  }
  
  /* Workflow Section */
  .post-geavanceerde-excel-formules-financiele-professionals .workflow-section {
    background-color: var(--color-background);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .workflow-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: var(--weight-bold);
    flex-shrink: 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .step-content {
    flex: 1;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .key-takeaways {
    background-color: var(--color-neutral-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    border-left: 4px solid var(--color-tertiary);
  }
  
  /* Related Posts Section */
  .post-geavanceerde-excel-formules-financiele-professionals .related-posts-section {
    background-color: var(--color-neutral-light);
    padding: var(--spacing-5xl) 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-post-card {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-post-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-post-card p {
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .related-post-card .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
      font-size: var(--text-4xl);
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
      font-size: var(--text-lg);
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .features-grid {
      grid-template-columns: 1fr;
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .section-content {
      flex-direction: column;
    }
  }
  
  @media (max-width: 767px) {
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero {
      padding: var(--spacing-4xl) 0;
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
      font-size: var(--text-3xl);
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .content-section {
      padding: var(--spacing-4xl) 0;
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .content-section h2 {
      font-size: var(--text-3xl);
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .workflow-step {
      flex-direction: column;
    }
    
    .post-geavanceerde-excel-formules-financiele-professionals .step-number {
      margin-bottom: var(--spacing-sm);
    }
  }

/* Page-specific styles */
.post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-sm) 0;
  font-size: var(--text-sm);
  font-family: var(--font-secondary);
}

.post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs .container {
  display: flex;
  align-items: center;
}

.post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs a {
  color: var(--color-primary);
  margin: 0 var(--spacing-xs);
}

.post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs a:first-child {
  margin-left: 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs span {
  color: var(--color-neutral-dark);
  margin-left: var(--spacing-xs);
  font-weight: var(--weight-medium);
}

/* Hero Section */
.post-geavanceerde-excel-formules-financiele-professionals .post-hero {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: var(--spacing-5xl) 0;
  text-align: center;
}

.post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
  color: var(--color-background);
  margin-bottom: var(--spacing-md);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1.1;
}

.post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  line-height: var(--line-height-loose);
  font-weight: var(--weight-regular);
}

.post-geavanceerde-excel-formules-financiele-professionals .hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

/* Dashboard Basics Section */
.post-geavanceerde-excel-formules-financiele-professionals .dashboard-basics {
  background-color: var(--color-background);
  padding: var(--spacing-6xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.post-geavanceerde-excel-formules-financiele-professionals .text-content {
  padding-right: var(--spacing-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-geavanceerde-excel-formules-financiele-professionals .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-normal);
}

.post-geavanceerde-excel-formules-financiele-professionals .feature-list {
  list-style: none;
  margin: var(--spacing-lg) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .feature-icon {
  margin-right: var(--spacing-sm);
  font-size: var(--text-xl);
}

/* Dynamic Techniques Section */
.post-geavanceerde-excel-formules-financiele-professionals .dynamic-techniques {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-6xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .technique-card {
  background-color: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  height: 100%;
}

.post-geavanceerde-excel-formules-financiele-professionals .technique-card h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .technique-card ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.post-geavanceerde-excel-formules-financiele-professionals .technique-card li {
  margin-bottom: var(--spacing-sm);
}

.post-geavanceerde-excel-formules-financiele-professionals .practical-example {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .practical-example h4 {
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  font-size: var(--text-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .example-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.post-geavanceerde-excel-formules-financiele-professionals .example-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .example-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-geavanceerde-excel-formules-financiele-professionals .example-text ol {
  padding-left: var(--spacing-lg);
}

.post-geavanceerde-excel-formules-financiele-professionals .example-text li {
  margin-bottom: var(--spacing-sm);
}

/* Advanced Formulas Section */
.post-geavanceerde-excel-formules-financiele-professionals .advanced-formulas {
  background-color: var(--color-background);
  padding: var(--spacing-6xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .formula-sections {
  margin: var(--spacing-xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .formula-section {
  margin-bottom: var(--spacing-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .formula-section h3 {
  color: var(--color-tertiary);
  margin-bottom: var(--spacing-md);
  font-size: var(--text-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .formula-example {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  border-left: 4px solid var(--color-tertiary);
}

.post-geavanceerde-excel-formules-financiele-professionals .formula-example code {
  display: block;
  font-family: monospace;
  font-size: var(--text-sm);
  padding: var(--spacing-sm);
  background-color: var(--color-neutral-dark);
  color: var(--color-background);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.post-geavanceerde-excel-formules-financiele-professionals .code-explanation {
  font-size: var(--text-sm);
  margin-top: var(--spacing-sm);
  font-style: italic;
}

.post-geavanceerde-excel-formules-financiele-professionals .key-takeaways {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .key-takeaways h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .key-takeaways ol {
  padding-left: var(--spacing-lg);
}

.post-geavanceerde-excel-formules-financiele-professionals .key-takeaways li {
  margin-bottom: var(--spacing-md);
}

.post-geavanceerde-excel-formules-financiele-professionals .key-takeaways strong {
  color: var(--color-accent);
}

/* Related Posts Section */
.post-geavanceerde-excel-formules-financiele-professionals .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-6xl) 0;
}

.post-geavanceerde-excel-formules-financiele-professionals .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.post-geavanceerde-excel-formules-financiele-professionals .post-card {
  background-color: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-geavanceerde-excel-formules-financiele-professionals .post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.post-geavanceerde-excel-formules-financiele-professionals .post-card p {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
}

.post-geavanceerde-excel-formules-financiele-professionals .post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-geavanceerde-excel-formules-financiele-professionals .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
    font-size: var(--text-lg);
  }
}

@media (max-width: 767px) {
  .post-geavanceerde-excel-formules-financiele-professionals .section-content,
  .post-geavanceerde-excel-formules-financiele-professionals .techniques-grid,
  .post-geavanceerde-excel-formules-financiele-professionals .posts-grid,
  .post-geavanceerde-excel-formules-financiele-professionals .example-content {
    grid-template-columns: 1fr;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero {
    padding: var(--spacing-4xl) 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .dashboard-basics,
  .post-geavanceerde-excel-formules-financiele-professionals .dynamic-techniques,
  .post-geavanceerde-excel-formules-financiele-professionals .advanced-formulas,
  .post-geavanceerde-excel-formules-financiele-professionals .related-posts {
    padding: var(--spacing-4xl) 0;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .text-content {
    padding-right: 0;
    order: 2;
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .image-container {
    order: 1;
    margin-bottom: var(--spacing-lg);
  }
  
  .post-geavanceerde-excel-formules-financiele-professionals .example-image {
    margin-bottom: var(--spacing-lg);
  }
}

  /* Base Styles for the Post */
  .post-geavanceerde-excel-formules-nl {
    font-family: var(--font-secondary);
    color: var(--color-neutral-dark);
    background-color: var(--color-background);
  }

  /* Breadcrumbs Navigation */
  .post-geavanceerde-excel-formules-nl .breadcrumbs {
    padding: var(--spacing-md) 0;
    font-size: var(--text-sm);
    background-color: var(--color-neutral-light);
  }

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

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

  /* Hero Section */
  .post-geavanceerde-excel-formules-nl .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-6xl) 0;
    position: relative;
  }

  .post-geavanceerde-excel-formules-nl .post-hero h1 {
    color: white;
    font-size: var(--text-5xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
  }

  .post-geavanceerde-excel-formules-nl .post-hero .lead {
    font-size: var(--text-xl);
    line-height: var(--line-height-loose);
    max-width: 800px;
    margin-bottom: 0;
  }

  /* Content Sections */
  .post-geavanceerde-excel-formules-nl .content-section {
    padding: var(--spacing-6xl) 0;
  }

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

  .post-geavanceerde-excel-formules-nl .content-section h3 {
    font-size: var(--text-xl);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-neutral-dark);
  }

  .post-geavanceerde-excel-formules-nl .content-section h4 {
    font-size: var(--text-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-neutral-dark);
  }

  .post-geavanceerde-excel-formules-nl .content-section p {
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-loose);
  }

  /* Section Variations */
  .post-geavanceerde-excel-formules-nl .section-modern {
    background-color: white;
  }

  .post-geavanceerde-excel-formules-nl .section-light {
    background-color: var(--color-neutral-light);
  }

  .post-geavanceerde-excel-formules-nl .section-advanced {
    background-color: white;
  }

  /* Section 1 Layout */
  .post-geavanceerde-excel-formules-nl .section-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
  }

  .post-geavanceerde-excel-formules-nl .text-content {
    padding-right: var(--spacing-lg);
  }

  .post-geavanceerde-excel-formules-nl .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-geavanceerde-excel-formules-nl .image-container img {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  /* Code Examples */
  .post-geavanceerde-excel-formules-nl .code-example {
    background-color: var(--color-neutral-dark);
    color: white;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
    font-family: monospace;
    overflow-x: auto;
  }

  .post-geavanceerde-excel-formules-nl .code-example code {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: var(--text-sm);
  }

  .post-geavanceerde-excel-formules-nl .code-example p {
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-sm);
  }

  /* Features Grid */
  .post-geavanceerde-excel-formules-nl .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
  }

  .post-geavanceerde-excel-formules-nl .feature-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }

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

  /* Tip Box */
  .post-geavanceerde-excel-formules-nl .tip-box {
    background-color: var(--color-tertiary);
    color: white;
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-md);
    position: relative;
  }

  .post-geavanceerde-excel-formules-nl .tip-box h4 {
    color: white;
    margin-top: 0;
  }

  .post-geavanceerde-excel-formules-nl .tip-box code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
  }

  /* Advanced Techniques */
  .post-geavanceerde-excel-formules-nl .advanced-techniques {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
  }

  .post-geavanceerde-excel-formules-nl .technique {
    background-color: var(--color-neutral-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .post-geavanceerde-excel-formules-nl .technique h3 {
    margin-top: 0;
    color: var(--color-primary);
  }

  /* Numbered List */
  .post-geavanceerde-excel-formules-nl .numbered-list {
    padding-left: var(--spacing-xl);
    margin: var(--spacing-lg) 0;
  }

  .post-geavanceerde-excel-formules-nl .numbered-list li {
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-loose);
  }

  /* Section Image */
  .post-geavanceerde-excel-formules-nl .section-image {
    display: block;
    max-width: 100%;
    margin: var(--spacing-xl) auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  /* Conclusion Box */
  .post-geavanceerde-excel-formules-nl .conclusion-box {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }

  .post-geavanceerde-excel-formules-nl .conclusion-box h3 {
    color: white;
    margin-top: 0;
  }

  .post-geavanceerde-excel-formules-nl .conclusion-box p:last-child {
    margin-bottom: 0;
  }

  /* Related Posts Section */
  .post-geavanceerde-excel-formules-nl .related-posts-section {
    background-color: var(--color-neutral-light);
    padding: var(--spacing-5xl) 0;
  }

  .post-geavanceerde-excel-formules-nl .related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
  }

  .post-geavanceerde-excel-formules-nl .post-card {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .post-geavanceerde-excel-formules-nl .post-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .post-geavanceerde-excel-formules-nl .post-card h3 {
    font-size: var(--text-lg);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
  }

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

  .post-geavanceerde-excel-formules-nl .post-card h3 a:hover {
    color: var(--color-accent);
  }

  .post-geavanceerde-excel-formules-nl .post-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
  }

  .post-geavanceerde-excel-formules-nl .read-more {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: var(--weight-medium);
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: auto;
  }

  .post-geavanceerde-excel-formules-nl .read-more:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }

  /* Responsive Adjustments */
  @media (max-width: 1023px) {
    .post-geavanceerde-excel-formules-nl .section-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .post-geavanceerde-excel-formules-nl .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .post-geavanceerde-excel-formules-nl .advanced-techniques {
      grid-template-columns: 1fr;
    }

    .post-geavanceerde-excel-formules-nl .related-posts {
      grid-template-columns: repeat(2, 1fr);
    }

    .post-geavanceerde-excel-formules-nl .text-content {
      padding-right: 0;
    }
  }

  @media (max-width: 767px) {
    .post-geavanceerde-excel-formules-nl .post-hero {
      padding: var(--spacing-4xl) 0;
    }

    .post-geavanceerde-excel-formules-nl .content-section {
      padding: var(--spacing-4xl) 0;
    }

    .post-geavanceerde-excel-formules-nl .features-grid {
      grid-template-columns: 1fr;
    }

    .post-geavanceerde-excel-formules-nl .related-posts {
      grid-template-columns: 1fr;
    }

    .post-geavanceerde-excel-formules-nl .post-hero h1 {
      font-size: var(--text-3xl);
    }

    .post-geavanceerde-excel-formules-nl .post-hero .lead {
      font-size: var(--text-lg);
    }
  }

  /* Base Styles for this specific page */
  .post-geavanceerde-excel-formules-financiele-professionals {
    color: var(--color-neutral-dark);
    font-family: var(--font-secondary);
  }

  /* Breadcrumbs Navigation */
  .post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs {
    padding: var(--spacing-md) 0;
    font-size: var(--text-sm);
    background-color: var(--color-neutral-light);
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .breadcrumbs a:hover {
    color: var(--color-accent);
  }

  /* Hero Section */
  .post-geavanceerde-excel-formules-financiele-professionals .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-5xl) 0;
    position: relative;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-bold);
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
    font-size: var(--text-xl);
    line-height: var(--line-height-loose);
    margin-bottom: var(--spacing-xl);
    max-width: 90%;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .hero-cta {
    margin-top: var(--spacing-xl);
  }

  /* Content Sections */
  .post-geavanceerde-excel-formules-financiele-professionals .content-section {
    padding: var(--spacing-6xl) 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .content-section h2 {
    font-size: var(--text-4xl);
    color: var(--color-neutral-dark);
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .content-section h3 {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .content-section p {
    font-size: var(--text-base);
    line-height: var(--line-height-loose);
    margin-bottom: var(--spacing-md);
  }

  /* Section 1 - Basics */
  .post-geavanceerde-excel-formules-financiele-professionals .basics-section {
    background-color: var(--color-background);
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .text-content {
    flex: 1;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .benefits-list {
    list-style-type: none;
    margin: var(--spacing-md) 0;
    padding: 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .benefits-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    position: relative;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .benefits-list li:before {
    content: "✓";
    color: var(--color-tertiary);
    position: absolute;
    left: 0;
    font-weight: var(--weight-bold);
  }

  /* Section 2 - Macros */
  .post-geavanceerde-excel-formules-financiele-professionals .macros-section {
    background-color: var(--color-neutral-light);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .application-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .application-card h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-lg);
  }

  /* Section 3 - Implementation */
  .post-geavanceerde-excel-formules-financiele-professionals .implementation-section {
    background-color: var(--color-background);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .steps-container {
    margin: var(--spacing-xl) 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .step {
    display: flex;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .step-number {
    background-color: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-bold);
    font-size: var(--text-lg);
    flex-shrink: 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .step-content {
    flex: 1;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .code-example {
    background-color: var(--color-neutral-dark);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    overflow-x: auto;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .code-example h3 {
    color: white;
    margin-bottom: var(--spacing-md);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .code-example pre {
    margin: 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .code-example code {
    font-family: monospace;
    color: #e0e0e0;
    line-height: 1.5;
    display: block;
    white-space: pre;
    font-size: var(--text-sm);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .conclusion {
    background-color: var(--color-neutral-light);
    border-left: 4px solid var(--color-secondary);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  /* Related Posts Section */
  .post-geavanceerde-excel-formules-financiele-professionals .related-posts-section {
    background-color: var(--color-neutral-light);
    padding: var(--spacing-5xl) 0;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .related-posts-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--text-3xl);
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .post-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .post-geavanceerde-excel-formules-financiele-professionals .post-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .post-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .post-card p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
  }

  .post-geavanceerde-excel-formules-financiele-professionals .read-more {
    display: inline-block;
    color: var(--color-primary);
    font-weight: var(--weight-medium);
    margin-top: auto;
    transition: var(--transition-fast);
  }

  .post-geavanceerde-excel-formules-financiele-professionals .read-more:hover {
    color: var(--color-accent);
  }

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
      font-size: var(--text-4xl);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
      font-size: var(--text-lg);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .section-content {
      flex-direction: column;
    }

    .post-geavanceerde-excel-formules-financiele-professionals .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .applications-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .post-geavanceerde-excel-formules-financiele-professionals .post-hero {
      padding: var(--spacing-3xl) 0;
    }

    .post-geavanceerde-excel-formules-financiele-professionals .post-hero h1 {
      font-size: var(--text-3xl);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .post-hero .lead {
      font-size: var(--text-base);
      max-width: 100%;
    }

    .post-geavanceerde-excel-formules-financiele-professionals .content-section {
      padding: var(--spacing-4xl) 0;
    }

    .post-geavanceerde-excel-formules-financiele-professionals .content-section h2 {
      font-size: var(--text-3xl);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .posts-grid {
      grid-template-columns: 1fr;
    }

    .post-geavanceerde-excel-formules-financiele-professionals .step {
      flex-direction: column;
      gap: var(--spacing-md);
    }

    .post-geavanceerde-excel-formules-financiele-professionals .step-number {
      margin-bottom: var(--spacing-sm);
    }
  }

/* Page-specific styles */
.post-vba-programmeren-excel-automatisering {
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
}

/* Breadcrumbs */
.post-vba-programmeren-excel-automatisering .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-md) 0;
  font-size: var(--text-sm);
}

.post-vba-programmeren-excel-automatisering .breadcrumbs .container {
  display: flex;
  align-items: center;
}

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

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

.post-vba-programmeren-excel-automatisering .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero Section */
.post-vba-programmeren-excel-automatisering .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-5xl) 0;
  text-align: center;
}

.post-vba-programmeren-excel-automatisering .post-hero h1 {
  color: white;
  font-size: var(--text-5xl);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-tight);
}

.post-vba-programmeren-excel-automatisering .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  line-height: var(--line-height-normal);
}

.post-vba-programmeren-excel-automatisering .hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.post-vba-programmeren-excel-automatisering .hero-cta .btn-tertiary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.post-vba-programmeren-excel-automatisering .hero-cta .btn-tertiary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Content Sections - General */
.post-vba-programmeren-excel-automatisering .content-section {
  padding: var(--spacing-6xl) 0;
}

.post-vba-programmeren-excel-automatisering .content-section h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-xl);
  color: var(--color-neutral-dark);
}

.post-vba-programmeren-excel-automatisering .content-section h3 {
  font-size: var(--text-2xl);
  margin: var(--spacing-xl) 0 var(--spacing-md);
  color: var(--color-primary);
}

.post-vba-programmeren-excel-automatisering .content-section h4 {
  font-size: var(--text-xl);
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  color: var(--color-neutral-dark);
}

.post-vba-programmeren-excel-automatisering .content-section p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-loose);
}

.post-vba-programmeren-excel-automatisering .content-section ul,
.post-vba-programmeren-excel-automatisering .content-section ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.post-vba-programmeren-excel-automatisering .content-section li {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-loose);
}

.post-vba-programmeren-excel-automatisering .image-container {
  margin: var(--spacing-xl) 0;
}

.post-vba-programmeren-excel-automatisering .section-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 100%;
  height: auto;
  display: block;
}

.post-vba-programmeren-excel-automatisering .center-image {
  display: flex;
  justify-content: center;
}

/* Excel Optimization Section */
.post-vba-programmeren-excel-automatisering .excel-optimization-section {
  background-color: var(--color-background);
}

.post-vba-programmeren-excel-automatisering .excel-optimization-section .section-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.post-vba-programmeren-excel-automatisering .optimization-list {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-tertiary);
}

.post-vba-programmeren-excel-automatisering .optimization-list li {
  margin-bottom: var(--spacing-md);
}

/* Power Pivot Section */
.post-vba-programmeren-excel-automatisering .power-pivot-section {
  background-color: var(--color-neutral-light);
}

.post-vba-programmeren-excel-automatisering .case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.post-vba-programmeren-excel-automatisering .case-study {
  background-color: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.post-vba-programmeren-excel-automatisering .case-study:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-vba-programmeren-excel-automatisering .techniques-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.post-vba-programmeren-excel-automatisering .technique {
  background-color: var(--color-background);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.post-vba-programmeren-excel-automatisering .technique:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-vba-programmeren-excel-automatisering .technique h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* DAX Formulas Section */
.post-vba-programmeren-excel-automatisering .dax-formulas-section {
  background-color: var(--color-background);
}

.post-vba-programmeren-excel-automatisering .dax-examples {
  margin: var(--spacing-xl) 0;
}

.post-vba-programmeren-excel-automatisering .dax-example {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  border-left: 3px solid var(--color-accent);
  background-color: var(--color-neutral-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-vba-programmeren-excel-automatisering .best-practices {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

.post-vba-programmeren-excel-automatisering .best-practices h3 {
  margin-top: 0;
}

.post-vba-programmeren-excel-automatisering .best-practices ol {
  counter-reset: best-practices-counter;
  list-style: none;
  padding-left: 0;
}

.post-vba-programmeren-excel-automatisering .best-practices li {
  counter-increment: best-practices-counter;
  position: relative;
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.post-vba-programmeren-excel-automatisering .best-practices li::before {
  content: counter(best-practices-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
}

.post-vba-programmeren-excel-automatisering .conclusion {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  border-top: 1px solid var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-light);
}

/* Related Posts Section */
.post-vba-programmeren-excel-automatisering .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--spacing-5xl) 0;
}

.post-vba-programmeren-excel-automatisering .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.post-vba-programmeren-excel-automatisering .related-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--spacing-lg);
}

.post-vba-programmeren-excel-automatisering .related-post h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-md);
}

.post-vba-programmeren-excel-automatisering .related-post p {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
}

.post-vba-programmeren-excel-automatisering .related-post .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-vba-programmeren-excel-automatisering .excel-optimization-section .section-content {
    grid-template-columns: 1fr;
  }
  
  .post-vba-programmeren-excel-automatisering .case-study-grid,
  .post-vba-programmeren-excel-automatisering .techniques-grid {
    grid-template-columns: 1fr;
  }
  
  .post-vba-programmeren-excel-automatisering .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-vba-programmeren-excel-automatisering .post-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .post-vba-programmeren-excel-automatisering .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-vba-programmeren-excel-automatisering .content-section {
    padding: var(--spacing-4xl) 0;
  }
}

@media (max-width: 767px) {
  .post-vba-programmeren-excel-automatisering .hero-cta {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .post-vba-programmeren-excel-automatisering .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-vba-programmeren-excel-automatisering .post-hero {
    padding: var(--spacing-3xl) 0;
  }
  
  .post-vba-programmeren-excel-automatisering .content-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .post-vba-programmeren-excel-automatisering .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-vba-programmeren-excel-automatisering .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-vba-programmeren-excel-automatisering .content-section h2 {
    font-size: var(--text-3xl);
  }
  
  .post-vba-programmeren-excel-automatisering .best-practices {
    padding: var(--spacing-lg);
  }
}

.privacy-page {
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
  background-color: var(--color-background);
  padding: var(--spacing-4xl) 0;
}

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

.privacy-page__header {
  margin-bottom: var(--spacing-3xl);
  border-bottom: 2px solid var(--color-neutral-light);
  padding-bottom: var(--spacing-lg);
}

.privacy-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  margin-bottom: var(--spacing-sm);
}

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

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

.privacy-page__section-title {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--color-neutral-light);
}

.privacy-page__subsection-title {
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.privacy-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-md);
}

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

.privacy-page__list-item {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-normal);
}

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

.privacy-page__contact-item {
  margin-bottom: var(--spacing-xs);
  line-height: var(--line-height-normal);
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--spacing-2xl) 0;
  }
  
  .privacy-page__header {
    margin-bottom: var(--spacing-xl);
  }
  
  .privacy-page__section {
    margin-bottom: var(--spacing-xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-xl);
  }
  
  .privacy-page__subsection-title {
    font-size: var(--text-base);
  }
}

.terms-page {
  background-color: var(--color-background);
  color: var(--color-neutral-dark);
  padding: var(--spacing-xl) 0;
  font-family: var(--font-secondary);
}

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

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

.terms-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

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

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

.terms-page__heading {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.terms-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-md);
}

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

.terms-page__list-item {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-normal);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--spacing-lg) 0;
  }
  
  .terms-page__title {
    font-size: var(--text-3xl);
  }
  
  .terms-page__heading {
    font-size: var(--text-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--spacing-xl);
  }
  
  .terms-page__list {
    margin-left: var(--spacing-lg);
  }
}

.cookie-page {
  background-color: var(--color-background);
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
  line-height: var(--line-height-normal);
  padding: var(--spacing-4xl) 0;
}

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

.cookie-page__header {
  margin-bottom: var(--spacing-2xl);
}

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-sm);
}

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

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

.cookie-page__section-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-neutral-light);
  padding-bottom: var(--spacing-sm);
}

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

.cookie-page__subsection-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-sm);
}

.cookie-page__text {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-md);
}

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

.cookie-page__list-item {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--spacing-2xl) 0;
  }
  
  .cookie-page__title {
    font-size: var(--text-3xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-xl);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-base);
  }
  
  .cookie-page__text,
  .cookie-page__list-item {
    font-size: var(--text-sm);
  }
}

/* Thank You Page Styles */
.thank-page {
  background-color: var(--color-neutral-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4xl) 0;
}

.thank-page__container {
  text-align: center;
}

.thank-page__content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-tertiary);
  color: var(--color-background);
  border-radius: 50%;
  margin-bottom: var(--spacing-xl);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--spacing-xl);
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
}

.thank-page__card {
  margin-bottom: var(--spacing-xl);
  background-color: var(--color-background);
  border-left: 4px solid var(--color-primary);
  text-align: left;
}

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

.thank-page__details {
  margin-bottom: var(--spacing-md);
  color: var(--color-neutral-dark);
}

.thank-page__note {
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.thank-page__actions {
  margin: var(--spacing-xl) 0;
}

.thank-page__button {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: var(--text-lg);
}

.thank-page__follow-up {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-top: var(--spacing-lg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--spacing-2xl) 0;
  }
  
  .thank-page__icon {
    width: 60px;
    height: 60px;
  }
  
  .thank-page__title {
    margin-bottom: var(--spacing-lg);
  }
  
  .thank-page__message {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--text-base);
    width: 100%;
  }
}

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

.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;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-5xl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xl);
  line-height: 1;
}

.error-404__code span {
  font-size: 6rem;
}

.error-404__icon {
  width: 5rem;
  height: 5rem;
  color: var(--color-tertiary);
  margin: 0 var(--spacing-sm);
  animation: pulse 2s infinite ease-in-out;
}

.error-404__title {
  color: var(--color-neutral-dark);
  font-size: var(--text-3xl);
  margin-bottom: var(--spacing-lg);
}

.error-404__message {
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  margin-bottom: var(--spacing-2xl);
  max-width: 540px;
}

.error-404__button {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-xl);
  transition: var(--transition-normal);
}

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

.error-404__button .icon {
  margin-right: var(--spacing-sm);
}

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

@media (max-width: 767px) {
  .error-404__code span {
    font-size: 4rem;
  }
  
  .error-404__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .error-404__title {
    font-size: var(--text-2xl);
  }
  
  .error-404__message {
    font-size: var(--text-base);
  }
}
