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

:root {
  /* Color Scheme */
  --color-primary: #1e5f74; /* Deep teal - professional & trustworthy */
  --color-secondary: #ff6b35; /* Vibrant orange - energy & confidence */
  --color-accent: #f9db6d; /* Warm yellow - optimism & clarity */
  --color-dark: #2b2d42; /* Deep navy - authority & stability */
  --color-light: #f8f9fa; /* Off-white - clean background */
  --color-gray: #6c757d; /* Neutral gray - supporting text */
  --color-success: #43aa8b; /* Teal green - positive feedback */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Font Sizes - Desktop */
  --fs-h1: 3.5rem;
  --fs-h2: 2.8rem;
  --fs-h3: 2.2rem;
  --fs-h4: 1.8rem;
  --fs-h5: 1.5rem;
  --fs-h6: 1.2rem;
  --fs-body: 1.125rem;
  --fs-small: 0.875rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(43, 45, 66, 0.08);
  --shadow-md: 0 4px 12px rgba(43, 45, 66, 0.12);
  --shadow-lg: 0 8px 24px rgba(43, 45, 66, 0.16);
  --shadow-inset: inset 0 2px 4px rgba(43, 45, 66, 0.08);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.5rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
}

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

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

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

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

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

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

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

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

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

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

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

a.underline {
  position: relative;
}

a.underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-normal);
}

a.underline:hover::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-dark { color: var(--color-dark); }
.text-light { color: var(--color-light); }
.text-gray { color: var(--color-gray); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-dark { background-color: var(--color-dark); }
.bg-light { background-color: var(--color-light); }

.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

.fs-small { font-size: var(--fs-small); }
.fs-body { font-size: var(--fs-body); }
.fs-h6 { font-size: var(--fs-h6); }
.fs-h5 { font-size: var(--fs-h5); }
.fs-h4 { font-size: var(--fs-h4); }
.fs-h3 { font-size: var(--fs-h3); }
.fs-h2 { font-size: var(--fs-h2); }
.fs-h1 { font-size: var(--fs-h1); }

/* Responsive Adjustments */
@media (max-width: 1023px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.4rem;
    --fs-h3: 1.8rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.3rem;
    --fs-h6: 1.1rem;
    --fs-body: 1rem;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.6rem;
    --fs-h4: 1.4rem;
    --fs-h5: 1.2rem;
    --fs-h6: 1rem;
    --fs-body: 1rem;
    
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
  }
}
/* Header Styles */
.header {
  position: relative;
  width: 100%;
  background-color: var(--color-light);
  padding: var(--space-sm) 0;
  font-family: var(--font-primary);
}

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

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

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

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

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  font-size: var(--fs-h4);
}

.header__logo-text {
  position: relative;
}

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

.header__logo:hover .header__logo-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

.header__nav-item {
  position: relative;
  margin: 0 var(--space-sm);
}

.header__nav-link {
  display: inline-block;
  color: var(--color-dark);
  font-weight: 500;
  font-size: var(--fs-body);
  padding: var(--space-xs) var(--space-xs);
  position: relative;
  transition: color var(--transition-normal);
}

.header__nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

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

.header__nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  margin-left: var(--space-md);
}

.header__cta-btn {
  display: flex;
  align-items: center;
  font-size: var(--fs-small);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  transform-style: preserve-3d;
  transition: all var(--transition-normal);
}

.header__cta-btn i {
  margin-right: var(--space-xs);
  transition: transform var(--transition-normal);
}

.header__cta-btn:hover i {
  transform: translateX(3px);
}

.header__cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: var(--fs-h4);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-normal);
}

.header__mobile-toggle:hover {
  color: var(--color-secondary);
}

.header__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-primary) 30%, 
    var(--color-secondary) 30%, 
    var(--color-secondary) 60%,
    var(--color-accent) 60%, 
    var(--color-accent) 100%);
}

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

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

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

.header__mobile-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: var(--fs-h3);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-normal), transform var(--transition-normal);
}

.header__mobile-close:hover {
  color: var(--color-secondary);
  transform: rotate(90deg);
}

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

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

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

.header__mobile-nav-link {
  display: block;
  color: var(--color-dark);
  font-weight: 600;
  font-size: var(--fs-h5);
  transition: color var(--transition-normal), transform var(--transition-normal);
  padding: var(--space-xs) 0;
}

.header__mobile-nav-link:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.header__mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--space-md);
}

.header__mobile-footer-links {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.header__mobile-footer-link {
  color: var(--color-gray);
  font-size: var(--fs-small);
  margin: 0 var(--space-sm);
  transition: color var(--transition-normal);
}

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

/* Media Queries */
@media (max-width: 1023px) {
  .header__nav-item {
    margin: 0 var(--space-xs);
  }
  
  .header__nav-link {
    font-size: var(--fs-small);
  }
  
  .header__cta-btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 767px) {
  .header__nav, 
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
  
  .header__container {
    padding: var(--space-xs) var(--space-sm);
  }
}

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

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

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

.main .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

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

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

.main .hero-subtitle {
  font-size: var(--fs-h5);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  max-width: 90%;
}

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

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

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

.main .hero-image-container:hover {
  transform: rotate(0deg);
}

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

.main .hero-accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: var(--border-radius-pill);
  background-color: var(--color-accent);
  opacity: 0.2;
  z-index: -1;
  bottom: -50px;
  right: -50px;
}

.main .hero-stats {
  position: absolute;
  left: -40px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 3;
}

.main .stat-item {
  background-color: white;
  padding: var(--space-sm);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  transform: rotate(-3deg);
  transition: transform var(--transition-normal);
}

.main .stat-item:hover {
  transform: rotate(0deg) translateY(-5px);
}

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

.main .stat-label {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.main .hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.main .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.05;
  top: -100px;
  left: -150px;
  transform: rotate(45deg);
}

.main .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.05;
  bottom: 100px;
  left: 15%;
  transform: rotate(30deg);
}

.main .shape-3 {
  width: 400px;
  height: 400px;
  border: 30px solid var(--color-accent);
  opacity: 0.05;
  top: -150px;
  right: -150px;
  border-radius: 50%;
}

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

.main .section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.main .section-description {
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

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

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

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

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

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

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

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

.main .post-content h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  color: var(--color-dark);
}

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

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

.main .section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.main .section-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-body);
}

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

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

/* Core Skills Section */
.main .core-skills {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.main .skills-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.main .skill-card {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main .skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

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

.main .skill-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

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

.main .skill-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  position: relative;
}

.main .skill-card p {
  color: var(--color-gray);
  font-size: var(--fs-body);
}

.main .skills-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.05;
}

.main .presentation-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

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

.main .methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.03;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

.main .methodology-process {
  position: relative;
  z-index: 1;
}

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

.main .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 2px;
  height: 40px;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.main .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  color: white;
  font-size: var(--fs-h2);
  font-family: var(--font-secondary);
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.main .step-content {
  padding-right: var(--space-md);
}

.main .step-content h3 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.main .step-content p {
  color: var(--color-gray);
}

.main .step-image {
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

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

.main .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.05;
  z-index: 0;
}

.main .testimonials-slider {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-md);
  overflow: hidden;
}

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

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

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

.main .quote-icon {
  color: var(--color-accent);
  font-size: var(--icon-md);
  margin-bottom: var(--space-sm);
}

.main .quote-text {
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

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

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(30, 95, 116, 0.05);
  border-top: 1px solid rgba(30, 95, 116, 0.1);
}

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-sm);
  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(--fs-h6);
  margin-bottom: 0;
}

.main .author-info p {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: 0;
}

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

.main .control-prev,
.main .control-next {
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.main .control-prev:hover,
.main .control-next:hover {
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.main .control-dots {
  display: flex;
  gap: 8px;
  margin: 0 var(--space-sm);
}

.main .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray);
  opacity: 0.3;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

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

.main .contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

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

.main .contact-info {
  padding-right: var(--space-md);
}

.main .contact-info h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.main .contact-info p {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.main .contact-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.main .feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.main .feature i {
  color: var(--color-success);
}

.main .contact-image {
  margin-top: var(--space-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-md);
}

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

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

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

.main .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

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

.main .form-group.full-width {
  grid-column: 1 / -1;
}

.main .form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-dark);
  font-weight: 500;
}

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(108, 117, 125, 0.2);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  grid-column: 1 / -1;
}

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

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

.main .contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--space-xs);
}

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

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

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

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

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

/* Media Queries */
@media (max-width: 1200px) {
  .main .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .main .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-subtitle {
    max-width: 100%;
    margin: 0 auto var(--space-md);
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-stats {
    bottom: 0;
    flex-direction: row;
    justify-content: center;
    margin-top: var(--space-md);
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .process-step {
    grid-template-columns: 60px 1fr;
  }
  
  .main .step-image {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-left: 60px;
  }
  
  .main .testimonials-slider {
    flex-direction: column;
  }
  
  .main .testimonial-card {
    flex: 0 0 100%;
    margin-bottom: var(--space-md);
  }
  
  .main .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .skills-container {
    grid-template-columns: 1fr;
  }
  
  .main .contact-features {
    grid-template-columns: 1fr;
  }
  
  .main .contact-form {
    grid-template-columns: 1fr;
  }
  
  .main .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

/* Footer Styles */
.footer {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-lg) 0 var(--space-md);
  overflow: hidden;
  margin-top: var(--space-xl);
}

.footer__wave {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 50px;
  background: radial-gradient(ellipse at center, var(--color-primary) 0%, var(--color-dark) 70%);
  clip-path: ellipse(55% 50% at 50% 0%);
  z-index: 1;
}

.footer__container {
  position: relative;
  z-index: 2;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(248, 249, 250, 0.1);
  margin-bottom: var(--space-md);
}

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

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
  color: var(--color-light);
  position: relative;
}

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

.footer__tagline {
  font-size: var(--fs-small);
  line-height: 1.5;
  margin-top: var(--space-sm);
  color: var(--color-gray);
  max-width: 90%;
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: var(--space-sm);
  position: relative;
}

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

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

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

.footer__nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

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

.footer__cta {
  background-color: rgba(30, 95, 116, 0.3);
  padding: var(--space-sm);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-secondary);
}

.footer__cta-text {
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
  color: var(--color-gray);
}

.footer__cta-btn {
  font-size: var(--fs-small);
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

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

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

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

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

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

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

.footer__copyright {
  text-align: right;
}

.footer__copyright-text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin: 0;
}

@media (max-width: 767px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .footer__legal-list {
    justify-content: center;
  }
  
  .footer__copyright {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .footer__branding {
    grid-column: span 2;
  }
}

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

.footer__cta-btn:hover {
  animation: pulse 1.5s infinite;
}

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

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

.privacy-page__updated {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

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

.privacy-page h2 {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  font-size: var(--fs-h3);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: var(--space-xs);
}

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

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

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

.privacy-page p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.privacy-page strong {
  font-weight: 600;
}

.privacy-page__contact {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-md);
}

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-md) 0;
  }
  
  .privacy-page h1 {
    font-size: var(--fs-h2);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-md);
  }
}

.terms-page {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xxl);
  background-color: var(--color-light);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .terms-page {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-h5);
  }
  
  .terms-page__list {
    padding-left: var(--space-md);
  }
}

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

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

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

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

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

.cookie-page__section h2 {
  color: var(--color-dark);
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  position: relative;
}

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

.cookie-page__section h3 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
}

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

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

.cookie-page__list li {
  margin-bottom: var(--space-xs);
  line-height: 1.6;
  position: relative;
}

.cookie-page__footer {
  border-top: 1px solid var(--color-gray);
  padding-top: var(--space-md);
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

.thank-page__subtitle {
  font-size: var(--fs-h3);
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

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

.thank-page__info {
  font-size: var(--fs-body);
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__card {
    padding: var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--fs-h2);
  }
  
  .thank-page__subtitle {
    font-size: var(--fs-h4);
  }
}

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

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

.category-page__hero-content {
  max-width: 60%;
  position: relative;
  z-index: 1;
}

.category-page__hero h1 {
  margin-bottom: var(--space-md);
}

.category-page__hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  opacity: 0.85;
  z-index: 0;
}

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

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

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

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

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

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

.post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--fs-h5);
  margin-bottom: 0;
}

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

.post-card a {
  margin: 0 var(--space-md) var(--space-md);
  display: inline-block;
}

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

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

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

.category-page__tip-card {
  padding: var(--space-md);
  height: 100%;
  position: relative;
}

.category-page__tip-number {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-accent);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  opacity: 0.5;
}

.category-page__tip-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.category-page__tip-card p {
  position: relative;
  z-index: 1;
}

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

.category-page__statistics h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.category-page__statistics-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  font-size: var(--fs-h6);
  color: var(--color-gray);
}

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

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

.category-page__statistic-number {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-xs);
}

.category-page__statistics-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.category-page__statistics-conclusion h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .category-page__posts-grid,
  .category-page__tips-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__hero-content {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .category-page__hero-content {
    max-width: 100%;
    padding-bottom: 50%;
  }
  
  .category-page__hero-image {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }
  
  .category-page__posts-grid,
  .category-page__tips-content,
  .category-page__statistics-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Styles for Post Page */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Breadcrumbs */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: var(--space-md);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .breadcrumbs a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero {
  padding: var(--space-xl) 0;
  background-color: var(--color-primary);
  color: var(--color-light);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
  z-index: 1;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero .container {
  position: relative;
  z-index: 2;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero h1 {
  color: var(--color-light);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  max-width: 800px;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 0;
}

/* Content Sections - Common */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-section h2 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-wrapper {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-wrapper.reversed {
  flex-direction: row-reverse;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .text-content {
  flex: 1;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .image-container {
  flex: 0 0 45%;
  position: relative;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .presentation-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .presentation-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Section 1 - Understanding */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .section-understanding {
  background-color: var(--color-light);
}

/* Section 2 - Techniques */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .section-techniques {
  background-color: rgba(249, 219, 109, 0.1); /* Light version of accent color */
  position: relative;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .technique-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .technique-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .technique-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--space-xs);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-list {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-list h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-list ul {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-list li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .center-image {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}

/* Section 3 - Dutch Context */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .section-dutch-context {
  background-color: var(--color-light);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .key-takeaways {
  background-color: rgba(30, 95, 116, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-top: var(--space-lg);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .key-takeaways h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .key-takeaways ol {
  padding-left: var(--space-md);
  margin-bottom: 0;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .key-takeaways li {
  margin-bottom: var(--space-xs);
}

/* Related Posts Section */
.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-section {
  background-color: var(--color-dark);
  padding: var(--space-xxl) 0;
  color: var(--color-light);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-section h2 {
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-section h2::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.1);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card .post-link {
  display: block;
  height: 100%;
  color: var(--color-light);
  text-decoration: none;
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card .card-content {
  padding: var(--space-md);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card h3 {
  color: var(--color-light);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card:hover h3 {
  color: var(--color-accent);
}

.post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-post-card p {
  color: var(--color-gray);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-wrapper {
    flex-direction: column;
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .content-wrapper.reversed {
    flex-direction: column;
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .image-container {
    flex: 0 0 100%;
    margin-bottom: var(--space-md);
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .techniques-grid {
    grid-template-columns: 1fr;
  }
  
  .post-overwin-spreekangst-technieken-zelfverzekerde-presentaties .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Post Styles */
.post-storytelling-zakelijke-presentaties {
  color: var(--color-dark);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-storytelling-zakelijke-presentaties .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  background-color: var(--color-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-storytelling-zakelijke-presentaties .breadcrumbs a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.post-storytelling-zakelijke-presentaties .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-storytelling-zakelijke-presentaties .post-hero {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-storytelling-zakelijke-presentaties .post-hero h1 {
  color: var(--color-light);
  font-size: var(--fs-h1);
  max-width: 90%;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.post-storytelling-zakelijke-presentaties .post-hero .lead {
  font-size: var(--fs-h5);
  max-width: 85%;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

/* Content Sections */
.post-storytelling-zakelijke-presentaties .content-section {
  padding: var(--space-xxl) 0;
}

.post-storytelling-zakelijke-presentaties .section-light {
  background-color: var(--color-light);
}

.post-storytelling-zakelijke-presentaties .section-accent {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.post-storytelling-zakelijke-presentaties .content-section h2 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.post-storytelling-zakelijke-presentaties .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.post-storytelling-zakelijke-presentaties .section-accent h2::after {
  background-color: var(--color-primary);
}

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

.post-storytelling-zakelijke-presentaties .content-text p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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

.post-storytelling-zakelijke-presentaties .full-width img {
  width: 100%;
  margin: var(--space-lg) 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Story Structures Section */
.post-storytelling-zakelijke-presentaties .story-structures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-storytelling-zakelijke-presentaties .structure-card {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.post-storytelling-zakelijke-presentaties .structure-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
}

.post-storytelling-zakelijke-presentaties .structure-card ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.post-storytelling-zakelijke-presentaties .structure-card li {
  margin-bottom: var(--space-xs);
}

/* Techniques Grid */
.post-storytelling-zakelijke-presentaties .techniques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-storytelling-zakelijke-presentaties .technique-item {
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-storytelling-zakelijke-presentaties .technique-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-storytelling-zakelijke-presentaties .technique-item h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h5);
}

/* Key Takeaways */
.post-storytelling-zakelijke-presentaties .key-takeaways {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  margin: var(--space-xl) 0;
}

.post-storytelling-zakelijke-presentaties .key-takeaways h3 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

.post-storytelling-zakelijke-presentaties .key-takeaways ul {
  padding-left: var(--space-md);
}

.post-storytelling-zakelijke-presentaties .key-takeaways li {
  margin-bottom: var(--space-sm);
}

/* Conclusion */
.post-storytelling-zakelijke-presentaties .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-secondary);
  background-color: rgba(255, 107, 53, 0.05);
}

.post-storytelling-zakelijke-presentaties .conclusion p {
  font-size: var(--fs-h6);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Related Posts Section */
.post-storytelling-zakelijke-presentaties .related-posts-section {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xl) 0;
}

.post-storytelling-zakelijke-presentaties .related-posts-section h2 {
  color: var(--color-light);
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-storytelling-zakelijke-presentaties .related-posts-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

.post-storytelling-zakelijke-presentaties .related-post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.post-storytelling-zakelijke-presentaties .related-post-card h3 {
  font-size: var(--fs-h5);
  color: var(--color-dark);
  margin: var(--space-md) var(--space-md) var(--space-sm);
}

.post-storytelling-zakelijke-presentaties .related-post-card p {
  color: var(--color-gray);
  margin: 0 var(--space-md) var(--space-md);
  flex-grow: 1;
}

.post-storytelling-zakelijke-presentaties .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
  align-self: flex-start;
}

/* Media Queries */
@media (max-width: 1023px) {
  .post-storytelling-zakelijke-presentaties .content-grid,
  .post-storytelling-zakelijke-presentaties .story-structures,
  .post-storytelling-zakelijke-presentaties .techniques-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-storytelling-zakelijke-presentaties .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-storytelling-zakelijke-presentaties .post-hero h1 {
    max-width: 100%;
  }
  
  .post-storytelling-zakelijke-presentaties .post-hero .lead {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .post-storytelling-zakelijke-presentaties .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-storytelling-zakelijke-presentaties .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-storytelling-zakelijke-presentaties .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-storytelling-zakelijke-presentaties .post-hero h1 {
    font-size: var(--fs-h2);
  }
  
  .post-storytelling-zakelijke-presentaties .post-hero .lead {
    font-size: var(--fs-body);
  }
}

/* Page-specific styles */
.post-visuele-hulpmiddelen-presentaties .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.post-visuele-hulpmiddelen-presentaties .breadcrumbs a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.post-visuele-hulpmiddelen-presentaties .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-visuele-hulpmiddelen-presentaties .post-hero {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-visuele-hulpmiddelen-presentaties .post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(30, 95, 116, 0.9) 0%, rgba(30, 95, 116, 0.7) 100%);
  z-index: 1;
}

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

.post-visuele-hulpmiddelen-presentaties .post-hero h1 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.post-visuele-hulpmiddelen-presentaties .post-hero .lead {
  font-size: var(--fs-h5);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Content Sections - Common */
.post-visuele-hulpmiddelen-presentaties .content-section {
  padding: var(--space-xxl) 0;
}

.post-visuele-hulpmiddelen-presentaties .content-section h2 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.post-visuele-hulpmiddelen-presentaties .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

/* Principles Section */
.post-visuele-hulpmiddelen-presentaties .principles-section {
  background-color: var(--color-light);
}

.post-visuele-hulpmiddelen-presentaties .principles-section .section-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-lg);
  align-items: center;
}

.post-visuele-hulpmiddelen-presentaties .principles-section .image-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-visuele-hulpmiddelen-presentaties .principles-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-visuele-hulpmiddelen-presentaties .principles-section img:hover {
  transform: scale(1.02);
}

/* Strategies Section */
.post-visuele-hulpmiddelen-presentaties .strategies-section {
  background-color: var(--color-light);
  position: relative;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.post-visuele-hulpmiddelen-presentaties .strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.post-visuele-hulpmiddelen-presentaties .strategy-card {
  padding: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-visuele-hulpmiddelen-presentaties .strategy-card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h4);
}

.post-visuele-hulpmiddelen-presentaties .best-practices {
  background-color: var(--color-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.post-visuele-hulpmiddelen-presentaties .best-practices h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-visuele-hulpmiddelen-presentaties .best-practices ul {
  list-style-type: none;
  padding-left: 0;
}

.post-visuele-hulpmiddelen-presentaties .best-practices li {
  margin-bottom: var(--space-sm);
  padding-left: 25px;
  position: relative;
}

.post-visuele-hulpmiddelen-presentaties .best-practices li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.post-visuele-hulpmiddelen-presentaties .centered-image {
  margin: var(--space-lg) auto;
  max-width: 800px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-visuele-hulpmiddelen-presentaties .centered-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Implementation Section */
.post-visuele-hulpmiddelen-presentaties .implementation-section {
  background-color: var(--color-light);
  position: relative;
  padding-bottom: var(--space-xxl);
}

.post-visuele-hulpmiddelen-presentaties .implementation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  opacity: 0.7;
  z-index: -1;
}

.post-visuele-hulpmiddelen-presentaties .implementation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.post-visuele-hulpmiddelen-presentaties .step {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-visuele-hulpmiddelen-presentaties .step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-visuele-hulpmiddelen-presentaties .step h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h5);
}

.post-visuele-hulpmiddelen-presentaties .conclusion {
  background-color: rgba(30, 95, 116, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  border-left: 4px solid var(--color-primary);
}

.post-visuele-hulpmiddelen-presentaties .conclusion h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Related Posts Section */
.post-visuele-hulpmiddelen-presentaties .related-posts-section {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xl) 0;
}

.post-visuele-hulpmiddelen-presentaties .related-posts-section h2 {
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-visuele-hulpmiddelen-presentaties .related-posts-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: var(--space-sm) auto 0;
}

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

.post-visuele-hulpmiddelen-presentaties .related-post {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  color: var(--color-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-visuele-hulpmiddelen-presentaties .related-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-visuele-hulpmiddelen-presentaties .related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-visuele-hulpmiddelen-presentaties .related-post .post-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-visuele-hulpmiddelen-presentaties .related-post h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-visuele-hulpmiddelen-presentaties .related-post p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-visuele-hulpmiddelen-presentaties .related-post .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-visuele-hulpmiddelen-presentaties .principles-section .section-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-visuele-hulpmiddelen-presentaties .strategies-grid,
  .post-visuele-hulpmiddelen-presentaties .implementation-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-visuele-hulpmiddelen-presentaties .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-visuele-hulpmiddelen-presentaties .content-section {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 767px) {
  .post-visuele-hulpmiddelen-presentaties .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-visuele-hulpmiddelen-presentaties .post-hero .lead {
    font-size: var(--fs-body);
  }
  
  .post-visuele-hulpmiddelen-presentaties .strategies-grid,
  .post-visuele-hulpmiddelen-presentaties .implementation-steps,
  .post-visuele-hulpmiddelen-presentaties .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-visuele-hulpmiddelen-presentaties .content-section {
    padding: var(--space-lg) 0;
  }
  
  .post-visuele-hulpmiddelen-presentaties .best-practices,
  .post-visuele-hulpmiddelen-presentaties .conclusion {
    padding: var(--space-md);
  }
}

.post-interculturele-communicatie-nederland {
  font-family: var(--font-primary);
  color: var(--color-dark);
}

/* Breadcrumbs */
.post-interculturele-communicatie-nederland .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  background-color: var(--color-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-interculturele-communicatie-nederland .breadcrumbs a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Hero Section */
.post-interculturele-communicatie-nederland .post-hero {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.post-interculturele-communicatie-nederland .post-hero h1 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h1);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-interculturele-communicatie-nederland .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: 1.6;
  color: var(--color-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Sections */
.post-interculturele-communicatie-nederland .content-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.post-interculturele-communicatie-nederland .content-section h2 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  position: relative;
}

.post-interculturele-communicatie-nederland .content-section h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-interculturele-communicatie-nederland .content-section h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.post-interculturele-communicatie-nederland .content-section p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* Section 1 - Two Column Layout */
.post-interculturele-communicatie-nederland .section-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

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

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

.post-interculturele-communicatie-nederland .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-interculturele-communicatie-nederland .image-container:hover img {
  transform: scale(1.02);
}

.post-interculturele-communicatie-nederland .key-points {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.post-interculturele-communicatie-nederland .key-points h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-interculturele-communicatie-nederland .key-points ul {
  padding-left: var(--space-md);
}

.post-interculturele-communicatie-nederland .key-points li {
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

/* Section 2 - Culture Comparison */
.post-interculturele-communicatie-nederland .culture-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.post-interculturele-communicatie-nederland .comparison-item {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-interculturele-communicatie-nederland .comparison-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-interculturele-communicatie-nederland .comparison-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-interculturele-communicatie-nederland .comparison-item p {
  margin-bottom: var(--space-sm);
}

.post-interculturele-communicatie-nederland .tip-box {
  background-color: var(--color-accent);
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  margin-top: var(--space-sm);
}

.post-interculturele-communicatie-nederland .tip-box p {
  margin-bottom: 0;
  font-size: var(--fs-small);
  color: var(--color-dark);
}

.post-interculturele-communicatie-nederland .image-text-container {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-xl);
}

.post-interculturele-communicatie-nederland .image-text-container .image-container,
.post-interculturele-communicatie-nederland .image-text-container .text-container {
  flex: 1;
}

/* Section 3 - Strategies */
.post-interculturele-communicatie-nederland .strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-interculturele-communicatie-nederland .strategy-card {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-interculturele-communicatie-nederland .strategy-card h4 {
  margin-bottom: var(--space-sm);
}

.post-interculturele-communicatie-nederland .strategy-tip {
  background-color: rgba(30, 95, 116, 0.1);
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
}

.post-interculturele-communicatie-nederland .conclusion-box {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  border-left: 5px solid var(--color-primary);
}

.post-interculturele-communicatie-nederland .action-steps {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.post-interculturele-communicatie-nederland .action-steps h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-interculturele-communicatie-nederland .action-steps ol {
  padding-left: var(--space-lg);
}

.post-interculturele-communicatie-nederland .action-steps li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-xs);
}

/* Related Posts Section */
.post-interculturele-communicatie-nederland .related-posts-section {
  padding: var(--space-xxl) 0;
  background-color: var(--color-light);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.post-interculturele-communicatie-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-family: var(--font-secondary);
  color: var(--color-primary);
}

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

.post-interculturele-communicatie-nederland .post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-interculturele-communicatie-nederland .post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.post-interculturele-communicatie-nederland .card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-interculturele-communicatie-nederland .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-interculturele-communicatie-nederland .post-card p {
  margin-bottom: var(--space-md);
  color: var(--color-gray);
  flex-grow: 1;
}

.post-interculturele-communicatie-nederland .post-card .btn-outline {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-normal);
  align-self: flex-start;
}

.post-interculturele-communicatie-nederland .post-card .btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-interculturele-communicatie-nederland .culture-comparison {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-interculturele-communicatie-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-interculturele-communicatie-nederland .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-interculturele-communicatie-nederland .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-interculturele-communicatie-nederland .section-content {
    flex-direction: column;
  }
  
  .post-interculturele-communicatie-nederland .culture-comparison {
    grid-template-columns: 1fr;
  }
  
  .post-interculturele-communicatie-nederland .image-text-container {
    flex-direction: column;
  }
  
  .post-interculturele-communicatie-nederland .strategies-grid {
    grid-template-columns: 1fr;
  }
  
  .post-interculturele-communicatie-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Styles for the Executive Presentation Coaching Page */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
}

/* Breadcrumbs Navigation */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-gray);
  background-color: var(--color-light);
  border-bottom: 1px solid rgba(108, 117, 125, 0.2);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(30, 95, 116, 0.8) 0%, rgba(30, 95, 116, 0.95) 100%);
  z-index: 1;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-light);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero .lead {
  font-size: var(--fs-h5);
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Sections - General */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .content-section {
  padding: var(--space-xxl) 0;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .content-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
  text-align: center;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .content-section h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .content-section h4 {
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

/* Section 1 - Challenges */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges {
  background-color: var(--color-light);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges .section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-lg);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges .text-content {
  flex: 1;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges .image-content {
  flex: 1;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Section 2 - Approach */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-approach {
  background-color: rgba(249, 219, 109, 0.1);
  position: relative;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-card {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h5);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--space-xs);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-features {
  list-style-type: none;
  padding: 0;
  margin-top: var(--space-sm);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-features li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: 1.5rem;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .pillar-features li::before {
  content: "→";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .approach-image {
  margin-top: var(--space-xl);
  text-align: center;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .approach-image img {
  max-width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Benefits */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-benefits {
  background-color: var(--color-light);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .benefit-item {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition-normal);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .benefit-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .coaching-process {
  margin-top: var(--space-xl);
  background-color: rgba(30, 95, 116, 0.05);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .process-steps {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .process-steps li {
  margin-bottom: var(--space-sm);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .conclusion {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius-md);
  font-weight: 500;
}

/* Related Posts Section */
.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-posts-section {
  background-color: var(--color-dark);
  padding: var(--space-xl) 0;
  color: var(--color-light);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-posts-section h2 {
  color: var(--color-light);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card {
  background-color: white;
  color: var(--color-dark);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card h3 a:hover {
  color: var(--color-secondary);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .approach-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .post-hero {
    padding: var(--space-lg) 0;
  }
  
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .content-section {
    padding: var(--space-lg) 0;
  }
  
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .section-challenges .section-content {
    flex-direction: column;
  }
  
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .approach-pillars,
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .benefits-grid,
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-executive-presentatie-coaching-nederlandse-leidinggevenden .coaching-process {
    padding: var(--space-md);
  }
}

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

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

.privacy-page__updated {
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

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

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

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

.privacy-page__contact {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-sm);
}

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-sm);
  }
}

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

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

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-weight: 700;
}

.terms-page__last-updated {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(43, 45, 66, 0.1);
}

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

.terms-page__section-title {
  color: var(--color-dark);
  font-size: var(--fs-h4);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

.cookie-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.cookie-page__text {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

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

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-gray);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-md) 0;
  }
  
  .cookie-page__title {
    margin-bottom: var(--space-md);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__text,
  .cookie-page__list-item {
    font-size: var(--fs-body);
  }
}

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

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

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

.thank-page__icon {
  margin: 0 auto var(--space-md);
  width: var(--icon-lg);
  height: var(--icon-lg);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

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

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

.thank-page__highlight {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-h6);
  margin-top: var(--space-md);
}

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

.thank-page__button {
  font-size: var(--fs-body);
  padding: var(--space-sm) var(--space-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__content {
    padding: var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--fs-h2);
  }
  
  .thank-page__message p {
    font-size: var(--fs-body);
  }
  
  .thank-page__highlight {
    font-size: var(--fs-body);
  }
}

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

  .error-404__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
  }

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-lg);
  }

  .error-404__title {
    margin-bottom: var(--space-md);
    line-height: 1;
  }

  .error-404__number {
    font-size: calc(var(--fs-h1) * 2.5);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.05em;
    display: block;
    margin-bottom: var(--space-sm);
    position: relative;
  }

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

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

  .error-404__message {
    font-size: var(--fs-body);
    color: var(--color-gray);
    max-width: 500px;
    margin-bottom: var(--space-lg);
  }

  .error-404__button {
    padding: 0.85rem 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

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

  .error-404__decoration {
    margin-top: var(--space-md);
  }

  .error-404__icon {
    color: var(--color-secondary);
    opacity: 0.2;
    transform: scale(1.5);
  }

  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-lg) var(--space-sm);
    }

    .error-404__number {
      font-size: calc(var(--fs-h1) * 2);
    }

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

    .error-404__message {
      font-size: var(--fs-small);
      padding: 0 var(--space-sm);
    }

    .error-404__number::after {
      width: 60px;
      height: 3px;
    }
  }
