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

:root {
  /* Color Scheme - Modern Dutch-inspired palette */
  --color-primary: #1e56a0;        /* Dutch blue */
  --color-secondary: #163172;      /* Deep blue */
  --color-accent: #f6b93b;         /* Warm yellow */
  --color-accent-secondary: #d63031; /* Dutch orange-red */
  --color-background: #f5f7fa;     /* Light gray-blue background */
  --color-surface: #ffffff;        /* White surface */
  --color-text-primary: #2d3748;   /* Dark blue-gray */
  --color-text-secondary: #4a5568; /* Medium blue-gray */
  --color-text-light: #718096;     /* Light blue-gray */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 1.75rem;   /* 28px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.5rem;    /* 40px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Spacing */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.5rem;     /* 24px */
  --space-6: 2rem;       /* 32px */
  --space-8: 3rem;       /* 48px */
  --space-10: 4rem;      /* 64px */
  --space-12: 5rem;      /* 80px */
  --space-16: 8rem;      /* 128px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Icons */
  --icon-xs: 1rem;      /* 16px */
  --icon-sm: 1.25rem;   /* 20px */
  --icon-md: 1.5rem;    /* 24px */
  --icon-lg: 2rem;      /* 32px */
  --icon-xl: 2.5rem;    /* 40px */
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
  color: var(--color-text-primary);
}

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

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

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

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

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

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

p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 767px) {
  :root {
    /* Adjust text sizes for mobile */
    --text-5xl: 2.25rem;  /* 36px */
    --text-4xl: 2rem;     /* 32px */
    --text-3xl: 1.75rem;  /* 28px */
    --text-2xl: 1.5rem;   /* 24px */
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-4);
  }
  
  .card {
    padding: var(--space-4);
  }
  
  /* Section spacing for mobile */
  section {
    padding: var(--space-10) 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Section spacing for tablet */
  section {
    padding: var(--space-12) 0;
  }
}

@media (min-width: 1024px) {
  /* Section spacing for desktop */
  section {
    padding: var(--space-16) 0;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) 0;
  border-bottom: 3px solid var(--color-primary);
  position: relative;
}

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

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

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

.header__logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.header__logo-icon {
  font-size: var(--text-3xl);
  margin-right: var(--space-2);
  color: var(--color-primary);
}

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

.header__logo-primary {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-secondary {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
}

/* Navigation Styles */
.header__nav {
  display: none;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  text-decoration: none;
  font-size: var(--text-base);
  padding: var(--space-2) var(--space-1);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

/* CTA Button Styles */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.header__mobile-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

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

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

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

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

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-2);
}

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

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

.header__mobile-nav-item {
  margin-bottom: var(--space-4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__mobile-nav-link {
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--text-xl);
  text-decoration: none;
  display: block;
  padding: var(--space-3) 0;
  transition: color var(--transition-fast);
}

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

.header__mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.header__mobile-cta {
  width: 100%;
  text-align: center;
  font-weight: 600;
}

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

.header__mobile-legal-link {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  text-decoration: none;
}

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

/* Orange accent dot for Dutch flair */
.header__nav-link::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent-secondary);
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.header__nav-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
    padding: var(--space-2) var(--space-5);
  }

  .header__mobile-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header__container {
    padding: 0 var(--space-6);
  }

  .header__logo-primary {
    font-size: var(--text-2xl);
  }

  .header__logo-secondary {
    font-size: var(--text-base);
  }

  .header__nav-link {
    font-size: var(--text-md);
  }
}

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

/* Hero Section */
.main .hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-background);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.main .hero-container {
  display: grid;
  grid-template-areas:
    "content visual"
    "stats stats";
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

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

.main .hero h1 {
  font-size: var(--text-5xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
  position: relative;
}

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

.main .hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  max-width: 90%;
  line-height: var(--leading-relaxed);
}

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

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

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

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

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

.main .hero-shape-1 {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.main .hero-shape-2 {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background-color: var(--color-accent);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  animation: float 12s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.main .hero-stats {
  grid-area: stats;
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-8);
  padding: var(--space-6);
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.main .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
}

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

.main .stat-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 180px;
}

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

.main .featured-posts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  z-index: 0;
}

.main .section-header {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.main .section-header h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

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

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

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

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

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

.main .post-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
  line-height: var(--leading-snug);
}

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

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

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

/* Features Section */
.main .features {
  padding: var(--space-16) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--color-background) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

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

.main .feature-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

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

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

.main .feature-card:hover::before {
  opacity: 1;
}

.main .feature-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  background-color: rgba(30, 86, 160, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.main .feature-card:hover .feature-icon {
  background-color: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.main .feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
}

.main .feature-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* How It Works Section */
.main .how-it-works {
  padding: var(--space-16) 0;
  background-color: var(--color-surface);
  position: relative;
}

.main .process-flow {
  position: relative;
  padding: var(--space-6) 0;
}

.main .process-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--color-primary);
  opacity: 0.3;
  transform: translateX(-50%);
}

.main .process-step {
  display: flex;
  margin-bottom: var(--space-10);
  position: relative;
}

.main .process-step:last-child {
  margin-bottom: 0;
}

.main .process-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-right: var(--space-5);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.main .process-content {
  flex: 1;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .process-step:hover .process-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.main .process-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.main .process-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.main .process-image {
  margin-top: var(--space-4);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

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

.main .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, rgba(30, 86, 160, 0.05) 0%, rgba(246, 185, 59, 0.05) 100%);
  z-index: 0;
}

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

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

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

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

.main .quote-icon {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: var(--space-3);
}

.main .testimonial-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.main .testimonial-rating {
  display: flex;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background-color: rgba(30, 86, 160, 0.05);
}

.main .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-3);
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.main .contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(30, 86, 160, 0.05);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

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

.main .contact-info {
  display: flex;
  flex-direction: column;
}

.main .contact-info .section-header {
  text-align: left;
  margin-bottom: var(--space-6);
}

.main .contact-benefits {
  margin-bottom: var(--space-6);
}

.main .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.main .benefit-item i {
  color: var(--color-primary);
  margin-right: var(--space-3);
  margin-top: 4px;
}

.main .benefit-item p {
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
}

.main .contact-image {
  margin-top: auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 300px;
}

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

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

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

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

.main .form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--color-text-primary);
}

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

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

.main .form-privacy {
  display: flex;
  align-items: flex-start;
}

.main .form-privacy input {
  width: auto;
  margin-top: 5px;
  margin-right: var(--space-2);
}

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

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

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

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

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

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

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

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .main .hero-container {
    grid-template-areas:
      "content"
      "visual"
      "stats";
    grid-template-columns: 1fr;
  }
  
  .main .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .main .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-subtitle {
    max-width: 100%;
  }
  
  .main .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .main .posts-grid,
  .main .features-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  
  .main .contact-info .section-header {
    text-align: center;
  }
  
  .main .contact::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 50%);
    height: 50%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .posts-grid,
  .main .features-grid,
  .main .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .main .process-step {
    flex-direction: column;
  }
  
  .main .process-number {
    margin-bottom: var(--space-4);
    margin-right: 0;
    align-self: center;
  }
  
  .main .process-flow::before {
    display: none;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.footer {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  padding: var(--space-8) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
}

.footer__brand {
  position: relative;
}

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

.footer__tagline {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 350px;
  margin-bottom: var(--space-4);
}

.footer__accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: var(--space-4);
  position: relative;
  transition: width var(--transition-normal);
}

.footer__brand:hover .footer__accent-line {
  width: 100px;
}

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

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

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

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

.footer__nav-link,
.footer__resource-link {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-3);
}

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

.footer__nav-link:hover,
.footer__resource-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
  text-decoration: none;
}

.footer__nav-link:hover:before,
.footer__resource-link:hover:before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.footer__newsletter-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
}

.footer__form-group {
  display: flex;
  margin-bottom: var(--space-3);
}

.footer__input {
  flex-grow: 1;
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--color-background);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.footer__submit {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

.footer__divider {
  height: 1px;
  background-color: rgba(113, 128, 150, 0.2);
  margin: var(--space-5) 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.footer__legal-item {
  margin: 0 var(--space-2);
  position: relative;
}

.footer__legal-item:not(:last-child):after {
  content: '•';
  position: absolute;
  right: -12px;
  color: var(--color-text-light);
}

.footer__legal-link {
  color: var(--color-text-light);
  font-size: var(--text-xs);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer__copyright {
  text-align: center;
}

.footer__copyright-text {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.footer__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer__decoration-line {
  position: absolute;
  background-color: var(--color-primary);
  opacity: 0.03;
  border-radius: var(--border-radius-pill);
}

.footer__decoration-line--1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -150px;
  right: -100px;
  transform: rotate(-15deg);
}

.footer__decoration-line--2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: -100px;
  right: 30%;
  opacity: 0.02;
}

.footer__decoration-line--3 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: 20%;
  left: -50px;
  opacity: 0.015;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__bottom {
    flex-direction: row;
  }
  
  .footer__legal-list {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  
  .footer__decoration-line--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
  }
  
  .footer__decoration-line--2 {
    width: 250px;
    height: 250px;
  }
  
  .footer__decoration-line--3 {
    width: 200px;
    height: 200px;
  }
}

.privacy-page {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  padding: var(--space-8) 0;
}

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

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

.privacy-page__last-updated {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
  font-style: italic;
}

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

.privacy-page__section-title {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
}

.privacy-page__subsection-title {
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.privacy-page__text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

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

.privacy-page__list-item {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

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

.privacy-page__contact-item {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page__container {
    padding: var(--space-4);
  }
  
  .privacy-page__title {
    font-size: var(--text-3xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-xl);
  }
  
  .privacy-page__subsection-title {
    font-size: var(--text-md);
  }
  
  .privacy-page__text,
  .privacy-page__list-item,
  .privacy-page__contact-item {
    font-size: var(--text-sm);
  }
}

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

.terms-page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6);
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.terms-page__title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-align: center;
}

.terms-page__last-updated {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-background);
}

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

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

.terms-page p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

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

.terms-page__list li {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

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

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

.cookie-page__content {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

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

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

.cookie-page__section-title {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.cookie-page__text {
  color: var(--color-text-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

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

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

.cookie-page__list-item {
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

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

.cookie-page__footer {
  margin-top: var(--space-10);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-text-light);
}

@media (max-width: 767px) {
  .cookie-page__content {
    padding: var(--space-5);
  }
  
  .cookie-page__title {
    font-size: var(--text-3xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-xl);
  }
  
  .cookie-page__text {
    font-size: var(--text-sm);
  }
}

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

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

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

.thank-page__header {
  margin-bottom: var(--space-6);
}

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

.thank-page__message {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
}

.thank-page__details {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-normal);
}

.thank-page__confirmation {
  margin: var(--space-6) 0;
  padding: var(--space-4);
  background-color: rgba(30, 86, 160, 0.05);
  border-radius: var(--border-radius-md);
  display: inline-block;
}

.thank-page__confirmation-text {
  color: var(--color-primary);
  font-weight: 500;
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.thank-page__confirmation-text .icon {
  color: var(--color-primary);
  margin-right: var(--space-2);
}

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

.thank-page__button {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-6) 0;
  }
  
  .thank-page__content {
    padding: var(--space-5);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__message {
    font-size: var(--text-lg);
  }
  
  .thank-page__details {
    font-size: var(--text-base);
  }
  
  .thank-page__confirmation {
    padding: var(--space-3);
    margin: var(--space-4) 0;
  }
  
  .thank-page__confirmation-text {
    font-size: var(--text-base);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-10) 0;
  position: relative;
}

.category-page__hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-4);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
}

.category-page__hero-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  max-width: 800px;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

.post-card__content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

.post-card__content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

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

/* Tips Section */
.category-page__tips {
  background-color: var(--color-surface);
  padding: var(--space-10) 0;
  position: relative;
}

.category-page__section-intro {
  max-width: 800px;
  margin-bottom: var(--space-6);
  font-size: var(--text-md);
  color: var(--color-text-secondary);
}

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

.category-page__tip-card {
  padding: var(--space-5);
  background-color: var(--color-background);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.category-page__tip-card .icon-container {
  background-color: var(--color-primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.category-page__tip-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.category-page__tip-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Challenges Section */
.category-page__challenges {
  background-color: var(--color-background);
  padding: var(--space-10) 0;
}

.category-page__challenges-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.category-page__challenge-item {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.category-page__challenge-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.category-page__challenge-item p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.category-page__challenge-item p:last-child {
  margin-bottom: 0;
}

.category-page__challenge-item strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__hero h1 {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__hero h1 {
    margin-bottom: var(--space-5);
  }
}

.post-effectieve-vergadertechnieken-nederland {
  color: var(--color-text-primary);
  background-color: var(--color-background);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-effectieve-vergadertechnieken-nederland .breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background-color: var(--color-background);
}

.post-effectieve-vergadertechnieken-nederland .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-effectieve-vergadertechnieken-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-effectieve-vergadertechnieken-nederland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.post-effectieve-vergadertechnieken-nederland .post-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.post-effectieve-vergadertechnieken-nederland .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-4);
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
}

.post-effectieve-vergadertechnieken-nederland .post-hero .lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-surface);
}

/* Content Sections */
.post-effectieve-vergadertechnieken-nederland .content-section {
  padding: var(--space-12) 0;
}

.post-effectieve-vergadertechnieken-nederland .section-light {
  background-color: var(--color-surface);
}

.post-effectieve-vergadertechnieken-nederland .section-dark {
  background-color: var(--color-secondary);
  color: var(--color-surface);
}

.post-effectieve-vergadertechnieken-nederland .section-dark h2,
.post-effectieve-vergadertechnieken-nederland .section-dark h3 {
  color: var(--color-surface);
}

/* Content Grid Layout */
.post-effectieve-vergadertechnieken-nederland .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .post-effectieve-vergadertechnieken-nederland .content-grid {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.post-effectieve-vergadertechnieken-nederland .content-text {
  margin-bottom: var(--space-4);
}

.post-effectieve-vergadertechnieken-nederland .content-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}

/* Techniques Grid */
.post-effectieve-vergadertechnieken-nederland .techniques-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .post-effectieve-vergadertechnieken-nederland .techniques-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-effectieve-vergadertechnieken-nederland .technique-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-effectieve-vergadertechnieken-nederland .technique-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-accent);
}

.post-effectieve-vergadertechnieken-nederland .technique-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-4) 0 0 0;
}

.post-effectieve-vergadertechnieken-nederland .technique-list li {
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: var(--space-5);
}

.post-effectieve-vergadertechnieken-nederland .technique-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Quote Container */
.post-effectieve-vergadertechnieken-nederland .quote-container {
  margin: var(--space-8) auto;
  max-width: 800px;
  text-align: center;
}

.post-effectieve-vergadertechnieken-nederland .dutch-quote {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-surface);
  position: relative;
  padding: var(--space-6) var(--space-8);
  line-height: var(--leading-relaxed);
}

.post-effectieve-vergadertechnieken-nederland .dutch-quote::before,
.post-effectieve-vergadertechnieken-nederland .dutch-quote::after {
  content: """;
  font-size: var(--text-5xl);
  position: absolute;
  color: var(--color-accent);
  opacity: 0.5;
}

.post-effectieve-vergadertechnieken-nederland .dutch-quote::before {
  top: 0;
  left: 0;
}

.post-effectieve-vergadertechnieken-nederland .dutch-quote::after {
  content: """;
  bottom: -20px;
  right: 0;
}

/* Digital Tips */
.post-effectieve-vergadertechnieken-nederland .digital-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

@media (min-width: 768px) {
  .post-effectieve-vergadertechnieken-nederland .digital-tips {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-effectieve-vergadertechnieken-nederland .digital-tip {
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-effectieve-vergadertechnieken-nederland .digital-tip:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-effectieve-vergadertechnieken-nederland .digital-tip h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

/* Conclusion */
.post-effectieve-vergadertechnieken-nederland .conclusion {
  margin-top: var(--space-8);
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.post-effectieve-vergadertechnieken-nederland .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

/* Related Posts Section */
.post-effectieve-vergadertechnieken-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-10) 0;
}

.post-effectieve-vergadertechnieken-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--color-text-primary);
}

.post-effectieve-vergadertechnieken-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .post-effectieve-vergadertechnieken-nederland .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-effectieve-vergadertechnieken-nederland .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-effectieve-vergadertechnieken-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.post-effectieve-vergadertechnieken-nederland .related-post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-effectieve-vergadertechnieken-nederland .related-post-card h3 a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.post-effectieve-vergadertechnieken-nederland .related-post-card p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
  flex-grow: 1;
}

.post-effectieve-vergadertechnieken-nederland .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: var(--space-1);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.post-effectieve-vergadertechnieken-nederland .read-more:hover {
  border-bottom-color: var(--color-primary);
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .post-effectieve-vergadertechnieken-nederland .post-hero {
    padding: var(--space-8) 0;
  }
  
  .post-effectieve-vergadertechnieken-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-effectieve-vergadertechnieken-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-effectieve-vergadertechnieken-nederland .content-section {
    padding: var(--space-8) 0;
  }
  
  .post-effectieve-vergadertechnieken-nederland h2 {
    font-size: var(--text-2xl);
  }
  
  .post-effectieve-vergadertechnieken-nederland .dutch-quote {
    font-size: var(--text-lg);
    padding: var(--space-4);
  }
}

/* Page-specific styles */
.post-directe-communicatie-nederland {
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-directe-communicatie-nederland .breadcrumbs {
  padding: var(--space-4) 0;
  background-color: var(--color-background);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.post-directe-communicatie-nederland .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-directe-communicatie-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-directe-communicatie-nederland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-10) 0;
  position: relative;
}

.post-directe-communicatie-nederland .post-hero h1 {
  color: var(--color-surface);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.post-directe-communicatie-nederland .post-hero .lead {
  font-size: var(--text-lg);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
}

.post-directe-communicatie-nederland .hero-image {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-4);
  box-shadow: var(--shadow-lg);
}

/* Content Sections */
.post-directe-communicatie-nederland .content-section {
  padding: var(--space-12) 0;
}

.post-directe-communicatie-nederland .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  position: relative;
}

.post-directe-communicatie-nederland .content-section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: -12px;
  left: 0;
}

.post-directe-communicatie-nederland .content-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
}

.post-directe-communicatie-nederland .content-section h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
  font-weight: 600;
}

.post-directe-communicatie-nederland .content-section p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.post-directe-communicatie-nederland .content-section ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
}

.post-directe-communicatie-nederland .content-section li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-normal);
}

/* Section 1 - Understanding */
.post-directe-communicatie-nederland .section-understanding {
  background-color: var(--color-surface);
}

.post-directe-communicatie-nederland .section-content {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  flex-wrap: wrap;
}

.post-directe-communicatie-nederland .text-content {
  flex: 1;
  min-width: 300px;
}

.post-directe-communicatie-nederland .image-content {
  flex: 1;
  min-width: 300px;
}

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

/* Section 2 - Techniques */
.post-directe-communicatie-nederland .section-techniques {
  background-color: var(--color-background);
}

.post-directe-communicatie-nederland .techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.post-directe-communicatie-nederland .technique-card {
  padding: var(--space-5);
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-directe-communicatie-nederland .dos-donts {
  display: flex;
  gap: var(--space-5);
  margin: var(--space-6) 0;
  flex-wrap: wrap;
}

.post-directe-communicatie-nederland .dos,
.post-directe-communicatie-nederland .donts {
  flex: 1;
  min-width: 250px;
  padding: var(--space-5);
  border-radius: var(--border-radius-lg);
}

.post-directe-communicatie-nederland .dos {
  background-color: rgba(30, 86, 160, 0.1);
  border-left: 4px solid var(--color-primary);
}

.post-directe-communicatie-nederland .donts {
  background-color: rgba(214, 48, 49, 0.1);
  border-left: 4px solid var(--color-accent-secondary);
}

.post-directe-communicatie-nederland .techniques-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: var(--space-6) auto 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Cultural */
.post-directe-communicatie-nederland .section-cultural {
  background-color: var(--color-surface);
}

.post-directe-communicatie-nederland .cultural-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.post-directe-communicatie-nederland .tip-item {
  padding: var(--space-4);
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-directe-communicatie-nederland .tip-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-directe-communicatie-nederland .case-study {
  background-color: rgba(246, 185, 59, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.post-directe-communicatie-nederland .key-takeaways {
  background-color: var(--color-background);
  padding: var(--space-5);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-6);
}

.post-directe-communicatie-nederland .key-takeaways ul {
  margin-bottom: 0;
}

/* Related Posts */
.post-directe-communicatie-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-12) 0;
}

.post-directe-communicatie-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.post-directe-communicatie-nederland .related-post-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  padding: var(--space-5);
  height: 100%;
}

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

.post-directe-communicatie-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.post-directe-communicatie-nederland .related-post-card p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
  flex-grow: 1;
}

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

/* Responsive Styles */
@media (max-width: 767px) {
  .post-directe-communicatie-nederland .post-hero {
    padding: var(--space-6) 0;
  }
  
  .post-directe-communicatie-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-directe-communicatie-nederland .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-directe-communicatie-nederland .content-section {
    padding: var(--space-8) 0;
  }
  
  .post-directe-communicatie-nederland .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-directe-communicatie-nederland .techniques-grid,
  .post-directe-communicatie-nederland .cultural-tips {
    grid-template-columns: 1fr;
  }
  
  .post-directe-communicatie-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-directe-communicatie-nederland .dos-donts {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-directe-communicatie-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-directe-communicatie-nederland .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base Styles for Post Page */
.post-interculturele-communicatie-nederland {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

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

.post-interculturele-communicatie-nederland .breadcrumbs a {
  color: var(--color-text-secondary);
  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 {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.post-interculturele-communicatie-nederland .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, rgba(30,86,160,0) 0%, rgba(30,86,160,1) 100%);
  z-index: 1;
}

.post-interculturele-communicatie-nederland .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.post-interculturele-communicatie-nederland .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: white;
  line-height: var(--leading-tight);
}

.post-interculturele-communicatie-nederland .post-hero .lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  max-width: 90%;
}

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

.post-interculturele-communicatie-nederland .section-light {
  background-color: var(--color-surface);
}

.post-interculturele-communicatie-nederland .section-dark {
  background-color: var(--color-secondary);
  color: white;
}

.post-interculturele-communicatie-nederland .section-dark h2,
.post-interculturele-communicatie-nederland .section-dark h3 {
  color: white;
}

.post-interculturele-communicatie-nederland h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  font-weight: 700;
}

.post-interculturele-communicatie-nederland h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.post-interculturele-communicatie-nederland p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

/* Two Column Layout */
.post-interculturele-communicatie-nederland .two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .post-interculturele-communicatie-nederland .two-column-layout {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.post-interculturele-communicatie-nederland .image-column img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Tips Grid */
.post-interculturele-communicatie-nederland .tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

@media (min-width: 768px) {
  .post-interculturele-communicatie-nederland .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-interculturele-communicatie-nederland .tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-interculturele-communicatie-nederland .tip-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.post-interculturele-communicatie-nederland .tip-card ul {
  padding-left: var(--space-5);
  margin-bottom: var(--space-3);
}

.post-interculturele-communicatie-nederland .tip-card li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

.post-interculturele-communicatie-nederland .section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin: var(--space-8) auto 0;
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Strategies Container */
.post-interculturele-communicatie-nederland .strategies-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .post-interculturele-communicatie-nederland .strategies-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.post-interculturele-communicatie-nederland .strategy-card h3 {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.post-interculturele-communicatie-nederland .conclusion {
  background-color: rgba(30,86,160,0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-5);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-top: var(--space-8);
}

/* Related Posts Section */
.post-interculturele-communicatie-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-12) 0;
  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-8);
}

.post-interculturele-communicatie-nederland .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .post-interculturele-communicatie-nederland .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.post-interculturele-communicatie-nederland .post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-interculturele-communicatie-nederland .post-card h3 {
  padding: var(--space-4) var(--space-4) var(--space-2);
  font-size: var(--text-lg);
}

.post-interculturele-communicatie-nederland .post-card p {
  padding: 0 var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.post-interculturele-communicatie-nederland .post-card .read-more {
  display: inline-block;
  margin: var(--space-2) var(--space-4) var(--space-4);
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.post-interculturele-communicatie-nederland .post-card .read-more:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-interculturele-communicatie-nederland .post-hero {
    padding: var(--space-8) 0;
  }
  
  .post-interculturele-communicatie-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-interculturele-communicatie-nederland .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-interculturele-communicatie-nederland .content-section {
    padding: var(--space-8) 0;
  }
  
  .post-interculturele-communicatie-nederland h2 {
    font-size: var(--text-2xl);
  }
}

.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* Base styles for this page */
.post-digitale-communicatietools-nederland {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-digitale-communicatietools-nederland .breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-digitale-communicatietools-nederland .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-digitale-communicatietools-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-digitale-communicatietools-nederland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-12) 0;
  text-align: center;
}

.post-digitale-communicatietools-nederland .post-hero h1 {
  color: var(--color-surface);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-digitale-communicatietools-nederland .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Content Sections - General */
.post-digitale-communicatietools-nederland .content-section {
  padding: var(--space-12) 0;
}

.post-digitale-communicatietools-nederland .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.post-digitale-communicatietools-nederland .text-content {
  flex: 1;
}

.post-digitale-communicatietools-nederland .image-content {
  flex: 1;
}

.post-digitale-communicatietools-nederland .content-section img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-digitale-communicatietools-nederland h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.post-digitale-communicatietools-nederland h3 {
  color: var(--color-secondary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.post-digitale-communicatietools-nederland h4 {
  color: var(--color-text-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

/* Email Section */
.post-digitale-communicatietools-nederland .email-section {
  background-color: var(--color-surface);
}

.post-digitale-communicatietools-nederland .feature-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
}

.post-digitale-communicatietools-nederland .feature-list li {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
}

.post-digitale-communicatietools-nederland .feature-icon {
  color: var(--color-accent);
  margin-right: var(--space-2);
  font-weight: bold;
}

/* Messaging Section */
.post-digitale-communicatietools-nederland .messaging-section {
  background-color: var(--color-background);
}

.post-digitale-communicatietools-nederland .tool-comparison {
  margin-top: var(--space-6);
}

.post-digitale-communicatietools-nederland .tool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.post-digitale-communicatietools-nederland .tool-card {
  background-color: var(--color-surface);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-digitale-communicatietools-nederland .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-digitale-communicatietools-nederland .tool-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.post-digitale-communicatietools-nederland .tool-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Virtual Meetings Section */
.post-digitale-communicatietools-nederland .virtual-meetings-section {
  background-color: var(--color-surface);
}

.post-digitale-communicatietools-nederland .meeting-tips {
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}

.post-digitale-communicatietools-nederland .numbered-list {
  list-style-position: inside;
  padding-left: var(--space-4);
}

.post-digitale-communicatietools-nederland .numbered-list li {
  margin-bottom: var(--space-4);
}

.post-digitale-communicatietools-nederland .numbered-list strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.post-digitale-communicatietools-nederland .numbered-list p {
  margin-top: var(--space-1);
  margin-left: var(--space-5);
}

.post-digitale-communicatietools-nederland .conclusion {
  margin-bottom: var(--space-6);
}

.post-digitale-communicatietools-nederland .key-takeaways {
  background-color: rgba(30, 86, 160, 0.05);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-4);
}

.post-digitale-communicatietools-nederland .key-takeaways h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.post-digitale-communicatietools-nederland .key-takeaways ul {
  padding-left: var(--space-4);
}

.post-digitale-communicatietools-nederland .key-takeaways li {
  margin-bottom: var(--space-2);
}

.post-digitale-communicatietools-nederland .virtual-meeting-image {
  margin-top: var(--space-6);
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Related Posts Section */
.post-digitale-communicatietools-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-12) 0;
}

.post-digitale-communicatietools-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.post-digitale-communicatietools-nederland .post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

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

.post-digitale-communicatietools-nederland .post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-digitale-communicatietools-nederland .card-content {
  padding: var(--space-4);
}

.post-digitale-communicatietools-nederland .post-card h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-2);
}

.post-digitale-communicatietools-nederland .post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.post-digitale-communicatietools-nederland .read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-digitale-communicatietools-nederland .read-more:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .post-digitale-communicatietools-nederland .section-content {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .post-digitale-communicatietools-nederland .tool-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-communicatietools-nederland .post-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-communicatietools-nederland .post-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .post-digitale-communicatietools-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
}

@media (max-width: 767px) {
  .post-digitale-communicatietools-nederland .tool-cards {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-communicatietools-nederland .post-cards {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-communicatietools-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-digitale-communicatietools-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-digitale-communicatietools-nederland .content-section {
    padding: var(--space-8) 0;
  }
  
  .post-digitale-communicatietools-nederland .post-hero {
    padding: var(--space-8) 0;
  }
  
  .post-digitale-communicatietools-nederland .related-posts-section {
    padding: var(--space-8) 0;
  }
}

  /* Page-specific styles */
  .post-informele-communicatie-werkplek {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
  }
  
  /* Breadcrumbs */
  .post-informele-communicatie-werkplek .breadcrumbs {
    padding: var(--space-3) 0;
    background-color: var(--color-surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: var(--text-sm);
    color: var(--color-text-light);
  }
  
  .post-informele-communicatie-werkplek .breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-informele-communicatie-werkplek .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-informele-communicatie-werkplek .post-hero {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: var(--space-12) 0;
    text-align: center;
  }
  
  .post-informele-communicatie-werkplek .post-hero h1 {
    color: var(--color-surface);
    margin-bottom: var(--space-4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .post-informele-communicatie-werkplek .post-hero .lead {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-surface);
  }
  
  /* Content Sections */
  .post-informele-communicatie-werkplek .content-section {
    padding: var(--space-16) 0;
  }
  
  .post-informele-communicatie-werkplek .light-section {
    background-color: var(--color-surface);
  }
  
  .post-informele-communicatie-werkplek .dark-section {
    background-color: var(--color-background);
  }
  
  .post-informele-communicatie-werkplek .section-content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
  
  .post-informele-communicatie-werkplek .text-content {
    flex: 1;
  }
  
  .post-informele-communicatie-werkplek .image-container {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .post-informele-communicatie-werkplek .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
  }
  
  .post-informele-communicatie-werkplek .image-container:hover img {
    transform: scale(1.02);
  }
  
  /* Tips Container */
  .post-informele-communicatie-werkplek .tips-container {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-md);
  }
  
  .post-informele-communicatie-werkplek .tips-container h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
  }
  
  .post-informele-communicatie-werkplek .network-tips {
    list-style-type: none;
    padding: 0;
  }
  
  .post-informele-communicatie-werkplek .network-tips li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
  }
  
  .post-informele-communicatie-werkplek .network-tips li:last-child {
    border-bottom: none;
  }
  
  .post-informele-communicatie-werkplek .network-tips li:before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    margin-right: var(--space-2);
  }
  
  /* Key Insights */
  .post-informele-communicatie-werkplek .key-insights {
    background-color: rgba(30, 86, 160, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    border-left: 4px solid var(--color-primary);
  }
  
  .post-informele-communicatie-werkplek .key-insights h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-4);
  }
  
  .post-informele-communicatie-werkplek .key-insights ol {
    padding-left: var(--space-5);
  }
  
  .post-informele-communicatie-werkplek .key-insights li {
    margin-bottom: var(--space-4);
  }
  
  .post-informele-communicatie-werkplek .key-insights h4 {
    color: var(--color-text-primary);
    font-size: var(--text-md);
    margin-bottom: var(--space-2);
  }
  
  /* Related Posts */
  .post-informele-communicatie-werkplek .related-posts-section {
    background-color: var(--color-primary);
    padding: var(--space-16) 0;
    color: var(--color-surface);
  }
  
  .post-informele-communicatie-werkplek .related-posts-section h2 {
    color: var(--color-surface);
    text-align: center;
    margin-bottom: var(--space-8);
  }
  
  .post-informele-communicatie-werkplek .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  
  .post-informele-communicatie-werkplek .related-post-card {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .post-informele-communicatie-werkplek .related-post-card:hover {
    transform: translateY(-5px);
  }
  
  .post-informele-communicatie-werkplek .related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .post-informele-communicatie-werkplek .card-content {
    padding: var(--space-4);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .post-informele-communicatie-werkplek .card-content h3 {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
  }
  
  .post-informele-communicatie-werkplek .card-content p {
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
  }
  
  .post-informele-communicatie-werkplek .read-more {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: var(--space-1);
    align-self: flex-start;
  }
  
  .post-informele-communicatie-werkplek .read-more::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform var(--transition-normal);
  }
  
  .post-informele-communicatie-werkplek .read-more:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-informele-communicatie-werkplek .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-informele-communicatie-werkplek .section-content {
      flex-direction: column;
    }
    
    .post-informele-communicatie-werkplek .image-container {
      width: 100%;
      margin-top: var(--space-6);
    }
  }
  
  @media (max-width: 767px) {
    .post-informele-communicatie-werkplek .post-hero {
      padding: var(--space-8) 0;
    }
    
    .post-informele-communicatie-werkplek .post-hero .lead {
      font-size: var(--text-lg);
    }
    
    .post-informele-communicatie-werkplek .content-section {
      padding: var(--space-8) 0;
    }
    
    .post-informele-communicatie-werkplek .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-informele-communicatie-werkplek .related-post-card {
      margin-bottom: var(--space-6);
    }
  }

/* Privacy Page Styles */
.privacy-page {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
  margin: var(--space-8) auto;
}

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

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

.privacy-page__last-updated {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: var(--space-2);
}

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-accent);
}

.privacy-page__section h3 {
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.privacy-page__section p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.privacy-page__list {
  list-style-type: disc;
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.privacy-page__list li {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
  padding-left: var(--space-2);
}

.privacy-page__list li strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

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

/* Responsive Adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-4);
    margin: var(--space-4) auto;
  }

  .privacy-page__header {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
  }

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

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

/* Terms Page Styles */
.terms-page {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  margin: var(--space-8) auto;
}

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

.terms-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2);
}

.terms-page__last-updated {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: var(--space-2);
}

.terms-page__content {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
}

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

.terms-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: var(--space-2);
}

.terms-page__section p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

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

.terms-page__list li {
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-4);
    margin: var(--space-5) auto;
  }
  
  .terms-page__header h1 {
    font-size: var(--text-3xl);
  }
  
  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-6);
  }
  
  .terms-page__list {
    margin-left: var(--space-4);
  }
}

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

.cookie-page__container {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  max-width: 960px;
}

.cookie-page__title {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--space-4);
}

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

.cookie-page__section-title {
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
}

.cookie-page__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

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

.cookie-page__list-item {
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.cookie-page__list-title {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  margin-top: var(--space-3);
}

.cookie-page__footer {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-text-light);
}

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-align: right;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .cookie-page__container {
    padding: var(--space-4);
  }
  
  .cookie-page__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-6);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
  }
  
  .cookie-page__list {
    margin-left: var(--space-4);
  }
}

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

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

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

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

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

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

.thank-page__text {
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

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

.thank-page__button {
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
}

.thank-page__button:hover {
  text-decoration: none;
}

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

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

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404__number {
    font-family: var(--font-secondary);
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    position: relative;
    letter-spacing: -0.05em;
    opacity: 0.9;
  }

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

  .error-404__title {
    font-family: var(--font-secondary);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
  }

  .error-404__message {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 90%;
  }

  .error-404__button {
    margin-top: var(--space-2);
    padding: var(--space-3) var(--space-6);
    transition: all var(--transition-normal);
  }

  .error-404__button:hover {
    text-decoration: none;
  }

  .error-404__icon {
    margin-right: var(--space-2);
    transition: transform var(--transition-normal);
  }

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

  @media (max-width: 767px) {
    .error-404__number {
      font-size: 8rem;
    }

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

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

    .error-404 {
      padding: var(--space-8) var(--space-4);
    }
  }
