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

:root {
  
  --color-primary: #ff6b35; 
  --color-secondary: #004e89; 
  --color-accent: #00a896; 
  --color-neutral: #f5f5f5; 
  --color-dark: #2b2d42; 
  --color-light: #ffffff; 
  --color-warning: #ffd166; 
  
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.75rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1.125rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-xs: 0.75rem;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.8;
  
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  
  --section-padding-desktop: 100px;
  --section-padding-tablet: 70px;
  --section-padding-mobile: 50px;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-focus: 0 0 0 3px rgba(255, 107, 53, 0.4);
  
  
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

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

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

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

h4 {
  font-size: var(--font-size-h4);
  font-weight: 600;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 600;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
}

p {
  font-size: var(--font-size-body);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-loose);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

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

a.underline {
  position: relative;
}

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

a.underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

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

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

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

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

.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-light);
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-small);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon i {
  transition: transform var(--transition-fast);
}

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

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

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

.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-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral);
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.icon-circle:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
}

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

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

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

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

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

.bg-neutral {
  background-color: var(--color-neutral);
}

.bg-light {
  background-color: var(--color-light);
}

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

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

@media (max-width: 1023px) {
  :root {
    --font-size-h1: 2.75rem;
    --font-size-h2: 2.25rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.375rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-h1: 2.25rem;
    --font-size-h2: 1.875rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
    --font-size-body: 0.9375rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
  }
  
  p {
    margin-bottom: var(--space-md);
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
  }
}

.header {
  background-color: var(--color-light);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  position: relative;
  z-index: 100;
}

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

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

.header__logo {
  display: flex;
  align-items: center;
  color: var(--color-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h4);
  text-decoration: none;
  transition: transform var(--transition-normal);
}

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

.header__logo-icon {
  margin-right: var(--space-xs);
  font-size: var(--font-size-h3);
}

.header__logo-text {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.header__tagline {
  font-size: var(--font-size-small);
  color: var(--color-dark);
  opacity: 0.8;
  margin: var(--space-xs) 0 0;
  font-weight: 500;
  font-style: italic;
}

.header__nav {
  display: flex;
}

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

.header__nav-item {
  position: relative;
}

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

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

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

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

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

.header__cta-button {
  margin-left: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.header__cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all var(--transition-normal);
}

.header__cta-button:hover::before {
  left: 100%;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: var(--space-md);
}

.header__mobile-toggle-line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary);
  transition: all var(--transition-normal);
}

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

.header__mobile-menu.is-active {
  right: 0;
}

.header__mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-dark);
  font-size: var(--font-size-h3);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.header__mobile-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
}

.header__mobile-nav {
  flex: 1;
}

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

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

.header__mobile-nav-link {
  display: block;
  font-size: var(--font-size-body);
  color: var(--color-dark);
  font-weight: 600;
  padding: var(--space-sm) 0;
  text-decoration: none;
  transition: all var(--transition-normal);
  border-left: 3px solid transparent;
  padding-left: var(--space-md);
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
  padding-left: calc(var(--space-md) + 5px);
  background-color: rgba(255, 107, 53, 0.05);
}

.header__mobile-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.header__mobile-footer-link {
  font-size: var(--font-size-small);
  color: var(--color-dark);
  opacity: 0.7;
  text-decoration: none;
  transition: all var(--transition-normal);
}

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

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

@media (max-width: 767px) {
  .header__logo-text {
    font-size: var(--font-size-h5);
  }
  
  .header__tagline {
    font-size: var(--font-size-xs);
  }
  
  .header__cta-button {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-small);
  }
  
  .header__mobile-menu {
    padding: var(--space-md);
  }
  
  .header__mobile-nav-link {
    font-size: var(--font-size-body);
  }
}

@media (max-width: 480px) {
  .header__cta-button {
    display: none;
  }
  
  .header__mobile-toggle {
    margin-left: 0;
  }
  
  .header__logo-wrapper {
    flex: 1;
  }
}

.main {
  overflow-x: hidden;
}

.main .hero {
  position: relative;
  padding: var(--section-padding-desktop) 0 calc(var(--section-padding-desktop) + 50px);
  overflow: hidden;
}

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

.main .hero-text {
  max-width: 600px;
}

.main .hero-title {
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  position: relative;
}

.main .hero-title span {
  position: relative;
  display: inline-block;
}

.main .hero-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 5px;
  left: 0;
  background-color: rgba(255, 107, 53, 0.2);
  z-index: -1;
}

.main .hero-description {
  margin-bottom: var(--space-xl);
  font-size: 1.25rem;
  line-height: var(--line-height-loose);
}

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

.main .hero-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

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

.main .shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 107, 53, 0.1);
  top: -20px;
  right: 40px;
  transform: rotate(15deg);
}

.main .shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(0, 78, 137, 0.1);
  bottom: 0;
  left: 20px;
  transform: rotate(-15deg);
}

.main .hero-image-container {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-normal);
  z-index: 1;
}

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

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

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

.main .hero-stats {
  position: absolute;
  display: flex;
  gap: var(--space-md);
  bottom: -30px;
  left: 0;
  z-index: 2;
}

.main .stat-card {
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .stat-number {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.main .stat-label {
  font-size: var(--font-size-small);
  color: var(--color-dark);
  text-align: center;
}

.main .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.main .featured-posts {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
}

.main .section-header {
  margin-bottom: var(--space-xxl);
}

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

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

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

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

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

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

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

.main .post-card-title {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  line-height: 1.3;
}

.main .post-card-description {
  font-size: var(--font-size-body);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
  flex-grow: 1;
}

.main .section-cta {
  margin-top: var(--space-xxl);
}

.main .features {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

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

.main .feature-card {
  background-color: var(--color-light);
  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;
}

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

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

.main .feature-card:hover::before {
  width: 10px;
}

.main .feature-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: inline-block;
  position: relative;
}

.main .feature-icon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  top: -10px;
  left: -10px;
  z-index: -1;
}

.main .feature-title {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.main .feature-description {
  font-size: var(--font-size-body);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.main .feature-progress {
  height: 8px;
  background-color: var(--color-neutral);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.main .progress-bar {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
  position: relative;
  transition: width 1.5s ease;
}

.main .progress-text {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-primary);
}

.main .mindset {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
}

.main .mindset-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xxl);
  align-items: center;
}

.main .mindset-steps {
  margin-top: var(--space-xxl);
}

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

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

.main .mindset-step::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -30px;
  width: 2px;
  background-color: var(--color-neutral);
  z-index: 0;
}

.main .mindset-step:last-child::before {
  display: none;
}

.main .step-number {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-primary);
  background-color: rgba(255, 107, 53, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

.main .step-title {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.main .step-description {
  font-size: var(--font-size-body);
  color: var(--color-dark);
  margin-bottom: 0;
}

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

.main .mindset-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

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

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

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

.main .mindset-quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 80%;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.main .mindset-quote blockquote {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-style: italic;
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-normal);
}

.main .mindset-quote cite {
  font-size: var(--font-size-small);
  font-style: normal;
  opacity: 0.8;
}

.main .ecosystem {
  padding: var(--section-padding-desktop) 0;
  color: var(--color-light);
}

.main .ecosystem-map {
  position: relative;
  margin-top: var(--space-xxl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  min-height: 400px;
}

.main .map-regions {
  position: relative;
  height: 300px;
  margin-bottom: var(--space-xl);
}

.main .region-marker {
  position: absolute;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.main .region-marker:hover {
  transform: scale(1.1);
}

.main .marker-dot {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-light);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite;
}

.main .region-marker.active .marker-dot {
  background-color: var(--color-primary);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.main .marker-label {
  position: absolute;
  white-space: nowrap;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-small);
  font-weight: 600;
}

.main .amsterdam {
  top: 30%;
  left: 60%;
}

.main .rotterdam {
  top: 60%;
  left: 50%;
}

.main .eindhoven {
  top: 70%;
  left: 70%;
}

.main .utrecht {
  top: 40%;
  left: 45%;
}

.main .wageningen {
  top: 50%;
  left: 30%;
}

.main .region-info-container {
  position: relative;
  min-height: 200px;
}

.main .region-info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  transform: translateY(20px);
}

.main .region-info.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main .region-title {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
}

.main .region-description {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.main .region-stats {
  display: flex;
  gap: var(--space-xl);
}

.main .region-stat {
  display: flex;
  flex-direction: column;
}

.main .region-stat .stat-number {
  color: var(--color-primary);
}

.main .region-stat .stat-label {
  color: var(--color-light);
}

.main .testimonials {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
}

.main .testimonials-slider {
  position: relative;
  margin-top: var(--space-xxl);
  overflow: hidden;
}

.main .testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.main .testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-lg);
}

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

.main .testimonial-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.main .testimonial-quote {
  margin-bottom: var(--space-lg);
}

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

.main .testimonial-quote p {
  font-style: italic;
  line-height: var(--line-height-loose);
  margin-bottom: 0;
}

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

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

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

.main .author-name {
  font-size: var(--font-size-h6);
  margin-bottom: var(--space-xs);
}

.main .author-title {
  font-size: var(--font-size-small);
  color: var(--color-secondary);
  margin-bottom: 0;
}

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

.main .control-prev,
.main .control-next {
  background-color: var(--color-light);
  border: 1px solid var(--color-neutral);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.main .control-prev:hover,
.main .control-next:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
}

.main .control-indicators {
  display: flex;
  gap: var(--space-sm);
}

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

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

.main .contact {
  padding: var(--section-padding-desktop) 0;
}

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

.main .contact-features {
  margin-top: var(--space-xxl);
}

.main .contact-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .contact-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.main .contact-feature:last-child {
  margin-bottom: 0;
}

.main .contact-feature .feature-icon {
  margin-right: var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main .contact-feature .feature-text {
  flex-grow: 1;
}

.main .contact-feature .feature-text h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-xs);
}

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

.main .contact-form-container {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform var(--transition-normal);
}

.main .contact-form-container:hover {
  transform: rotate(0);
}

.main .contact-form {
  padding: var(--space-xl);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.main .contact-form-container:hover .contact-form {
  transform: rotate(0);
}

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

.main .form-header h3 {
  font-size: var(--font-size-h4);
  color: var(--color-primary);
}

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

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

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-neutral);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  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: var(--shadow-focus);
}

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

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

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

.main .form-submit {
  margin-top: var(--space-xl);
}

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

.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-light);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

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

.main .cookie-content p {
  margin-bottom: 0;
  font-size: var(--font-size-small);
  flex-grow: 1;
}

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

@media (max-width: 1023px) {
  .main .hero,
  .main .featured-posts,
  .main .features,
  .main .mindset,
  .main .ecosystem,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-tablet) 0;
  }
  
  .main .hero-grid,
  .main .mindset-grid,
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .hero-visual {
    height: 400px;
    margin-top: var(--space-xl);
  }
  
  .main .posts-grid,
  .main .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .cookie-content {
    flex-direction: column;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main .hero,
  .main .featured-posts,
  .main .features,
  .main .mindset,
  .main .ecosystem,
  .main .testimonials,
  .main .contact {
    padding: var(--section-padding-mobile) 0;
  }
  
  .main .posts-grid,
  .main .features-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .hero-cta a {
    width: 100%;
    text-align: center;
  }
  
  .main .hero-stats {
    position: relative;
    bottom: 0;
    margin-top: var(--space-lg);
  }
  
  .main .ecosystem-map {
    padding: var(--space-lg);
  }
  
  .main .map-regions {
    height: 200px;
  }
  
  .main .region-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .main .mindset-quote {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    margin-top: var(--space-lg);
  }
  
  .main .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
  color: var(--color-dark);
  margin-top: var(--space-xxxl);
}

.footer__top {
  padding: var(--space-xxl) 0;
  position: relative;
  z-index: 1;
}

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

.footer__brand {
  max-width: 320px;
}

.footer__title {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

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

.footer__title:hover::after {
  width: 100%;
}

.footer__tagline {
  font-size: var(--font-size-body);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

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

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

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

.footer__link {
  color: var(--color-dark);
  font-size: var(--font-size-small);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0;
  display: inline-block;
}

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

.footer__link:hover {
  color: var(--color-primary);
  padding-left: var(--space-sm);
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer__divider {
  height: 1px;
  background-color: rgba(43, 45, 66, 0.1);
  margin: var(--space-xl) 0;
}

.footer__newsletter {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.footer__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 78, 137, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  transition: all var(--transition-normal);
}

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

.footer__btn {
  white-space: nowrap;
}

.footer__form-note {
  font-size: var(--font-size-xs);
  color: rgba(43, 45, 66, 0.7);
  margin: 0;
}

.footer__link-underline {
  text-decoration: underline;
  color: var(--color-secondary);
}

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

.footer__bottom {
  background-color: var(--color-secondary);
  padding: var(--space-xl) 0;
  color: var(--color-light);
  position: relative;
  z-index: 1;
}

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

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

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

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

.footer__legal-link {
  color: var(--color-light);
  font-size: var(--font-size-xs);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer__legal-link:hover {
  opacity: 1;
  color: var(--color-warning);
}

.footer__kamer {
  display: flex;
  gap: var(--space-md);
}

.footer__kvk, .footer__btw {
  font-size: var(--font-size-xs);
  opacity: 0.8;
}

.footer__shape {
  position: absolute;
  z-index: 0;
  border-radius: var(--radius-pill);
  opacity: 0.05;
}

.footer__shape--left {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  top: -100px;
  left: -150px;
  transform: rotate(-15deg);
}

.footer__shape--right {
  width: 250px;
  height: 250px;
  background-color: var(--color-accent);
  bottom: 50px;
  right: -100px;
  transform: rotate(20deg);
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--space-md);
  }
  
  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__bottom-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer__legal-links {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer__top {
    padding: var(--space-xl) 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-md);
  }
  
  .footer__form-group {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer__legal {
    width: 100%;
  }
  
  .footer__legal-links {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__nav-section {
    text-align: center;
  }
  
  .footer__heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__link::before {
    display: none;
  }
  
  .footer__link:hover {
    padding-left: 0;
  }
  
  .footer__kamer {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

.shake-animation{animation:shake 0.5s cubic-bezier(0.36,0.07,0.19,0.97) both}@keyframes shake{0%,100%{transform:translateX(0)}20%,40%,60%,80%{transform:translateX(-5px)}30%,50%,70%,90%{transform:translateX(5px)}}

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

.privacy-page__header {
  margin-bottom: var(--space-xxl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--space-xl);
}

.privacy-page__header h1 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.privacy-page__header .lead {
  color: var(--color-dark);
  opacity: 0.8;
}

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

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

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

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

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

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

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

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

@media (max-width: 1023px) {
  .privacy-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xxl);
  }
}

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

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

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

.terms-page__header h1 {
  color: var(--color-secondary);
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-md);
}

.terms-page__header .lead {
  color: var(--color-dark);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
}

.terms-page__header .text-small {
  color: var(--color-dark);
  opacity: 0.7;
}

.terms-page__content {
  margin-bottom: var(--space-xxl);
}

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

.terms-page__section:last-child {
  border-bottom: none;
}

.terms-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}

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

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

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

.terms-page__navigation {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xxl);
}

.terms-page__navigation h3 {
  color: var(--color-secondary);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.terms-page__nav-list {
  list-style-type: none;
  padding: 0;
}

.terms-page__nav-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-fast);
}

.terms-page__nav-list li:hover {
  border-left-color: var(--color-primary);
}

.terms-page__nav-link {
  color: var(--color-secondary);
  font-size: var(--font-size-small);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

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

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

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

.cookie-page__header {
  margin-bottom: var(--space-xxl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-neutral);
}

.cookie-page__title {
  color: var(--color-secondary);
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.cookie-page__lead {
  color: var(--color-dark);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  font-weight: 400;
  max-width: 800px;
}

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

.cookie-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

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

.cookie-page__subsection-title {
  color: var(--color-dark);
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.cookie-page p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-loose);
}

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

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

@media (max-width: 1023px) {
  .cookie-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  
  .cookie-page__title {
    font-size: var(--font-size-h2);
  }
  
  .cookie-page__lead {
    font-size: var(--font-size-h6);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-h4);
    margin-bottom: var(--space-md);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--font-size-h5);
  }
}

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

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

.thank-page__content {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xxxl);
  box-shadow: var(--shadow-lg);
}

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

.thank-page__lead {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
}

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

.thank-page__text {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-lg);
}

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

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

.thank-page__button {
  font-size: var(--font-size-h6);
  padding: var(--space-md) var(--space-xxl);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.thank-page__note {
  color: var(--color-secondary);
}

@media (max-width: 1023px) {
  .thank-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xxl);
  }
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__title {
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__message {
    margin-bottom: var(--space-xl);
  }
  
  .thank-page__action {
    margin-bottom: var(--space-lg);
  }
}

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

.category-page__hero {
  padding: var(--space-xxl) 0;
  position: relative;
}

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

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

.category-page__hero .lead {
  font-family: var(--font-secondary);
  margin-bottom: 0;
}

.category-page__posts {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.post-card__content h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

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

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

.category-page__content {
  padding: var(--space-xxl) 0;
}

.category-page__content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.category-page__content-text {
  flex: 1;
}

.category-page__content-image {
  flex: 1;
  position: relative;
}

.entrepreneur-background {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.category-page__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.category-page__list .icon-circle {
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.category-page__list h5 {
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.category-page__list p {
  margin-bottom: 0;
}

.category-page__skills {
  padding: var(--space-xxl) 0;
}

.category-page__skills .lead {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

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

.category-page__skill-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.category-page__skill-icon {
  margin-bottom: var(--space-md);
}

.category-page__skill-card h4 {
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.category-page__skill-card p {
  margin-bottom: 0;
}

.category-page__stats {
  margin-top: var(--space-xxl);
}

.category-page__stats h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.category-page__stat-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.category-page__stat-number {
  font-size: var(--font-size-h3);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-sm);
}

.category-page__stat-card p {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__content-wrapper {
    flex-direction: column;
  }
  
  .category-page__content-text,
  .category-page__content-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__skills-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .category-page__hero,
  .category-page__posts,
  .category-page__content,
  .category-page__skills {
    padding: var(--section-padding-mobile) 0;
  }
}

.post-page {
  font-family: var(--font-primary);
  color: var(--color-dark);
  overflow-x: hidden;
}

.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  background-color: var(--color-neutral);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

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

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

.post-page .post-hero {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-page .post-hero h1 {
  color: var(--color-light);
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  max-width: 800px;
}

.post-page .post-hero .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  color: var(--color-light);
  opacity: 0.9;
}

.post-page .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-page .content-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-page .content-section h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.post-page .content-section p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-lg);
}

.post-page .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

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

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

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

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

.post-page .feature-icon {
  color: var(--color-primary);
  margin-right: var(--space-sm);
  font-size: var(--font-size-h5);
}

.post-page .pitch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-page .pitch-content {
  order: 1;
}

.post-page .pitch-image {
  order: 2;
}

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

.post-page .pitch-tips {
  background-color: var(--color-neutral);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-page .pitch-tips h3 {
  margin-top: 0;
  color: var(--color-secondary);
}

.post-page .pitch-tips ol {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-page .pitch-tips li {
  margin-bottom: var(--space-md);
}

.post-page .team-section {
  color: var(--color-light);
}

.post-page .team-skills {
  margin: var(--space-xxl) 0;
}

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

.post-page .skill-card {
  background-color: var(--color-light);
  color: var(--color-dark);
  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-page .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-page .skill-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h5);
}

.post-page .skill-card p {
  margin-bottom: 0;
}

.post-page .team-quote {
  margin: var(--space-xxl) 0;
  padding: var(--space-xl);
  border-left: 4px solid var(--color-primary);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-page .team-quote blockquote {
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-normal);
  font-style: italic;
  margin: 0;
}

.post-page .team-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: var(--space-xxl);
  box-shadow: var(--shadow-lg);
}

.post-page .action-steps {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-page .action-steps h3 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-page .action-steps ol {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-page .action-steps li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.post-page .conclusion-note {
  font-style: italic;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-page .related-posts-section {
  background-color: var(--color-light);
  padding: var(--section-padding-desktop) 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

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

.post-page .related-post-card {
  background-color: var(--color-neutral);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.post-page .related-post-content {
  padding: var(--space-xl);
}

.post-page .related-post-content h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.post-page .related-post-content h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .related-post-content h3 a:hover {
  color: var(--color-primary);
}

.post-page .related-post-content p {
  font-size: var(--font-size-small);
  margin-bottom: var(--space-lg);
}

.post-page .btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.post-page .btn-link .arrow-icon {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

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

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

@media (max-width: 1023px) {
  .post-page .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .section-grid,
  .post-page .pitch-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-page .section-content {
    padding-right: 0;
    order: 1;
  }
  
  .post-page .section-image {
    order: 2;
  }
  
  .post-page .pitch-content {
    order: 1;
  }
  
  .post-page .pitch-image {
    order: 2;
  }
  
  .post-page .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-page .content-section,
  .post-page .post-hero,
  .post-page .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--font-size-h2);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--font-size-body);
  }
  
  .post-page .content-section h2 {
    font-size: var(--font-size-h3);
  }
  
  .post-page .content-section h3 {
    font-size: var(--font-size-h4);
  }
  
  .post-page .team-quote blockquote {
    font-size: var(--font-size-body);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .post-hero h1 {
  color: var(--color-light);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .post-hero .lead {
  color: var(--color-light);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  max-width: 800px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .breadcrumbs {
  background-color: var(--color-neutral);
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .breadcrumbs span {
  color: var(--color-dark);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .content-section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .section-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .text-content {
  display: flex;
  flex-direction: column;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .image-container {
  position: relative;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .image-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .center-image {
  max-width: 800px;
  margin: var(--space-xxl) auto 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .technique-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .technique-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .technique-card h3 {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h5);
  color: var(--color-secondary);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .technique-card ul {
  padding-left: var(--space-lg);
  margin-bottom: 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .technique-card li {
  margin-bottom: var(--space-sm);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .quote-container {
  margin: var(--space-xxl) 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .dutch-quote {
  position: relative;
  background-color: var(--color-neutral);
  padding: var(--space-xl);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  color: var(--color-dark);
  margin: 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .dutch-quote p {
  margin-bottom: var(--space-md);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .dutch-quote cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: var(--font-size-body);
  color: var(--color-secondary);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift h4 {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h6);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift p {
  color: var(--color-light);
  margin-bottom: 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .implementation-steps {
  padding-left: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .implementation-steps li {
  margin-bottom: var(--space-md);
  color: var(--color-light);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .implementation-steps strong {
  color: var(--color-warning);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-section {
  padding: var(--section-padding-desktop) 0;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-section h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card {
  background-color: var(--color-light);
  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-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .btn-link:hover {
  color: var(--color-secondary);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .btn-link .icon-arrow {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .btn-link:hover .icon-arrow {
  transform: translateX(3px);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .text-light {
  color: var(--color-light);
}

.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .text-light h2,
.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .text-light h3,
.post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .text-light p {
  color: var(--color-light);
}

@media (max-width: 1023px) {
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .post-hero,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .content-section,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .section-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .techniques-grid,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .post-hero,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .content-section,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .techniques-grid,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .mindset-shift-container,
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-zakelijk-mindset-ontwikkelen-nederlandse-aanpak .dutch-quote {
    padding: var(--space-lg);
    font-size: var(--font-size-body);
  }
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers {
  font-family: var(--font-primary);
  color: var(--color-dark);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  background-color: var(--color-neutral);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-hero {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-hero h1 {
  color: var(--color-light);
  margin-bottom: var(--space-lg);
  max-width: 900px;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-hero .lead {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  max-width: 800px;
  color: var(--color-light);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
}

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

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-section.bg-secondary h2::after {
  background-color: var(--color-light);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-text ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-text li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-loose);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-card h3 {
  margin-top: var(--space-md);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-card li {
  margin-bottom: var(--space-sm);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .card-icon {
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .content-image-full {
  margin-top: var(--space-xxl);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .full-width-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-step h3 {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h5);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-step ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-step li {
  margin-bottom: var(--space-sm);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .key-takeaways {
  background-color: rgba(0, 0, 0, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .key-takeaways h3 {
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .key-takeaways ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .key-takeaways li {
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .key-takeaways .btn {
  margin-top: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .related-posts {
  background-color: var(--color-neutral);
  padding: var(--section-padding-desktop) 0;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .related-posts h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card p {
  margin-bottom: var(--space-lg);
  flex: 1;
}

.post-digitale-marketing-strategieen-nederlandse-ondernemers .post-card .btn {
  align-self: flex-start;
}

@media (max-width: 1023px) {
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .post-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .content-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .strategy-cards {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .implementation-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .post-cards {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-marketing-strategieen-nederlandse-ondernemers .content-image {
    margin-top: var(--space-lg);
  }
}

.post-financieringsmogelijkheden-startups-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-dark);
  background-color: var(--color-neutral);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-financieringsmogelijkheden-startups-nederland .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

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

.post-financieringsmogelijkheden-startups-nederland .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-light);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-financieringsmogelijkheden-startups-nederland .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}

.post-financieringsmogelijkheden-startups-nederland .post-hero h1 {
  color: var(--color-light);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.post-financieringsmogelijkheden-startups-nederland .post-hero .lead {
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  max-width: 800px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.post-financieringsmogelijkheden-startups-nederland .content-section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.post-financieringsmogelijkheden-startups-nederland .content-section h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-financieringsmogelijkheden-startups-nederland .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

.post-financieringsmogelijkheden-startups-nederland .content-section h3 {
  color: var(--color-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.post-financieringsmogelijkheden-startups-nederland .content-section h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-financieringsmogelijkheden-startups-nederland .content-section p {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-body);
  line-height: var(--line-height-loose);
}

.post-financieringsmogelijkheden-startups-nederland .funding-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-financieringsmogelijkheden-startups-nederland .funding-content {
  padding-right: var(--space-lg);
}

.post-financieringsmogelijkheden-startups-nederland .funding-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-financieringsmogelijkheden-startups-nederland .funding-tips {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid var(--color-accent);
}

.post-financieringsmogelijkheden-startups-nederland .funding-tips ul,
.post-financieringsmogelijkheden-startups-nederland .funding-tips ol {
  margin-bottom: 0;
  padding-left: var(--space-lg);
}

.post-financieringsmogelijkheden-startups-nederland .funding-tips li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-normal);
}

.post-financieringsmogelijkheden-startups-nederland .funding-tips li:last-child {
  margin-bottom: 0;
}

.post-financieringsmogelijkheden-startups-nederland .funding-comparison {
  margin: var(--space-xxl) 0;
}

.post-financieringsmogelijkheden-startups-nederland .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-financieringsmogelijkheden-startups-nederland .comparison-card {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.post-financieringsmogelijkheden-startups-nederland .comparison-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-neutral);
}

.post-financieringsmogelijkheden-startups-nederland .comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-financieringsmogelijkheden-startups-nederland .comparison-card li {
  margin-bottom: var(--space-sm);
  padding-left: 0;
}

.post-financieringsmogelijkheden-startups-nederland .comparison-card li strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.post-financieringsmogelijkheden-startups-nederland .funding-image-wide {
  margin: var(--space-xl) 0;
}

.post-financieringsmogelijkheden-startups-nederland .funding-image-wide img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-financieringsmogelijkheden-startups-nederland .alternative-funding-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
  margin: var(--space-xl) 0;
}

.post-financieringsmogelijkheden-startups-nederland .alternative-content {
  order: 1;
}

.post-financieringsmogelijkheden-startups-nederland .alternative-image {
  order: 2;
}

.post-financieringsmogelijkheden-startups-nederland .alternative-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-financieringsmogelijkheden-startups-nederland .conclusion-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xxl);
  box-shadow: var(--shadow-lg);
}

.post-financieringsmogelijkheden-startups-nederland .conclusion-box h3 {
  color: var(--color-light);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-financieringsmogelijkheden-startups-nederland .conclusion-box p {
  color: var(--color-light);
  margin-bottom: 0;
}

.post-financieringsmogelijkheden-startups-nederland .related-posts-section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
  border-top: 1px solid var(--color-neutral);
}

.post-financieringsmogelijkheden-startups-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-secondary);
  position: relative;
}

.post-financieringsmogelijkheden-startups-nederland .related-posts-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

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

.post-financieringsmogelijkheden-startups-nederland .related-post-card {
  background-color: var(--color-neutral);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.post-financieringsmogelijkheden-startups-nederland .card-content {
  padding: var(--space-lg);
}

.post-financieringsmogelijkheden-startups-nederland .related-post-card h3 {
  font-size: var(--font-size-h5);
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-financieringsmogelijkheden-startups-nederland .related-post-card p {
  font-size: var(--font-size-small);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.post-financieringsmogelijkheden-startups-nederland .btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-size-small);
  transition: all var(--transition-fast);
}

.post-financieringsmogelijkheden-startups-nederland .btn-link .arrow {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-financieringsmogelijkheden-startups-nederland .btn-link:hover {
  color: var(--color-secondary);
}

.post-financieringsmogelijkheden-startups-nederland .btn-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 1023px) {
  .post-financieringsmogelijkheden-startups-nederland .post-hero,
  .post-financieringsmogelijkheden-startups-nederland .content-section,
  .post-financieringsmogelijkheden-startups-nederland .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-financieringsmogelijkheden-startups-nederland .funding-grid,
  .post-financieringsmogelijkheden-startups-nederland .alternative-funding-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-financieringsmogelijkheden-startups-nederland .funding-content,
  .post-financieringsmogelijkheden-startups-nederland .alternative-content {
    padding-right: 0;
    order: 1;
  }
  
  .post-financieringsmogelijkheden-startups-nederland .funding-image,
  .post-financieringsmogelijkheden-startups-nederland .alternative-image {
    order: 2;
  }
  
  .post-financieringsmogelijkheden-startups-nederland .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-financieringsmogelijkheden-startups-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-financieringsmogelijkheden-startups-nederland .post-hero,
  .post-financieringsmogelijkheden-startups-nederland .content-section,
  .post-financieringsmogelijkheden-startups-nederland .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-financieringsmogelijkheden-startups-nederland .post-hero .lead {
    font-size: var(--font-size-body);
  }
  
  .post-financieringsmogelijkheden-startups-nederland .comparison-grid,
  .post-financieringsmogelijkheden-startups-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-financieringsmogelijkheden-startups-nederland .conclusion-box {
    padding: var(--space-lg);
  }
}

.post-juridische-basiskennis-starters-nederland {
  color: var(--color-dark);
  font-family: var(--font-primary);
}

.post-juridische-basiskennis-starters-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.post-juridische-basiskennis-starters-nederland .breadcrumbs a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.post-juridische-basiskennis-starters-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-juridische-basiskennis-starters-nederland .post-hero {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.post-juridische-basiskennis-starters-nederland .post-hero h1 {
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  max-width: 900px;
}

.post-juridische-basiskennis-starters-nederland .post-hero .lead {
  font-size: 1.25rem;
  line-height: var(--line-height-loose);
  color: var(--color-dark);
  max-width: 800px;
  margin-bottom: 0;
}

.post-juridische-basiskennis-starters-nederland .content-section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.post-juridische-basiskennis-starters-nederland .content-section h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-juridische-basiskennis-starters-nederland .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.post-juridische-basiskennis-starters-nederland .content-section h3 {
  color: var(--color-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h4);
}

.post-juridische-basiskennis-starters-nederland .content-section h4 {
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-juridische-basiskennis-starters-nederland .section-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.post-juridische-basiskennis-starters-nederland .text-content {
  flex: 1;
}

.post-juridische-basiskennis-starters-nederland .image-container {
  flex: 0 0 40%;
  margin-top: var(--space-lg);
}

.post-juridische-basiskennis-starters-nederland .business-structure-image,
.post-juridische-basiskennis-starters-nederland .contracts-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-juridische-basiskennis-starters-nederland .business-structures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-juridische-basiskennis-starters-nederland .structure-card {
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-juridische-basiskennis-starters-nederland .structure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-juridische-basiskennis-starters-nederland .structure-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-juridische-basiskennis-starters-nederland .contracts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-juridische-basiskennis-starters-nederland .contract-item {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-juridische-basiskennis-starters-nederland .contract-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-juridische-basiskennis-starters-nederland .contract-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-juridische-basiskennis-starters-nederland .checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.post-juridische-basiskennis-starters-nederland .checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
}

.post-juridische-basiskennis-starters-nederland .checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.post-juridische-basiskennis-starters-nederland .tip-box {
  background-color: var(--color-warning);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  position: relative;
  border-left: 4px solid var(--color-primary);
}

.post-juridische-basiskennis-starters-nederland .tip-box h5 {
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-juridische-basiskennis-starters-nederland .tip-box p {
  margin-bottom: 0;
}

.post-juridische-basiskennis-starters-nederland .ip-privacy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-juridische-basiskennis-starters-nederland .ip-list,
.post-juridische-basiskennis-starters-nederland .privacy-steps {
  padding-left: var(--space-lg);
  margin: var(--space-md) 0;
}

.post-juridische-basiskennis-starters-nederland .ip-list li,
.post-juridische-basiskennis-starters-nederland .privacy-steps li {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-normal);
}

.post-juridische-basiskennis-starters-nederland .key-takeaways {
  background-color: var(--color-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid var(--color-accent);
}

.post-juridische-basiskennis-starters-nederland .key-takeaways h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.post-juridische-basiskennis-starters-nederland .key-takeaways ul {
  padding-left: var(--space-lg);
  margin: 0;
}

.post-juridische-basiskennis-starters-nederland .key-takeaways li {
  margin-bottom: var(--space-sm);
}

.post-juridische-basiskennis-starters-nederland .related-posts {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-light);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.post-juridische-basiskennis-starters-nederland .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-secondary);
  position: relative;
}

.post-juridische-basiskennis-starters-nederland .related-posts h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.post-juridische-basiskennis-starters-nederland .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-juridische-basiskennis-starters-nederland .post-card {
  background-color: var(--color-light);
  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-juridische-basiskennis-starters-nederland .post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.post-juridische-basiskennis-starters-nederland .post-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.post-juridische-basiskennis-starters-nederland .post-content h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  line-height: 1.4;
  color: var(--color-secondary);
}

.post-juridische-basiskennis-starters-nederland .post-content p {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
  flex-grow: 1;
}

.post-juridische-basiskennis-starters-nederland .post-content .btn-outline {
  align-self: flex-start;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-weight: 600;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.post-juridische-basiskennis-starters-nederland .post-content .btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
}

@media (max-width: 1023px) {
  .post-juridische-basiskennis-starters-nederland .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .related-posts {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .business-structures,
  .post-juridische-basiskennis-starters-nederland .contracts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-juridische-basiskennis-starters-nederland .section-content {
    flex-direction: column;
  }
  
  .post-juridische-basiskennis-starters-nederland .image-container {
    width: 100%;
    margin-top: var(--space-xl);
  }
  
  .post-juridische-basiskennis-starters-nederland .ip-privacy-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-juridische-basiskennis-starters-nederland .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-juridische-basiskennis-starters-nederland .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .related-posts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-juridische-basiskennis-starters-nederland .business-structures,
  .post-juridische-basiskennis-starters-nederland .contracts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-juridische-basiskennis-starters-nederland .post-grid {
    grid-template-columns: 1fr;
  }
}

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

.privacy-page__header {
  margin-bottom: var(--space-xxl);
}

.privacy-page__updated {
  font-size: var(--font-size-small);
  color: var(--color-secondary);
  margin-top: var(--space-md);
  font-style: italic;
}

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

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

.privacy-page h1 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.privacy-page h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.terms-page__title {
  color: var(--color-secondary);
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-md);
}

.terms-page__updated {
  color: var(--color-dark);
  opacity: 0.7;
  font-style: italic;
}

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

.terms-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-sm);
}

.terms-page p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-loose);
  color: var(--color-dark);
}

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

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

@media (max-width: 1023px) {
  .terms-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .terms-page__title {
    font-size: var(--font-size-h2);
  }
  
  .terms-page__section-title {
    font-size: var(--font-size-h4);
  }
  
  .terms-page__list {
    padding-left: var(--space-lg);
  }
}

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

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

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

.cookie-page__title {
  color: var(--color-secondary);
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-md);
}

.cookie-page__lead {
  color: var(--color-dark);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-loose);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.cookie-page__section {
  margin-bottom: var(--space-xxl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-neutral);
}

.cookie-page__section:last-of-type {
  border-bottom: none;
}

.cookie-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
}

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

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

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

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

.cookie-page p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-loose);
}

.cookie-page__footer {
  padding-top: var(--space-lg);
  text-align: center;
}

.cookie-page__update-info {
  color: var(--color-dark);
  font-style: italic;
}

@media (max-width: 1023px) {
  .cookie-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .cookie-page__title {
    font-size: var(--font-size-h2);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-h4);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--font-size-h5);
  }
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__title {
    font-size: var(--font-size-h3);
  }
  
  .cookie-page__lead {
    font-size: var(--font-size-body);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-h5);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--font-size-h6);
  }
}

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

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

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

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

.thank-page__lead {
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

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

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

.thank-page__icon {
  font-size: var(--icon-lg);
  width: 4rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

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

.thank-page__button {
  padding: var(--space-md) var(--space-xxl);
  font-size: var(--font-size-h6);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

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

.error-404 .container {
  max-width: 800px;
}

.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-404__code {
  font-family: var(--font-primary);
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.05em;
  position: relative;
  opacity: 0.9;
}

.error-404__code::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  bottom: -10px;
  left: 0;
  transform: scaleX(0.3);
  opacity: 0.5;
}

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

.error-404__message {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  color: var(--color-dark);
  line-height: var(--line-height-loose);
}

.error-404__button {
  margin-top: var(--space-md);
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.error-404__decoration {
  position: absolute;
  top: 15%;
  right: 15%;
  opacity: 0.1;
  z-index: -1;
  display: none;
}

.error-404__icon-circle {
  width: var(--icon-xl);
  height: var(--icon-xl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .error-404__decoration {
    display: block;
  }
  
  .error-404__message {
    font-size: var(--font-size-h6);
  }
}

@media (max-width: 767px) {
  .error-404 {
    padding: var(--space-xxl) var(--space-md);
  }
  
  .error-404__code {
    margin-bottom: var(--space-md);
  }
  
  .error-404__title {
    font-size: var(--font-size-h4);
    margin-bottom: var(--space-sm);
  }
  
  .error-404__message {
    margin-bottom: var(--space-lg);
  }
}
