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

:root {
  /* Kleurenschema - Moderne Dutch Design geïnspireerd */
  --color-primary: #ff5722; /* Oranje, verwijst naar Nederlandse identiteit */
  --color-secondary: #1e3d59; /* Donkerblauw, verwijst naar Hollandse luchten */
  --color-accent: #00bcd4; /* Turquoise, verwijst naar water/innovatie */
  --color-neutral-light: #f5f7fa; /* Lichte achtergrond */
  --color-neutral-medium: #e0e6ed; /* Medium grijstint voor borders */
  --color-neutral-dark: #4a4a4a; /* Donkere tekst */
  --color-white: #ffffff;
  --color-black: #111111;
  
  /* Typografie */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  /* Tekst groottes */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem;  /* 36px */
  --text-4xl: 3rem;     /* 48px */
  --text-5xl: 3.75rem;  /* 60px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  --space-4xl: 5rem;    /* 80px */
  --space-5xl: 7.5rem;  /* 120px */
  
  /* Border radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem;  /* 8px */
  --radius-lg: 1rem;    /* 16px */
  --radius-xl: 1.5rem;  /* 24px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  
  /* Icon sizes */
  --icon-xs: 1rem;     /* 16px */
  --icon-sm: 1.25rem;  /* 20px */
  --icon-md: 1.5rem;   /* 24px */
  --icon-lg: 2rem;     /* 32px */
  --icon-xl: 2.5rem;   /* 40px */
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

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

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

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

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

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

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

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

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

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

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

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

p {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  :root {
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
    --text-2xl: 1.75rem;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --text-4xl: 2.25rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --text-xl: 1.25rem;
  }
  
  h1, h2, h3 {
    margin-bottom: var(--space-md);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .card {
    padding: var(--space-lg);
  }
}
.header {
  position: relative;
  background-color: var(--color-white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__text {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.logo__text--accent {
  color: var(--color-primary);
  font-weight: 700;
}

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

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

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

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

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

.nav__link:hover::after {
  width: 80%;
}

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

.header__cta {
  display: inline-flex;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

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

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

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

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

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

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  overflow-y: auto;
}

.header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.header__mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
}

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

.header__mobile-close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-normal);
}

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

.header__mobile-nav {
  flex: 1;
  padding: var(--space-xl) 0;
}

.header__mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.header__mobile-nav-link {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  display: block;
  transition: all var(--transition-normal);
  padding: var(--space-sm) 0;
}

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

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

.header__mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

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

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

/* Design element: Decorative dots pattern */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--color-neutral-medium) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1;
}

/* Design element: Accent line */
.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

/* Media Queries */
@media (max-width: 1024px) {
  .nav__list {
    gap: var(--space-md);
  }
  
  .header__cta {
    padding: var(--space-xs) var(--space-md);
  }
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .logo__text {
    font-size: var(--text-lg);
  }
}

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

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

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

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

.main .hero-subtitle {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

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

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

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  transform: rotate(15deg);
  top: -20px;
  right: 20px;
  z-index: 1;
}

.main .hero-shape-2 {
  width: 250px;
  height: 250px;
  background-color: var(--color-secondary);
  opacity: 0.1;
  transform: rotate(-15deg);
  bottom: -20px;
  right: 80px;
  z-index: 1;
}

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

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

.main .hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.main .hero-accent {
  position: absolute;
  bottom: 30px;
  left: -40px;
  display: flex;
  align-items: center;
  z-index: 3;
}

.main .accent-dot {
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

.main .accent-line {
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0 var(--space-xs);
}

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

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

.main .section-description {
  font-size: var(--text-lg);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main .principle-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: var(--radius-full);
}

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

/* Learning Path Section */
.main .learning-path {
  padding: var(--space-4xl) 0;
  background-color: var(--color-white);
  position: relative;
}

.main .path-stages {
  margin-top: var(--space-2xl);
}

.main .path-stage {
  display: flex;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.main .path-stage:last-child {
  margin-bottom: 0;
}

.main .path-stage::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 29px;
  width: 2px;
  height: calc(100% - 60px);
  background-color: var(--color-neutral-medium);
  z-index: 1;
}

.main .path-stage:last-child::before {
  display: none;
}

.main .stage-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  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-xl);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.main .stage-content {
  flex-grow: 1;
}

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

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

.main .stage-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .stage-content img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

.main .testimonial-content > p {
  margin-bottom: var(--space-lg);
  font-style: italic;
  flex-grow: 1;
}

.main .testimonial-author {
  margin-top: auto;
  border-top: 1px solid var(--color-neutral-medium);
  padding-top: var(--space-md);
}

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

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

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

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

.main .contact-content .section-header {
  text-align: left;
}

.main .contact-content .section-description {
  text-align: left;
}

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

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

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

.main .form-group label {
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow 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(255, 87, 34, 0.2);
}

.main .privacy-consent {
  flex-direction: row !important;
  align-items: center;
  gap: var(--space-sm);
}

.main .privacy-consent input {
  margin: 0;
}

.main .form-submit {
  margin-top: var(--space-md);
  align-self: flex-start;
}

.main .form-submit i {
  margin-left: var(--space-sm);
  transition: transform var(--transition-fast);
}

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

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

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

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

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

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

.main .cookie-btn {
  min-width: 120px;
}

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

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

@media (max-width: 992px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "content"
      "visual";
    text-align: center;
  }
  
  .main .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-image-container {
    margin: 0 auto;
  }
  
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .contact-content .section-header,
  .main .contact-content .section-description {
    text-align: center;
  }
  
  .main .contact-info {
    text-align: center;
  }
  
  .main .form-submit {
    align-self: center;
  }
}

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

@media (max-width: 576px) {
  .main .hero-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
  color: var(--color-neutral-dark);
}

/* Top Section */
.footer__top {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
}

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

.footer__brand {
  grid-column: span 1;
  position: relative;
}

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

.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 90%;
}

.footer__shape {
  position: absolute;
  z-index: 0;
}

.footer__shape--circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  opacity: 0.1;
  top: -20px;
  left: -30px;
}

.footer__shape--square {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  opacity: 0.1;
  bottom: 10px;
  right: 20px;
  transform: rotate(15deg);
}

.footer__links {
  grid-column: span 1;
}

.footer__heading {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.footer__heading:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
}

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

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

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

.footer__link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.footer__link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer__link:hover:before {
  opacity: 1;
}

.footer__newsletter {
  grid-column: span 1;
}

.footer__text {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

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

.footer__input {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  background-color: var(--color-white);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.footer__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.footer__button {
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-md);
  align-self: flex-start;
}

/* Divider */
.footer__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.footer__divider-line {
  height: 1px;
  background-color: var(--color-neutral-medium);
  flex-grow: 1;
  max-width: 200px;
}

.footer__divider-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  margin: 0 var(--space-sm);
}

/* Bottom Section */
.footer__bottom {
  padding: var(--space-lg) 0;
  background-color: var(--color-neutral-light);
}

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

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__copyright-text,
.footer__location {
  font-size: var(--text-xs);
  margin: 0;
}

.footer__location {
  color: var(--color-neutral-dark);
  opacity: 0.7;
}

.footer__design-element {
  display: flex;
  align-items: center;
}

.footer__color-blocks {
  display: flex;
  gap: var(--space-xs);
}

.footer__color-block {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-normal);
}

.footer__color-block:hover {
  transform: scale(1.3);
}

.footer__color-block--primary {
  background-color: var(--color-primary);
}

.footer__color-block--secondary {
  background-color: var(--color-secondary);
}

.footer__color-block--accent {
  background-color: var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-2xl);
  }
  
  .footer__brand,
  .footer__links,
  .footer__newsletter {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .footer__top {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand,
  .footer__links,
  .footer__newsletter {
    grid-column: span 1;
  }
  
  .footer__bottom .container {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer__copyright {
    order: 2;
    text-align: center;
  }
  
  .footer__design-element {
    order: 1;
    margin-bottom: var(--space-sm);
  }
}

/* Privacy Page Styles */
.privacy-page {
  background-color: var(--color-white);
  color: var(--color-neutral-dark);
  padding: var(--space-2xl) 0;
  font-family: var(--font-primary);
}

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

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

.privacy-page h1 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

.privacy-page__contact-info strong {
  color: var(--color-secondary);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page h1 {
    font-size: var(--text-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--text-lg);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-md);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thank-page__container {
  width: 100%;
}

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

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

.thank-page__card {
  margin-bottom: var(--space-2xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-primary);
}

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

.thank-page__text {
  color: var(--color-neutral-dark);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__confirmation {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__text {
    font-size: var(--text-base);
  }
  
  .thank-page__card {
    margin-bottom: var(--space-xl);
  }
  
  .thank-page__confirmation {
    font-size: var(--text-md);
    margin-top: var(--space-lg);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.category-page__hero h1 {
  color: var(--color-secondary);
  font-size: var(--text-4xl);
  max-width: 800px;
  margin-bottom: var(--space-md);
}

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

.category-page__hero-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}

.category-page__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

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

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

/* Post Card */
.post-card {
  background-color: var(--color-white);
  border-radius: var(--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(-4px);
  box-shadow: var(--shadow-xl);
}

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

.post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-xs);
  font-size: var(--text-lg);
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

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

/* Content Section */
.category-page__content-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-4xl) 0;
}

.category-page__content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.category-page__content-text h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

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

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

.category-page__content-list .icon {
  color: var(--color-primary);
  margin-right: var(--space-sm);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.category-page__content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.category-page__content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Skills Section */
.category-page__skills-section {
  padding: var(--space-4xl) 0;
}

.category-page__skills-section h2 {
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.category-page__skills-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-md);
}

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

.category-page__skill-card {
  padding: var(--space-lg);
  height: 100%;
}

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

.category-page__skill-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: var(--radius-full);
}

.category-page__skill-card h3 {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.category-page__skill-list {
  list-style-type: none;
  padding: 0;
}

.category-page__skill-list li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.category-page__skill-list li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

@media (max-width: 991px) {
  .category-page__content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .category-page__content-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .category-page__skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero h1 {
    font-size: var(--text-3xl);
  }
  
  .category-page__hero-description {
    font-size: var(--text-base);
  }
  
  .category-page__content-section,
  .category-page__skills-section,
  .category-page__posts,
  .category-page__hero {
    padding: var(--space-2xl) 0;
  }
}

/* Page-specific styles */
.post-kleurtheorie-nederlandse-ontwerpers .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  border-bottom: 1px solid var(--color-neutral-medium);
  margin-bottom: var(--space-lg);
}

.post-kleurtheorie-nederlandse-ontwerpers .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-kleurtheorie-nederlandse-ontwerpers .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-kleurtheorie-nederlandse-ontwerpers .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  margin-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.post-kleurtheorie-nederlandse-ontwerpers .post-hero h1 {
  color: var(--color-white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.post-kleurtheorie-nederlandse-ontwerpers .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 900px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Content Sections */
.post-kleurtheorie-nederlandse-ontwerpers .content-section {
  padding: var(--space-4xl) 0;
}

.post-kleurtheorie-nederlandse-ontwerpers .section-light {
  background-color: var(--color-white);
}

.post-kleurtheorie-nederlandse-ontwerpers .section-colored {
  background-color: var(--color-neutral-light);
}

.post-kleurtheorie-nederlandse-ontwerpers .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.post-kleurtheorie-nederlandse-ontwerpers .text-content {
  max-width: 600px;
}

.post-kleurtheorie-nederlandse-ontwerpers .design-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-kleurtheorie-nederlandse-ontwerpers .design-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.post-kleurtheorie-nederlandse-ontwerpers .principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-kleurtheorie-nederlandse-ontwerpers .principle-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  height: 100%;
}

.post-kleurtheorie-nederlandse-ontwerpers .principle-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
}

.post-kleurtheorie-nederlandse-ontwerpers .principle-list li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.post-kleurtheorie-nederlandse-ontwerpers .principle-list li::before {
  content: "•";
  color: var(--color-primary);
  font-size: var(--text-xl);
  position: absolute;
  left: 0;
  top: -2px;
}

.post-kleurtheorie-nederlandse-ontwerpers .application-section {
  margin-top: var(--space-3xl);
}

.post-kleurtheorie-nederlandse-ontwerpers .color-systems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-kleurtheorie-nederlandse-ontwerpers .color-system {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.post-kleurtheorie-nederlandse-ontwerpers .palette-development {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.post-kleurtheorie-nederlandse-ontwerpers .palette-steps ol {
  padding-left: var(--space-xl);
  margin-top: var(--space-md);
}

.post-kleurtheorie-nederlandse-ontwerpers .palette-steps li {
  margin-bottom: var(--space-md);
}

.post-kleurtheorie-nederlandse-ontwerpers .conclusion {
  background-color: var(--color-neutral-medium);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

/* Related Posts Section */
.post-kleurtheorie-nederlandse-ontwerpers .related-posts-section {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
}

.post-kleurtheorie-nederlandse-ontwerpers .related-posts-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

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

.post-kleurtheorie-nederlandse-ontwerpers .related-post-card {
  background-color: var(--color-white);
  color: var(--color-neutral-dark);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-kleurtheorie-nederlandse-ontwerpers .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-kleurtheorie-nederlandse-ontwerpers .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-kleurtheorie-nederlandse-ontwerpers .related-post-card a {
  color: var(--color-primary);
}

.post-kleurtheorie-nederlandse-ontwerpers .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-kleurtheorie-nederlandse-ontwerpers .post-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .section-content,
  .post-kleurtheorie-nederlandse-ontwerpers .principles-grid,
  .post-kleurtheorie-nederlandse-ontwerpers .color-systems,
  .post-kleurtheorie-nederlandse-ontwerpers .palette-development {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-kleurtheorie-nederlandse-ontwerpers .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-kleurtheorie-nederlandse-ontwerpers .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Post-specific styles */
.post-typografie-fundamenten-nederlandse-aanpak .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

.post-typografie-fundamenten-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-typografie-fundamenten-nederlandse-aanpak .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-typografie-fundamenten-nederlandse-aanpak .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-typografie-fundamenten-nederlandse-aanpak .post-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  max-width: 900px;
  margin-bottom: var(--space-lg);
  position: relative;
}

.post-typografie-fundamenten-nederlandse-aanpak .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  color: var(--color-white);
  line-height: 1.6;
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 400;
}

/* Content Sections - General */
.post-typografie-fundamenten-nederlandse-aanpak .content-section {
  padding: var(--space-4xl) 0;
}

.post-typografie-fundamenten-nederlandse-aanpak .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

.post-typografie-fundamenten-nederlandse-aanpak .content-section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
}

.post-typografie-fundamenten-nederlandse-aanpak .content-section h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-typografie-fundamenten-nederlandse-aanpak .content-section ul,
.post-typografie-fundamenten-nederlandse-aanpak .content-section ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-typografie-fundamenten-nederlandse-aanpak .content-section li {
  margin-bottom: var(--space-sm);
}

/* History Section */
.post-typografie-fundamenten-nederlandse-aanpak .history-section {
  background-color: var(--color-white);
}

.post-typografie-fundamenten-nederlandse-aanpak .history-section .section-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
}

.post-typografie-fundamenten-nederlandse-aanpak .history-section .text-content {
  flex: 1;
  min-width: 300px;
}

.post-typografie-fundamenten-nederlandse-aanpak .history-section .image-container {
  flex: 1;
  min-width: 300px;
}

.post-typografie-fundamenten-nederlandse-aanpak .history-section .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-typografie-fundamenten-nederlandse-aanpak .feature-list {
  list-style-type: none;
  padding-left: 0;
}

.post-typografie-fundamenten-nederlandse-aanpak .feature-list li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-md);
}

.post-typografie-fundamenten-nederlandse-aanpak .feature-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Principles Section */
.post-typografie-fundamenten-nederlandse-aanpak .principles-section {
  background-color: var(--color-neutral-light);
  position: relative;
}

.post-typografie-fundamenten-nederlandse-aanpak .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-typografie-fundamenten-nederlandse-aanpak .principle-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-typografie-fundamenten-nederlandse-aanpak .principle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-typografie-fundamenten-nederlandse-aanpak .principle-card h3 {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.post-typografie-fundamenten-nederlandse-aanpak .center-image {
  text-align: center;
  margin-top: var(--space-xl);
}

.post-typografie-fundamenten-nederlandse-aanpak .center-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Application Section */
.post-typografie-fundamenten-nederlandse-aanpak .application-section {
  background-color: var(--color-white);
}

.post-typografie-fundamenten-nederlandse-aanpak .application-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.post-typografie-fundamenten-nederlandse-aanpak .application-content .text-content {
  flex: 3;
  min-width: 300px;
}

.post-typografie-fundamenten-nederlandse-aanpak .application-content .image-container {
  flex: 2;
  min-width: 300px;
}

.post-typografie-fundamenten-nederlandse-aanpak .application-content .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-typografie-fundamenten-nederlandse-aanpak .steps-list {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.post-typografie-fundamenten-nederlandse-aanpak .steps-list li {
  position: relative;
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-lg);
  counter-increment: step-counter;
}

.post-typografie-fundamenten-nederlandse-aanpak .steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.post-typografie-fundamenten-nederlandse-aanpak .steps-list li strong {
  display: block;
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

/* Related Posts Section */
.post-typografie-fundamenten-nederlandse-aanpak .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-4xl) 0;
}

.post-typografie-fundamenten-nederlandse-aanpak .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card .card-image {
  height: 200px;
  overflow: hidden;
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card:hover .card-image img {
  transform: scale(1.05);
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card .card-content {
  padding: var(--space-lg);
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-typografie-fundamenten-nederlandse-aanpak .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.post-typografie-fundamenten-nederlandse-aanpak .read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.post-typografie-fundamenten-nederlandse-aanpak .read-more:after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-typografie-fundamenten-nederlandse-aanpak .read-more:hover {
  color: var(--color-secondary);
}

.post-typografie-fundamenten-nederlandse-aanpak .read-more:hover:after {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .history-section .section-content,
  .post-typografie-fundamenten-nederlandse-aanpak .application-content {
    flex-direction: column;
  }
  
  .post-typografie-fundamenten-nederlandse-aanpak .image-container {
    margin-top: var(--space-lg);
  }
}

/* Page-specific styles */
.post-compositie-layout-basisprincipes {
  color: var(--color-neutral-dark);
}

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

.post-compositie-layout-basisprincipes .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-compositie-layout-basisprincipes .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-compositie-layout-basisprincipes .post-hero {
  background-color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-3xl);
  position: relative;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-compositie-layout-basisprincipes .post-hero .container {
  max-width: 900px;
  text-align: center;
}

.post-compositie-layout-basisprincipes .post-hero h1 {
  font-size: var(--text-4xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.post-compositie-layout-basisprincipes .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--color-neutral-dark);
  line-height: 1.5;
}

.post-compositie-layout-basisprincipes .hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Sections - General */
.post-compositie-layout-basisprincipes .content-section {
  padding: var(--space-4xl) 0;
}

.post-compositie-layout-basisprincipes .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-compositie-layout-basisprincipes .content-section h3 {
  font-size: var(--text-xl);
  color: var(--color-secondary);
  margin: var(--space-lg) 0 var(--space-md);
}

/* Principles Section */
.post-compositie-layout-basisprincipes .principles-section {
  background-color: var(--color-neutral-light);
}

.post-compositie-layout-basisprincipes .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-compositie-layout-basisprincipes .design-principles-list {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-compositie-layout-basisprincipes .design-principles-list li {
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.post-compositie-layout-basisprincipes .composition-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Grid Section */
.post-compositie-layout-basisprincipes .grid-section {
  background-color: var(--color-white);
}

.post-compositie-layout-basisprincipes .content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.post-compositie-layout-basisprincipes .grid-types {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.post-compositie-layout-basisprincipes .grid-types li {
  margin-bottom: var(--space-md);
}

.post-compositie-layout-basisprincipes .grid-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

/* Hierarchy Section */
.post-compositie-layout-basisprincipes .hierarchy-section {
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-neutral-medium);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-compositie-layout-basisprincipes .hierarchy-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-compositie-layout-basisprincipes .hierarchy-techniques {
  padding-left: var(--space-lg);
}

.post-compositie-layout-basisprincipes .hierarchy-techniques li {
  margin-bottom: var(--space-md);
}

.post-compositie-layout-basisprincipes .hierarchy-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

.post-compositie-layout-basisprincipes .key-takeaways {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-compositie-layout-basisprincipes .key-takeaways h3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.post-compositie-layout-basisprincipes .key-takeaways ol {
  padding-left: var(--space-xl);
}

.post-compositie-layout-basisprincipes .key-takeaways li {
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

/* Related Posts Section */
.post-compositie-layout-basisprincipes .related-posts-section {
  background-color: var(--color-white);
  padding: var(--space-4xl) 0;
}

.post-compositie-layout-basisprincipes .related-posts-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-compositie-layout-basisprincipes .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-compositie-layout-basisprincipes .related-post {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-compositie-layout-basisprincipes .related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.post-compositie-layout-basisprincipes .related-post .post-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-compositie-layout-basisprincipes .related-post h3 {
  font-size: var(--text-lg);
  margin: var(--space-lg) var(--space-lg) var(--space-md);
  color: var(--color-secondary);
}

.post-compositie-layout-basisprincipes .related-post p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  flex-grow: 1;
}

.post-compositie-layout-basisprincipes .related-post .btn {
  margin: 0 var(--space-lg) var(--space-lg);
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-compositie-layout-basisprincipes .post-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
  
  .post-compositie-layout-basisprincipes .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-compositie-layout-basisprincipes .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-compositie-layout-basisprincipes .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-compositie-layout-basisprincipes .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-compositie-layout-basisprincipes .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-compositie-layout-basisprincipes .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-compositie-layout-basisprincipes .content-grid,
  .post-compositie-layout-basisprincipes .content-columns,
  .post-compositie-layout-basisprincipes .hierarchy-examples {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-compositie-layout-basisprincipes .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-compositie-layout-basisprincipes .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-compositie-layout-basisprincipes .content-section {
    padding: var(--space-2xl) 0;
  }
}

/* Page-specific styles */
.post-essentiele-software-tools-nederlandse-ontwerpers .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-essentiele-software-tools-nederlandse-ontwerpers .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-hero .lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 80%;
  margin-bottom: var(--space-md);
}

/* Content Sections - General */
.post-essentiele-software-tools-nederlandse-ontwerpers .content-section {
  padding: var(--space-4xl) 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-top: var(--space-sm);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section h3 {
  font-size: var(--text-xl);
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section h4 {
  font-size: var(--text-lg);
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section p {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .content-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

/* Section 1: Industry Standard Tools */
.post-essentiele-software-tools-nederlandse-ontwerpers .industry-standard-tools {
  background-color: var(--color-white);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .industry-standard-tools .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .industry-standard-tools .text-content {
  flex: 3;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .industry-standard-tools .image-container {
  flex: 2;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-highlights {
  background-color: var(--color-neutral-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  list-style-type: none;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-highlights li {
  margin-bottom: var(--space-sm);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-highlights strong {
  color: var(--color-primary);
}

/* Section 2: Alternative Tools */
.post-essentiele-software-tools-nederlandse-ontwerpers .alternative-tools {
  background-color: var(--color-neutral-light);
  position: relative;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category h3 {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-medium);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category li::before {
  content: "→";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .tool-category strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .alternative-tools .image-container {
  margin-top: var(--space-xl);
}

/* Section 3: Productivity Tools */
.post-essentiele-software-tools-nederlandse-ontwerpers .productivity-tools {
  background-color: var(--color-white);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-container {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-text {
  flex: 3;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips {
  flex: 2;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  align-self: flex-start;
  position: sticky;
  top: var(--space-xl);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips h4 {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips ul {
  list-style-type: none;
  padding-left: 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-white);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips li::before {
  content: "✓";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips strong {
  color: var(--color-accent);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .conclusion {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  border-left: 4px solid var(--color-accent);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .conclusion p {
  margin-bottom: 0;
  font-size: var(--text-md);
  font-weight: 500;
}

/* Related Posts */
.post-essentiele-software-tools-nederlandse-ontwerpers .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--space-4xl) 0;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-secondary);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

.post-essentiele-software-tools-nederlandse-ontwerpers .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-card h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-card h3 a:hover {
  color: var(--color-primary);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .post-card p {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-essentiele-software-tools-nederlandse-ontwerpers .read-more {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: color var(--transition-fast);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .read-more:hover {
  color: var(--color-secondary);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .read-more::after {
  content: "→";
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-essentiele-software-tools-nederlandse-ontwerpers .read-more:hover::after {
  transform: translateX(4px);
}

/* Images */
.post-essentiele-software-tools-nederlandse-ontwerpers img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-essentiele-software-tools-nederlandse-ontwerpers .post-hero h1 {
    font-size: var(--text-3xl);
    max-width: 100%;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .post-hero .lead {
    font-size: var(--text-md);
    max-width: 100%;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .industry-standard-tools .section-content {
    flex-direction: column;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .workflow-container {
    flex-direction: column;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .workflow-tips {
    position: static;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-essentiele-software-tools-nederlandse-ontwerpers .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .post-essentiele-software-tools-nederlandse-ontwerpers .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumbs Styling */
.post-portfolio-opbouwen-tips .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

.post-portfolio-opbouwen-tips .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
}

.post-portfolio-opbouwen-tips .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section Styling */
.post-portfolio-opbouwen-tips .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-portfolio-opbouwen-tips .post-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.post-portfolio-opbouwen-tips .post-hero .lead {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  color: var(--color-neutral-light);
}

/* Content Sections Styling */
.post-portfolio-opbouwen-tips .content-section {
  padding: var(--space-4xl) 0;
}

.post-portfolio-opbouwen-tips .section-light {
  background-color: var(--color-white);
}

.post-portfolio-opbouwen-tips .section-colored {
  background-color: var(--color-neutral-light);
}

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

.post-portfolio-opbouwen-tips .text-content {
  flex: 1;
}

.post-portfolio-opbouwen-tips .image-container {
  flex: 1;
}

.post-portfolio-opbouwen-tips .image-container img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-portfolio-opbouwen-tips h2 {
  color: var(--color-secondary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

.post-portfolio-opbouwen-tips h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.post-portfolio-opbouwen-tips h3 {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.post-portfolio-opbouwen-tips p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-neutral-dark);
}

/* Tips Grid Styling */
.post-portfolio-opbouwen-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-portfolio-opbouwen-tips .tip-card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-portfolio-opbouwen-tips .tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.post-portfolio-opbouwen-tips .tip-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Presentation Tips Styling */
.post-portfolio-opbouwen-tips .presentation-tips {
  background-color: var(--color-neutral-medium);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.post-portfolio-opbouwen-tips .presentation-tips ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-portfolio-opbouwen-tips .presentation-tips li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-portfolio-opbouwen-tips .presentation-tips li strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Key Takeaways Styling */
.post-portfolio-opbouwen-tips .key-takeaways {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.post-portfolio-opbouwen-tips .key-takeaways h3 {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.post-portfolio-opbouwen-tips .key-takeaways p {
  color: var(--color-neutral-light);
  margin-bottom: 0;
}

/* Related Posts Section Styling */
.post-portfolio-opbouwen-tips .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-4xl) 0;
}

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

.post-portfolio-opbouwen-tips .related-post-card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-portfolio-opbouwen-tips .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

.post-portfolio-opbouwen-tips .related-post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-portfolio-opbouwen-tips .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-portfolio-opbouwen-tips .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.post-portfolio-opbouwen-tips .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.post-portfolio-opbouwen-tips .read-more:hover {
  color: var(--color-secondary);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-portfolio-opbouwen-tips .section-content {
    flex-direction: column;
  }
  
  .post-portfolio-opbouwen-tips .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-portfolio-opbouwen-tips .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-portfolio-opbouwen-tips .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-portfolio-opbouwen-tips .post-hero .lead {
    font-size: var(--text-lg);
  }
}

@media (max-width: 767px) {
  .post-portfolio-opbouwen-tips .tips-grid,
  .post-portfolio-opbouwen-tips .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-portfolio-opbouwen-tips .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-portfolio-opbouwen-tips .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-portfolio-opbouwen-tips .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-portfolio-opbouwen-tips .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-portfolio-opbouwen-tips h2 {
    font-size: var(--text-2xl);
  }
}

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

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

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

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

.privacy-page__content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.privacy-page__section h3 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 500;
  margin: var(--space-lg) 0 var(--space-sm) 0;
}

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

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

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

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

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

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

.privacy-page__contact-info strong {
  color: var(--color-secondary);
}

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

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

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

.terms-page h1 {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

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

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

.terms-page h2 {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-neutral-medium);
}

.terms-page p {
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 100%;
}

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page h1 {
    font-size: var(--text-2xl);
  }
  
  .terms-page h2 {
    font-size: var(--text-lg);
  }
  
  .terms-page p {
    font-size: var(--text-sm);
  }
  
  .terms-page__list li {
    font-size: var(--text-sm);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
}

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

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

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

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

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

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

.cookie-page__subheading {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

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

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral-dark);
  text-align: right;
  font-style: italic;
}

@media (max-width: 767px) {
  .cookie-page__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__heading {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subheading {
    font-size: var(--text-md);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__footer {
    margin-top: var(--space-2xl);
  }
}

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

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

.thank-page__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.thank-page__info {
  font-size: var(--text-base);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

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

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

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

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

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

  .error-404__visual {
    position: relative;
    margin-bottom: var(--space-xl);
  }

  .error-404__code {
    font-family: var(--font-secondary);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-lg);
  }

  .error-404__line {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 0 auto;
    border-radius: var(--radius-full);
  }

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

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

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

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

  @media (max-width: 767px) {
    .error-404__code {
      font-size: var(--text-4xl);
    }

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

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

    .error-404 {
      padding: var(--space-2xl) var(--space-md);
    }
  }

  @media (max-width: 480px) {
    .error-404__code {
      font-size: var(--text-3xl);
    }

    .error-404__line {
      width: 60px;
    }
  }
