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

:root {
  /* Color Scheme - Innovative yet trustworthy palette */
  --color-primary: #0057b8; /* Prussian blue - trustworthy, professional */
  --color-secondary: #ffc107; /* Amber - energy, entrepreneurship */
  --color-accent: #e63946; /* Crimson - boldness, action */
  --color-neutral-dark: #2b303a; /* Dark slate - depth */
  --color-neutral-light: #f5f7fa; /* Off-white - clean, modern */
  --color-text-primary: #212529; /* Near black - readability */
  --color-text-secondary: #495057; /* Dark gray - supporting text */
  --color-text-light: #ffffff; /* White - contrast text */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Source Sans Pro', sans-serif;
  
  /* Font Sizes - Mobile First */
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.75rem;
  --fs-h4: 1.5rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  /* Line Heights */
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  /* Spacing */
  --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 */
  --section-padding-mobile: 3rem;
  --section-padding-desktop: 5rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 9999px;
  --border-width: 1px;
  --border-width-thick: 2px;
  
  /* Shadows */
  --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-focus: 0 0 0 3px rgba(0, 87, 184, 0.25);
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
  background-color: var(--color-neutral-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-xs { font-size: var(--icon-xs); }
.icon-sm { font-size: var(--icon-sm); }
.icon-md { font-size: var(--icon-md); }
.icon-lg { font-size: var(--icon-lg); }
.icon-xl { font-size: var(--icon-xl); }

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

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

/* Responsive Typography */
@media (min-width: 768px) {
  :root {
    --fs-h1: 3.5rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-h4: 1.75rem;
    --fs-h5: 1.5rem;
    --fs-h6: 1.25rem;
    --fs-body: 1.125rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-h1: 4rem;
    --fs-h2: 3rem;
    --fs-h3: 2.25rem;
    --fs-h4: 1.875rem;
    --fs-h5: 1.5rem;
    --fs-h6: 1.25rem;
  }
}

/* Section Spacing */
section {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 1024px) {
  section {
    padding: var(--section-padding-desktop) 0;
  }
}
.header {
  position: relative;
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: var(--border-width) solid rgba(0, 87, 184, 0.1);
  font-family: var(--font-primary);
}

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

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

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

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

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--border-radius-md);
  margin-right: var(--space-sm);
  font-size: var(--fs-h5);
  position: relative;
  overflow: hidden;
}

.header__logo-icon:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
  transform: translate(40%, 40%);
}

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

.header__logo-main {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.header__logo-tagline {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.header__nav {
  display: none;
}

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

.header__nav-item {
  position: relative;
}

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

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

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

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

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

.header__cta {
  display: none;
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}

.header__mobile-icon,
.header__mobile-icon::before,
.header__mobile-icon::after {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-medium);
}

.header__mobile-icon::before,
.header__mobile-icon::after {
  content: '';
  position: absolute;
}

.header__mobile-icon::before {
  top: 0;
}

.header__mobile-icon::after {
  bottom: 0;
}

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

.header__mobile-menu.active {
  display: flex;
}

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

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--fs-h4);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-fast);
}

.header__mobile-close:hover {
  color: var(--color-accent);
}

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

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

.header__mobile-link {
  display: block;
  font-size: var(--fs-h5);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
  position: relative;
}

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

.header__mobile-link--cta {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--border-radius-md);
  font-weight: 600;
}

.header__mobile-link--cta:hover {
  background-color: #004795;
  color: var(--color-text-light);
}

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

.header__mobile-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.header__mobile-legal-link {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.header__mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0,0,0,0.05);
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-fast);
}

.header__mobile-social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

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

@media (min-width: 768px) {
  .header {
    padding: var(--space-lg) 0;
  }
  
  .header__logo-icon {
    width: 45px;
    height: 45px;
  }
  
  .header__logo-main {
    font-size: var(--fs-h4);
  }
  
  .header__logo-tagline {
    font-size: var(--fs-small);
  }
  
  .header__cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
  
  .header__mobile-toggle {
    display: none;
  }
}

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

/* Hero Section with Z-pattern Layout */
.main .hero {
  position: relative;
  padding: var(--section-padding-mobile) 0;
  background-color: var(--color-neutral-light);
  overflow: hidden;
}

.main .hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.05;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

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

.main .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main .hero h1 {
  margin-bottom: var(--space-md);
  font-size: var(--fs-h1);
  line-height: 1.1;
  color: var(--color-text-primary);
  position: relative;
}

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

.main .hero-subtitle {
  font-size: var(--fs-h5);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

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

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

.main .hero-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-medium);
}

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

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

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

.main .hero-accent-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--color-secondary);
  bottom: -20px;
  left: -20px;
  z-index: -1;
  border-radius: var(--border-radius-md);
  transform: rotate(-15deg);
}

.main .hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.main .stat-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

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

.main .hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 120L0 16.48 0 0 1200 0 1200 120z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--section-padding-mobile) 0;
  background-color: #ffffff;
}

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

.main .section-description {
  font-size: var(--fs-h6);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

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

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

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

.main .post-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.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 h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.main .post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

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

.main .section-cta {
  text-align: center;
}

.main .section-cta .btn {
  font-size: var(--fs-h6);
  padding: var(--space-md) var(--space-xxl);
}

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

.main .benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 87, 184, 0.05) 0%, transparent 40%);
  z-index: 0;
}

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

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

.main .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-sm);
}

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

.main .benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 87, 184, 0.1);
  border-radius: var(--border-radius-pill);
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.main .benefit-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

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

/* Journey Section */
.main .journey {
  padding: var(--section-padding-mobile) 0;
  background-color: white;
  position: relative;
}

.main .journey-path {
  position: relative;
  padding-left: 30px;
}

.main .journey-path::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 1;
}

.main .journey-step {
  position: relative;
  margin-bottom: var(--space-xxl);
}

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

.main .step-number {
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.main .step-content {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.main .journey-step:hover .step-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

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

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

.main .step-content img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

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

.main .testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-secondary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.main .testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

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

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

.main .quote-mark {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  color: var(--color-primary);
  opacity: 0.1;
  font-size: 60px;
}

.main .testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
  z-index: 1;
}

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

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-pill);
  object-fit: cover;
}

.main .author-info h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-body);
}

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

/* Resources Section */
.main .resources {
  padding: var(--section-padding-mobile) 0;
  background-color: white;
}

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

.main .resource-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
}

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

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

.main .resource-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .resource-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.main .resource-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

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

.main .contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-primary);
  z-index: 0;
}

.main .contact-wrapper {
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.main .contact-info {
  padding: var(--space-xl);
  background-color: white;
}

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

.main .contact-info p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

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

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

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

.main .feature span {
  font-weight: 500;
  color: var(--color-text-secondary);
}

.main .contact-info img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  margin-top: var(--space-lg);
}

.main .contact-form-container {
  padding: var(--space-xl);
  background-color: var(--color-primary);
  color: white;
}

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

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

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

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color var(--transition-fast);
}

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

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

.main .form-checkbox input {
  width: 20px;
  height: 20px;
}

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

.main .form-checkbox a {
  color: white;
  text-decoration: underline;
}

.main .form-checkbox a:hover {
  color: var(--color-secondary);
}

.main .contact-form .btn {
  justify-self: start;
  margin-top: var(--space-md);
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  border: none;
}

.main .contact-form .btn:hover {
  background-color: white;
  color: var(--color-primary);
}

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

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

.main .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

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

.main .cookie-buttons .btn {
  padding: var(--space-sm) var(--space-lg);
}

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

/* Media Queries */
@media (min-width: 768px) {
  .main .hero {
    padding: var(--section-padding-desktop) 0;
  }
  
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .main .contact-info {
    padding: var(--space-xxl);
  }
  
  .main .contact-form-container {
    padding: var(--space-xxl);
  }
  
  .main .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .main .testimonials-slider {
    flex-direction: row;
  }
  
  .main .testimonial-card {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .journey-path {
    padding-left: 50px;
  }
  
  .main .journey-path::before {
    left: 24px;
  }
  
  .main .step-number {
    width: 50px;
    height: 50px;
    left: -50px;
    font-size: var(--fs-h5);
  }
  
  .main .resources-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .form-group:nth-child(4),
  .main .form-group:nth-child(5),
  .main .form-group:nth-child(6) {
    grid-column: span 2;
  }
}

.footer {
  background-color: var(--color-neutral-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  font-family: var(--font-secondary);
}

.footer .container {
  position: relative;
  z-index: 2;
}

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

.footer__title {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.footer__title-accent {
  color: var(--color-secondary);
}

.footer__description {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
  color: #a7b1c2;
  max-width: 450px;
}

.footer__startup-journey {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  margin-top: var(--space-lg);
  border-left: 3px solid var(--color-secondary);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.footer__startup-journey:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.08);
}

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

.footer__journey-icon i {
  font-size: var(--icon-md);
  color: var(--color-neutral-dark);
}

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

.footer__journey-label {
  font-size: var(--fs-small);
  margin-bottom: var(--space-xs);
  color: #a7b1c2;
}

.footer__journey-link {
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-size: var(--fs-body);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.footer__journey-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.footer__journey-link:hover {
  color: var(--color-text-light);
}

.footer__journey-link:hover i {
  transform: translateX(5px);
}

.footer__nav-title, 
.footer__resources-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__nav-title::after, 
.footer__resources-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 40px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-pill);
}

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

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

.footer__nav-link {
  color: #a7b1c2;
  font-size: var(--fs-body);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: var(--space-xs) 0;
}

.footer__nav-link i {
  margin-right: var(--space-sm);
  font-size: var(--fs-small);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

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

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

.footer__resource-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.footer__resource-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  transition: all var(--transition-medium);
}

.footer__resource-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.footer__resource-icon {
  height: 40px;
  width: 40px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 87, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  color: var(--color-primary);
  flex-shrink: 0;
}

.footer__resource-content {
  flex: 1;
}

.footer__resource-name {
  font-size: var(--fs-small);
  font-weight: 600;
  margin: 0 0 var(--space-xs) 0;
  color: var(--color-text-light);
}

.footer__resource-link {
  font-size: var(--fs-xs);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.footer__resource-link i {
  margin-left: var(--space-xs);
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.footer__resource-link:hover {
  color: var(--color-text-light);
}

.footer__resource-link:hover i {
  transform: translateX(3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.footer__legal-link {
  color: #a7b1c2;
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

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

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

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

.footer__germany-flag {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 15px;
  margin-right: var(--space-sm);
  border-radius: 2px;
  overflow: hidden;
}

.footer__germany-stripe {
  height: 5px;
}

.footer__germany-black {
  background-color: #000000;
}

.footer__germany-red {
  background-color: #FF0000;
}

.footer__germany-gold {
  background-color: #FFCC00;
}

.footer__made-in {
  font-size: var(--fs-xs);
  color: #a7b1c2;
}

.footer__wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  z-index: 1;
}

.footer__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  animation: wave-animation 25s linear infinite;
  opacity: 0.05;
}

.footer__wave--1 {
  background: radial-gradient(circle at 50% 100%, transparent 25%, var(--color-primary) 25%);
  background-size: 50px 25px;
  height: 25px;
  bottom: 0;
  animation-duration: 20s;
}

.footer__wave--2 {
  background: radial-gradient(circle at 50% 100%, transparent 25%, var(--color-secondary) 25%);
  background-size: 40px 20px;
  height: 20px;
  bottom: 15px;
  animation-duration: 15s;
  animation-direction: reverse;
}

.footer__wave--3 {
  background: radial-gradient(circle at 50% 100%, transparent 25%, var(--color-accent) 25%);
  background-size: 30px 15px;
  height: 15px;
  bottom: 25px;
  animation-duration: 10s;
}

@keyframes wave-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__legal {
    order: 1;
  }
  
  .footer__copyright {
    order: 2;
  }
  
  .footer__germany {
    order: 3;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 2fr;
    gap: var(--space-xxl);
  }
  
  .footer__resource-cards {
    gap: var(--space-lg);
  }
  
  .footer__bottom {
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
  }
}

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

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

.privacy-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  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-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

.privacy-page h2 {
  color: var(--color-neutral-dark);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  padding-left: var(--space-md);
}

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

.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(--lh-body);
}

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

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

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

@media (max-width: 768px) {
  .privacy-page h1 {
    font-size: var(--fs-h2);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-lg);
  }
}

.terms-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  padding: var(--space-xl) 0;
}

.terms-page .container {
  max-width: 800px;
}

.terms-page__header {
  margin-bottom: var(--space-xxl);
  border-bottom: var(--border-width) solid var(--color-primary);
  padding-bottom: var(--space-xl);
}

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

.terms-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 0;
}

.terms-page__content {
  background-color: var(--color-text-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

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

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

.terms-page__section h2 {
  color: var(--color-neutral-dark);
  font-size: var(--fs-h4);
  border-bottom: var(--border-width) solid var(--color-secondary);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.terms-page__section h3 {
  font-size: var(--fs-h5);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

.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(--lh-body);
}

@media (max-width: 768px) {
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-h5);
  }
  
  .terms-page__section h3 {
    font-size: var(--fs-h6);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  padding: var(--section-padding-mobile) 0;
}

.cookie-page .container {
  max-width: 800px;
}

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

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

.cookie-page__section-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border-bottom: var(--border-width) solid var(--color-primary);
  padding-bottom: var(--space-sm);
}

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

.cookie-page__subsection-title {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.cookie-page__text {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-lg);
}

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

.cookie-page__list-item {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
}

.cookie-page__footer {
  border-top: var(--border-width) solid var(--color-primary);
  margin-top: var(--space-xxl);
  padding-top: var(--space-lg);
}

.cookie-page__footer-text {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .cookie-page {
    padding: var(--section-padding-desktop) 0;
  }
  
  .cookie-page__subsection {
    padding-left: var(--space-xl);
  }
}

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

.thank-page__content {
  text-align: center;
  padding: var(--space-xl) 0;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.thank-page__message {
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xl);
}

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

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

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

@media (max-width: 768px) {
  .thank-page__card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-h3);
  }
  
  .thank-page__message {
    font-size: var(--fs-body);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-xxl);
}

.category-page__hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.category-page__hero-description {
  font-size: var(--fs-h5);
  line-height: var(--lh-body);
  max-width: 800px;
  margin-bottom: 0;
}

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

.category-page__posts h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.category-page__posts h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

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

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

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

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

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

.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(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

/* Business Skills Section */
.category-page__business-skills {
  padding: var(--space-xxl) 0;
  background-color: white;
}

.category-page__business-skills h2 {
  margin-bottom: var(--space-xxl);
  position: relative;
  display: inline-block;
}

.category-page__business-skills h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

.category-page__skills-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.skill-card {
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  background-color: var(--color-neutral-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

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

.skill-card__icon {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 87, 184, 0.1);
}

.skill-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

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

.skill-card__list {
  list-style-type: none;
  padding-left: 0;
}

.skill-card__list li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.skill-card__list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* Startup Ecosystem Section */
.category-page__startup-ecosystem {
  padding: var(--space-xxl) 0;
  background-color: var(--color-neutral-light);
}

.category-page__startup-ecosystem h2 {
  margin-bottom: var(--space-xxl);
  position: relative;
  display: inline-block;
}

.category-page__startup-ecosystem h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
}

.ecosystem-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
}

.ecosystem-stats h3,
.ecosystem-sectors h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.stat-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.stat-description {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.sector-item {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.sector-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sector-item h4 {
  color: var(--color-primary);
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.sector-item p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__skills-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ecosystem-overview {
    grid-template-columns: 1fr 1fr;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Page-specific styles */
.post-geschaeftsplan-erstellen-leitfaden {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  line-height: var(--lh-body);
}

/* Breadcrumbs */
.post-geschaeftsplan-erstellen-leitfaden .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  background-color: var(--color-neutral-light);
}

.post-geschaeftsplan-erstellen-leitfaden .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-geschaeftsplan-erstellen-leitfaden .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-geschaeftsplan-erstellen-leitfaden .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-geschaeftsplan-erstellen-leitfaden .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.post-geschaeftsplan-erstellen-leitfaden .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  font-weight: 400;
}

.post-geschaeftsplan-erstellen-leitfaden .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.post-geschaeftsplan-erstellen-leitfaden .hero-cta .btn {
  margin-right: var(--space-md);
}

/* Content Sections - General */
.post-geschaeftsplan-erstellen-leitfaden .content-section {
  padding: var(--section-padding-mobile) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  position: relative;
}

.post-geschaeftsplan-erstellen-leitfaden .content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  font-size: var(--fs-h4);
}

.post-geschaeftsplan-erstellen-leitfaden .section-image {
  max-width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) 0;
}

/* Section 1 - Grundlagen */
.post-geschaeftsplan-erstellen-leitfaden .grundlagen-section {
  background-color: var(--color-neutral-light);
}

.post-geschaeftsplan-erstellen-leitfaden .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.post-geschaeftsplan-erstellen-leitfaden .feature-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
}

.post-geschaeftsplan-erstellen-leitfaden .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.post-geschaeftsplan-erstellen-leitfaden .feature-highlight {
  color: var(--color-primary);
  font-weight: 600;
}

/* Section 2 - Komponenten */
.post-geschaeftsplan-erstellen-leitfaden .komponenten-section {
  background-color: white;
  padding: var(--section-padding-mobile) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .komponenten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .komponente-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-geschaeftsplan-erstellen-leitfaden .komponente-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-geschaeftsplan-erstellen-leitfaden .komponente-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: var(--fs-h6);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
}

.post-geschaeftsplan-erstellen-leitfaden .komponente-card h3 {
  margin-top: var(--space-md);
  color: var(--color-primary);
}

.post-geschaeftsplan-erstellen-leitfaden .centered-image {
  display: flex;
  justify-content: center;
  margin: var(--space-xxl) 0 var(--space-lg);
}

/* Section 3 - Erfolgsfaktoren */
.post-geschaeftsplan-erstellen-leitfaden .erfolgs-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-mobile) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .erfolgsfaktoren {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .erfolgsfaktor {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.post-geschaeftsplan-erstellen-leitfaden .erfolgsfaktor h3 {
  color: var(--color-primary);
  margin-top: 0;
  font-size: var(--fs-h5);
}

.post-geschaeftsplan-erstellen-leitfaden .final-advice {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  margin-top: var(--space-xxl);
  box-shadow: var(--shadow-md);
}

.post-geschaeftsplan-erstellen-leitfaden .advice-steps {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-geschaeftsplan-erstellen-leitfaden .advice-steps li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xs);
}

.post-geschaeftsplan-erstellen-leitfaden .conclusion {
  font-weight: 500;
  font-size: var(--fs-h6);
  line-height: var(--lh-subheading);
  color: var(--color-neutral-dark);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-light);
}

/* Related Posts Section */
.post-geschaeftsplan-erstellen-leitfaden .related-posts-section {
  background-color: white;
  padding: var(--section-padding-mobile) 0;
}

.post-geschaeftsplan-erstellen-leitfaden .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-geschaeftsplan-erstellen-leitfaden .related-post-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
}

.post-geschaeftsplan-erstellen-leitfaden .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-geschaeftsplan-erstellen-leitfaden .card-content {
  padding: var(--space-xl);
}

.post-geschaeftsplan-erstellen-leitfaden .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-geschaeftsplan-erstellen-leitfaden .related-post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.post-geschaeftsplan-erstellen-leitfaden .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-geschaeftsplan-erstellen-leitfaden .read-more:hover {
  color: var(--color-accent);
}

.post-geschaeftsplan-erstellen-leitfaden .read-more .arrow {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-geschaeftsplan-erstellen-leitfaden .read-more:hover .arrow {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-geschaeftsplan-erstellen-leitfaden .section-content {
    flex-direction: row;
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .text-content {
    flex: 1;
    padding-right: var(--space-xl);
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .image-container {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .komponenten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .erfolgsfaktoren {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-geschaeftsplan-erstellen-leitfaden .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .komponenten-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .erfolgsfaktoren {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-geschaeftsplan-erstellen-leitfaden .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Page-specific styles */
.post-finanzierungsmoeglichkeiten-startups-deutschland {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-finanzierungsmoeglichkeiten-startups-deutschland .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Hero Section */
.post-finanzierungsmoeglichkeiten-startups-deutschland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xxxl) 0;
  text-align: center;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-secondary);
}

/* Content Sections */
.post-finanzierungsmoeglichkeiten-startups-deutschland .content-section {
  padding: var(--section-padding-mobile) 0;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .section-light {
  background-color: white;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .section-dark {
  background-color: var(--color-neutral-light);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .content-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .content-section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: var(--space-md) auto 0;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
  color: var(--color-primary);
}

/* Section 1 - Public Funding */
.post-finanzierungsmoeglichkeiten-startups-deutschland .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .text-content {
  flex: 1;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-image {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-list li {
  margin-bottom: var(--space-md);
}

/* Section 2 - Private Funding */
.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-option {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-option h3 {
  margin-top: 0;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .center-image {
  margin-top: var(--space-xxl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-comparison {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Phases */
.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-selector {
  margin-bottom: var(--space-xxl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-item {
  margin-bottom: var(--space-lg);
  border: var(--border-width) solid var(--color-neutral-dark);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-item h3 {
  margin: 0;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-neutral-dark);
  color: var(--color-text-light);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-item.active h3 {
  background-color: var(--color-primary);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-content {
  padding: var(--space-lg);
  background-color: white;
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-content ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .phase-content li {
  margin-bottom: var(--space-sm);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .key-takeaways {
  background-color: white;
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-lg);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .key-takeaways h3 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .key-takeaways ol {
  margin-left: var(--space-lg);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .key-takeaways li {
  margin-bottom: var(--space-md);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .funding-strategy {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Related Posts Section */
.post-finanzierungsmoeglichkeiten-startups-deutschland .related-posts-section {
  background-color: var(--color-neutral-dark);
  padding: var(--section-padding-mobile) 0;
  color: var(--color-text-light);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .related-posts-section h2 {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .related-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-content {
  padding: var(--space-lg);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-content h3 {
  margin-top: 0;
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-content h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-content h3 a:hover {
  color: var(--color-accent);
}

.post-finanzierungsmoeglichkeiten-startups-deutschland .post-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
}

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

.post-finanzierungsmoeglichkeiten-startups-deutschland .read-more:hover {
  color: var(--color-accent);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-finanzierungsmoeglichkeiten-startups-deutschland .section-content {
    flex-direction: row;
  }
  
  .post-finanzierungsmoeglichkeiten-startups-deutschland .funding-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-finanzierungsmoeglichkeiten-startups-deutschland .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-finanzierungsmoeglichkeiten-startups-deutschland .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-finanzierungsmoeglichkeiten-startups-deutschland .funding-options {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-finanzierungsmoeglichkeiten-startups-deutschland .related-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Base styles for the post page */
.post-page {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  background-color: var(--color-neutral-light);
  border-bottom: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

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

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

/* Hero Section */
.post-page .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xxl) 0;
  text-align: center;
}

.post-page .post-hero h1 {
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-secondary);
}

/* Content Sections */
.post-page .content-section {
  padding: var(--section-padding-mobile) 0;
}

.post-page .content-section:nth-child(odd) {
  background-color: var(--color-neutral-light);
}

.post-page .content-section:nth-child(even) {
  background-color: white;
}

.post-page .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-page .text-content {
  flex: 1;
}

.post-page .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Resilience Section */
.post-page .resilience-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-page .strategy-list {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.post-page .strategy-list li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Risk Section */
.post-page .risk-section {
  background-color: white;
}

.post-page .risk-framework {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-secondary);
}

.post-page .risk-framework h3 {
  margin-top: 0;
  color: var(--color-neutral-dark);
}

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

.post-page .risk-framework li {
  margin-bottom: var(--space-sm);
}

/* Learning Section */
.post-page .learning-section {
  background-color: var(--color-neutral-light);
}

.post-page .learning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-page .learning-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.post-page .learning-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: var(--fs-h5);
}

.post-page .quote-container {
  margin: var(--space-xl) 0;
}

.post-page .entrepreneur-quote {
  background-color: var(--color-neutral-dark);
  color: var(--color-text-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  position: relative;
  font-style: italic;
  box-shadow: var(--shadow-md);
}

.post-page .entrepreneur-quote p {
  font-size: var(--fs-h6);
  line-height: var(--lh-subheading);
  margin-bottom: var(--space-md);
}

.post-page .entrepreneur-quote cite {
  font-size: var(--fs-small);
  font-style: normal;
  opacity: 0.8;
}

.post-page .mindset-summary {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-xl);
}

.post-page .mindset-summary h3 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-page .summary-list {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-page .summary-list li {
  margin-bottom: var(--space-sm);
}

/* Related Posts Section */
.post-page .related-posts {
  background-color: white;
  padding: var(--section-padding-mobile) 0;
  border-top: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

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

.post-page .post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-page .post-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.post-page .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-page .post-card h3 a:hover {
  color: var(--color-accent);
}

.post-page .post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-page .read-more {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  margin-top: auto;
}

.post-page .read-more:hover {
  color: var(--color-accent);
}

/* Media Queries */
@media (min-width: 768px) {
  .post-page .section-content {
    flex-direction: row;
  }
  
  .post-page .section-content.reverse {
    flex-direction: row-reverse;
  }
  
  .post-page .learning-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-page .related-posts {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-page .post-hero {
    padding: var(--space-xxxl) 0;
  }
}

/* Hover Effects and Animations */
.post-page .section-image {
  transition: transform var(--transition-medium);
}

.post-page .image-container:hover .section-image {
  transform: scale(1.02);
}

.post-page .risk-framework {
  transition: box-shadow var(--transition-medium), transform var(--transition-medium);
}

.post-page .risk-framework:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.post-page .entrepreneur-quote {
  transition: transform var(--transition-medium);
}

.post-page .entrepreneur-quote:hover {
  transform: translateY(-3px);
}

  /* Post-specific styles */
  .post-unternehmensformen-deutschland-vergleich .post-hero {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-mobile) 0;
    border-bottom: var(--border-width) solid rgba(0,0,0,0.1);
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-hero .lead {
    font-family: var(--font-secondary);
    font-size: var(--fs-h5);
    line-height: var(--lh-subheading);
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto var(--space-lg);
  }
  
  .post-unternehmensformen-deutschland-vergleich .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-text-secondary);
    border-bottom: var(--border-width) solid rgba(0,0,0,0.05);
    background-color: white;
  }
  
  .post-unternehmensformen-deutschland-vergleich .breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-unternehmensformen-deutschland-vergleich .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Content Sections */
  .post-unternehmensformen-deutschland-vergleich .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .content-section h2 {
    text-align: center;
    margin-bottom: var(--space-xxl);
    position: relative;
  }
  
  .post-unternehmensformen-deutschland-vergleich .content-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--border-radius-pill);
  }
  
  .post-unternehmensformen-deutschland-vergleich .content-section h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-size: var(--fs-h4);
  }
  
  .post-unternehmensformen-deutschland-vergleich .content-section h4 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-sm);
    color: var(--color-neutral-dark);
  }
  
  /* Section 1: Basics */
  .post-unternehmensformen-deutschland-vergleich .basics-section {
    background-color: white;
  }
  
  .post-unternehmensformen-deutschland-vergleich .section-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .post-unternehmensformen-deutschland-vergleich .feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .feature-list li {
    padding: var(--space-md) 0;
    border-bottom: var(--border-width) solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: var(--space-xl);
  }
  
  .post-unternehmensformen-deutschland-vergleich .feature-list li:before {
    content: "✓";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
  }
  
  .post-unternehmensformen-deutschland-vergleich .feature-list li:last-child {
    border-bottom: none;
  }
  
  /* Section 2: Comparison */
  .post-unternehmensformen-deutschland-vergleich .comparison-section {
    background-color: var(--color-neutral-light);
  }
  
  .post-unternehmensformen-deutschland-vergleich .company-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-xxl) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .company-type-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  }
  
  .post-unternehmensformen-deutschland-vergleich .company-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-unternehmensformen-deutschland-vergleich .company-type-card h3 {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-md) var(--space-lg);
    margin: 0;
    font-size: var(--fs-h5);
  }
  
  .post-unternehmensformen-deutschland-vergleich .card-content {
    padding: var(--space-lg);
  }
  
  .post-unternehmensformen-deutschland-vergleich .card-features p {
    margin-bottom: var(--space-md);
    border-bottom: var(--border-width) solid rgba(0,0,0,0.05);
    padding-bottom: var(--space-md);
  }
  
  .post-unternehmensformen-deutschland-vergleich .card-features p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .info-box {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-secondary);
    margin: var(--space-xxl) 0;
    box-shadow: var(--shadow-sm);
  }
  
  .post-unternehmensformen-deutschland-vergleich .center-image {
    text-align: center;
    margin: var(--space-xxl) auto;
    max-width: 800px;
  }
  
  /* Section 3: Decision */
  .post-unternehmensformen-deutschland-vergleich .decision-section {
    background-color: white;
  }
  
  .post-unternehmensformen-deutschland-vergleich .criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-xxl) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .criteria-item {
    background-color: var(--color-neutral-light);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
  }
  
  .post-unternehmensformen-deutschland-vergleich .criteria-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .post-unternehmensformen-deutschland-vergleich .criteria-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
  }
  
  .post-unternehmensformen-deutschland-vergleich .criteria-item p {
    margin-bottom: 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .recommendation-box {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    margin: var(--space-xxl) 0;
    box-shadow: var(--shadow-md);
  }
  
  .post-unternehmensformen-deutschland-vergleich .recommendation-box h3 {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-h4);
  }
  
  .post-unternehmensformen-deutschland-vergleich .recommendation-box p {
    margin-bottom: var(--space-md);
    line-height: var(--lh-body);
    opacity: 0.9;
  }
  
  .post-unternehmensformen-deutschland-vergleich .recommendation-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Images */
  .post-unternehmensformen-deutschland-vergleich .image-container {
    margin: var(--space-xl) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
  }
  
  /* Related Posts */
  .post-unternehmensformen-deutschland-vergleich .related-posts {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-unternehmensformen-deutschland-vergleich .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xxl);
  }
  
  .post-unternehmensformen-deutschland-vergleich .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    height: 100%;
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-content h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-content p {
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    color: var(--color-text-secondary);
  }
  
  .post-unternehmensformen-deutschland-vergleich .post-content .btn {
    align-self: flex-start;
  }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .post-unternehmensformen-deutschland-vergleich .section-content {
      flex-direction: row;
    }
    
    .post-unternehmensformen-deutschland-vergleich .text-content {
      flex: 1;
      padding-right: var(--space-xl);
    }
    
    .post-unternehmensformen-deutschland-vergleich .image-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .post-unternehmensformen-deutschland-vergleich .company-types-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .post-unternehmensformen-deutschland-vergleich .criteria-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-unternehmensformen-deutschland-vergleich .posts-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-unternehmensformen-deutschland-vergleich .post-hero .lead {
      font-size: var(--fs-h6);
    }
    
    .post-unternehmensformen-deutschland-vergleich .post-hero h1 {
      font-size: var(--fs-h2);
    }
    
    .post-unternehmensformen-deutschland-vergleich .content-section h2 {
      font-size: var(--fs-h3);
    }
    
    .post-unternehmensformen-deutschland-vergleich .content-section h3 {
      font-size: var(--fs-h4);
    }
  }

/* Page-specific styles */
.post-netzwerken-gruender-startup-hubs-deutschland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-xxxl) 0;
  position: relative;
  overflow: hidden;
}

.post-netzwerken-gruender-startup-hubs-deutschland .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h1);
}

.post-netzwerken-gruender-startup-hubs-deutschland .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 900px;
  margin-bottom: 0;
}

/* Breadcrumbs */
.post-netzwerken-gruender-startup-hubs-deutschland .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

.post-netzwerken-gruender-startup-hubs-deutschland .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-netzwerken-gruender-startup-hubs-deutschland .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Content Sections */
.post-netzwerken-gruender-startup-hubs-deutschland .content-section {
  padding: var(--section-padding-mobile) 0;
}

.post-netzwerken-gruender-startup-hubs-deutschland .content-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.post-netzwerken-gruender-startup-hubs-deutschland .content-section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--space-md) auto 0;
}

/* Berlin/Munich Section */
.post-netzwerken-gruender-startup-hubs-deutschland .berlin-munich-section {
  background-color: var(--color-neutral-light);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-text h3 {
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-text h3:first-child {
  margin-top: 0;
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-image img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Secondary Hubs Section */
.post-netzwerken-gruender-startup-hubs-deutschland .secondary-hubs-section {
  background-color: white;
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-card {
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-netzwerken-gruender-startup-hubs-deutschland .key-spaces {
  margin-top: var(--space-lg);
}

.post-netzwerken-gruender-startup-hubs-deutschland .key-spaces h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-netzwerken-gruender-startup-hubs-deutschland .key-spaces ul {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-netzwerken-gruender-startup-hubs-deutschland .key-spaces li {
  margin-bottom: var(--space-sm);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-image-container {
  margin-top: var(--space-xxl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .hub-image-container img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Networking Strategies Section */
.post-netzwerken-gruender-startup-hubs-deutschland .networking-strategies-section {
  background-color: var(--color-neutral-light);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-card {
  height: 100%;
  border-left: 4px solid var(--color-secondary);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-card ul {
  padding-left: var(--space-xl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-card li {
  margin-bottom: var(--space-sm);
}

.post-netzwerken-gruender-startup-hubs-deutschland .conclusion {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .conclusion h3 {
  color: var(--color-accent);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-netzwerken-gruender-startup-hubs-deutschland .strategy-image img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Related Posts Section */
.post-netzwerken-gruender-startup-hubs-deutschland .related-posts-section {
  background-color: white;
  padding: var(--section-padding-mobile) 0;
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-post-card p {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.post-netzwerken-gruender-startup-hubs-deutschland .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive styles */
@media (min-width: 768px) {
  .post-netzwerken-gruender-startup-hubs-deutschland .hub-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .hub-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-netzwerken-gruender-startup-hubs-deutschland .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .hub-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .strategy-content {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .strategy-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-netzwerken-gruender-startup-hubs-deutschland .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Privacy Policy Page Styles */
.privacy-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  padding-bottom: var(--space-xxxl);
}

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

.privacy-page h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
}

.privacy-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-lg);
}

.privacy-page__section {
  margin-bottom: var(--space-xxl);
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-page h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width) solid var(--color-secondary);
}

.privacy-page h3 {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h5);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.privacy-page p {
  font-family: var(--font-secondary);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.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(--lh-body);
}

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

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

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

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

/* Responsive adjustments */
@media (min-width: 768px) {
  .privacy-page__section {
    padding: var(--space-xxl);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .privacy-page h1 {
    font-size: var(--fs-h2);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-h4);
  }
  
  .privacy-page h3 {
    font-size: var(--fs-h6);
  }
}

/* Terms of Service Page Styles */
.terms-page {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) var(--space-lg);
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  line-height: var(--lh-body);
}

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

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

.terms-page__date {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

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

.terms-page__section-title {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  padding-left: var(--space-md);
}

.terms-page__text {
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  font-size: var(--fs-body);
}

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

.terms-page__list-item {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .terms-page {
    padding: var(--space-xxl) var(--space-xl);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h4);
  }
}

@media (min-width: 1024px) {
  .terms-page {
    padding: var(--space-xxxl) var(--space-xxl);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xxxl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xxxl);
  }
}

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

.cookie-page .container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
}

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: var(--space-xxl);
  text-align: center;
}

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

.cookie-page__heading {
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width) solid var(--color-secondary);
}

.cookie-page__subheading {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

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

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

.cookie-page__list-item {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.cookie-page__updated {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  text-align: center;
  font-style: italic;
  margin-top: var(--space-xxl);
  padding-top: var(--space-lg);
  border-top: var(--border-width) solid var(--color-neutral-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-page .container {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .cookie-page__heading {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subheading {
    font-size: var(--fs-h6);
  }
}

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

.thank-page__container {
  padding: var(--space-lg);
  width: 100%;
  max-width: 800px;
}

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

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

.thank-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-md);
}

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

.thank-page__text {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.thank-page__confirmation {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h6);
  color: var(--color-primary);
  margin: var(--space-xl) 0;
}

.thank-page__confirmation .icon {
  color: var(--color-secondary);
  margin-right: var(--space-sm);
}

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

.thank-page__button {
  font-size: var(--fs-body);
  padding: var(--space-md) var(--space-xxl);
  border-radius: var(--border-radius-md);
}

@media (max-width: 768px) {
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-h3);
  }
  
  .thank-page__confirmation {
    font-size: var(--fs-body);
  }
  
  .thank-page__button {
    width: 100%;
  }
}

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

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

  .error-404__code {
    font-family: var(--font-primary);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-lg);
    position: relative;
    opacity: 0.9;
    text-shadow: var(--shadow-md);
  }

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

  .error-404__title {
    font-family: var(--font-primary);
    font-size: var(--fs-h3);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-md);
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: var(--lh-body);
  }

  .error-404__button {
    transition: all var(--transition-medium);
    padding: var(--space-md) var(--space-xl);
  }

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

  /* Media Queries */
  @media (min-width: 768px) {
    .error-404__code {
      font-size: 8rem;
    }

    .error-404__title {
      font-size: var(--fs-h2);
    }

    .error-404__message {
      font-size: var(--fs-body);
      max-width: 80%;
    }
  }

  @media (min-width: 1024px) {
    .error-404__code {
      font-size: 10rem;
    }

    .error-404__title {
      font-size: var(--fs-h1);
    }

    .error-404__content {
      padding: var(--space-xxl) 0;
    }
  }
