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

:root {
  /* Color Scheme - Modern German Business */
  --color-primary: #1a5f7a; /* Deep Teal - Trust, Stability */
  --color-secondary: #086e7d; /* Medium Teal - Professionalism */
  --color-accent: #ff9e00; /* Vibrant Orange - Innovation, Energy */
  --color-neutral-dark: #2c3e50; /* Dark Blue-Gray - Authority */
  --color-neutral-light: #f7f9fc; /* Off-White - Clarity */
  --color-text-primary: #2c3e50; /* Dark Blue-Gray */
  --color-text-secondary: #546e7a; /* Medium Blue-Gray */
  --color-text-light: #ffffff; /* White */
  --color-border: #e0e6ed; /* Light Gray */
  --color-success: #27ae60; /* Green */
  --color-warning: #f39c12; /* Amber */
  --color-error: #e74c3c; /* Red */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Source Sans Pro', sans-serif;
  
  /* Font Sizes - Desktop */
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.8rem;
  --font-size-h3: 2.2rem;
  --font-size-h4: 1.8rem;
  --font-size-h5: 1.4rem;
  --font-size-h6: 1.2rem;
  --font-size-body: 1.125rem;
  --font-size-small: 0.875rem;
  --font-size-xs: 0.75rem;
  
  /* Line Heights */
  --line-height-heading: 1.2;
  --line-height-body: 1.6;
  
  /* Spacing */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Section Padding */
  --section-padding-desktop: 6rem;
  --section-padding-tablet: 4rem;
  --section-padding-mobile: 3rem;
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-pill: 50rem;
  
  /* 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(26, 95, 122, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Icon Sizes */
  --icon-size-xs: 1rem;
  --icon-size-sm: 1.25rem;
  --icon-size-md: 1.5rem;
  --icon-size-lg: 2rem;
  --icon-size-xl: 3rem;
}

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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-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);
  line-height: var(--line-height-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

h6 {
  font-size: var(--font-size-h6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.text-lead {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-body);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

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

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

.btn-accent:hover {
  background-color: #f39200;
  border-color: #f39200;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-sm) var(--space-lg);
  font-size: 1.25rem;
}

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

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

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-xs {
  font-size: var(--icon-size-xs);
}

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

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

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

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

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

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

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  :root {
    --font-size-h1: 2.8rem;
    --font-size-h2: 2.4rem;
    --font-size-h3: 1.8rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.2rem;
    --font-size-h6: 1.1rem;
    --font-size-body: 1rem;
  }
  
  section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-h1: 2.2rem;
    --font-size-h2: 1.8rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.3rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    --font-size-body: 1rem;
  }
  
  section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .btn {
    padding: var(--space-2xs) var(--space-sm);
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-sm);
  }
}
.header {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.header__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--border-radius-md);
  margin-right: var(--space-xs);
  font-size: 1.2rem;
}

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

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

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

.header__nav {
  display: flex;
  margin-left: auto;
}

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

.header__nav-item {
  margin-right: var(--space-md);
  position: relative;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: var(--space-xs) var(--space-2xs);
  transition: color var(--transition-normal);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.header__cta {
  font-size: var(--font-size-small);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--border-radius-pill);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: var(--space-sm);
  padding: 0;
}

.header__mobile-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 8px;
  transition: all var(--transition-normal);
}

.header__mobile-toggle-bar:nth-child(1) {
  top: 14px;
}

.header__mobile-toggle-bar:nth-child(2) {
  top: 20px;
}

.header__mobile-toggle-bar:nth-child(3) {
  top: 26px;
}

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

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

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

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

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

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

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

.header__mobile-nav {
  margin-bottom: auto;
}

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

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

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

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

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

.header__mobile-nav-link:hover::after {
  width: 50px;
}

.header__mobile-nav-link--highlight {
  color: var(--color-accent);
  font-weight: 700;
}

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

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

.header__mobile-legal {
  display: flex;
  flex-wrap: wrap;
}

.header__mobile-legal-link {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  margin-right: var(--space-md);
  margin-bottom: var(--space-xs);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/* Media Queries */
@media (max-width: 1366px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .header__container {
    padding: 0 var(--space-sm);
  }
  
  .header__logo {
    font-size: var(--font-size-h5);
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .header__cta {
    display: none;
  }
}

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

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

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

.main .hero-content {
  grid-area: content;
  position: relative;
  z-index: 2;
  padding-right: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.main .hero-shape-1 {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(26, 95, 122, 0.1);
  z-index: 1;
}

.main .hero-shape-2 {
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 158, 0, 0.15);
  z-index: 1;
}

.main .hero-stats {
  grid-area: stats;
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.main .stat-card {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .stat-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: 2rem;
}

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

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

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

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

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

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

.main .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.main .post-card-content h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

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

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

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

/* Key Competencies Section */
.main .key-competencies {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

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

.main .competency-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.main .competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.main .competency-card:nth-child(2n) .competency-icon {
  background-color: var(--color-secondary);
}

.main .competency-card:nth-child(3n) .competency-icon {
  background-color: var(--color-accent);
  color: var(--color-neutral-dark);
}

.main .competency-card h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
}

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

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

.main .competency-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

.main .competency-list li i {
  color: var(--color-success);
  margin-right: var(--space-xs);
}

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

.main .journey-path {
  position: relative;
}

.main .journey-path:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
}

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

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

.main .journey-step-number {
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-h2);
  font-weight: bold;
  margin-right: var(--space-lg);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.main .journey-step:nth-child(even) .journey-step-number {
  background-color: var(--color-secondary);
}

.main .journey-step:nth-child(3n) .journey-step-number {
  background-color: var(--color-accent);
  color: var(--color-neutral-dark);
}

.main .journey-step-content {
  flex: 1;
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .journey-step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.main .journey-step:nth-child(even) .journey-step-content h3 {
  color: var(--color-secondary);
}

.main .journey-step:nth-child(3n) .journey-step-content h3 {
  color: var(--color-accent);
}

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

.main .journey-step-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

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

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

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

.main .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

.main .testimonial-quote {
  position: absolute;
  top: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--icon-size-md);
  box-shadow: var(--shadow-sm);
}

.main .testimonial-card:nth-child(2) .testimonial-quote {
  background-color: var(--color-secondary);
}

.main .testimonial-card:nth-child(3) .testimonial-quote {
  background-color: var(--color-accent);
  color: var(--color-neutral-dark);
}

.main .testimonial-content p {
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.main .testimonial-author {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.main .testimonial-author h4 {
  font-size: var(--font-size-body);
  margin-bottom: var(--space-2xs);
  color: var(--color-neutral-dark);
}

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

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

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

.main .resource-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.main .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.main .resource-card:nth-child(2n) .resource-icon {
  background-color: var(--color-secondary);
}

.main .resource-card:nth-child(3n) .resource-icon {
  background-color: var(--color-accent);
  color: var(--color-neutral-dark);
}

.main .resource-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

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

/* Contact Section */
.main .contact {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.main .contact:before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.main .contact:after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

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

.main .contact-content .text-lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.main .contact-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

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

.main .contact-feature i {
  color: var(--color-accent);
  font-size: var(--icon-size-sm);
}

.main .contact-feature p {
  margin-bottom: 0;
  color: white;
}

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

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

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

.main .form-group label {
  color: var(--color-neutral-dark);
  font-weight: 500;
}

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

.main .form-privacy input {
  margin-top: 5px;
}

.main .form-privacy label {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

.main .form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.main .contact-form .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

/* 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);
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "stats";
  }

  .main .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .main .hero-content h1:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .main .hero-cta {
    justify-content: center;
  }

  .main .hero-visual {
    height: 400px;
  }

  .main .posts-grid,
  .main .competencies-grid,
  .main .testimonials-grid,
  .main .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main .contact-content {
    text-align: center;
  }

  .main .contact-features {
    align-items: center;
  }

  .main .cookie-content {
    flex-direction: column;
    gap: var(--space-md);
  }

  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main .hero-stats {
    flex-direction: column;
  }

  .main .posts-grid,
  .main .competencies-grid,
  .main .testimonials-grid,
  .main .resources-grid {
    grid-template-columns: 1fr;
  }

  .main .journey-step {
    flex-direction: column;
  }

  .main .journey-path:before {
    left: 50px;
  }

  .main .journey-step-number {
    margin-bottom: var(--space-md);
  }

  .main .hero-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .main .hero-cta .btn {
    width: 100%;
  }

  .main .contact-form-container {
    padding: var(--space-lg);
  }
}

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

.footer__wave {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  color: var(--color-neutral-dark);
  line-height: 0;
}

.footer svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.footer__brand {
  position: relative;
}

.footer__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
  position: relative;
}

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

.footer__tagline {
  font-size: var(--font-size-small);
  line-height: 1.5;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 250px;
  opacity: 0.9;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  padding: var(--space-2xs) var(--space-xs);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.footer__badge:hover {
  transform: rotate(0) scale(1.05);
}

.footer__badge-text {
  position: relative;
}

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

.footer__nav-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

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

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

.footer__nav-link {
  color: var(--color-text-light);
  opacity: 0.8;
  text-decoration: none;
  font-size: var(--font-size-small);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-xs);
}

.footer__nav-link::before {
  content: '›';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-fast);
}

.footer__nav-link:hover {
  opacity: 1;
  padding-left: var(--space-sm);
  color: var(--color-text-light);
  text-decoration: none;
}

.footer__nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__nav-link:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.footer__cta {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  border-left: 3px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.footer__cta-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h5);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

.footer__cta-text {
  font-size: var(--font-size-small);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
  opacity: 0.9;
}

.footer__form-group {
  display: flex;
  gap: var(--space-2xs);
}

.footer__input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-secondary);
  font-size: var(--font-size-small);
  color: var(--color-text-light);
  transition: all var(--transition-normal);
}

.footer__input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__button {
  background-color: var(--color-accent);
  color: var(--color-neutral-dark);
  border: none;
  border-radius: var(--border-radius-md);
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

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

.footer__button:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
}

.footer__copyright {
  opacity: 0.7;
  margin: 0;
}

.footer__made-text {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.footer__heart {
  color: var(--color-accent);
  margin: 0 4px;
  display: inline-block;
  animation: pulse 1.5s ease infinite;
}

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

/* Responsive styles */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: 1 / -1;
  }
  
  .footer__nav-container {
    grid-column: 1 / 2;
  }
  
  .footer__cta {
    grid-column: 2 / 3;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer__nav-container {
    grid-template-columns: 1fr 1fr;
    grid-column: 1 / -1;
  }
  
  .footer__nav:nth-child(3) {
    grid-column: 1 / -1;
  }
  
  .footer__cta {
    grid-column: 1 / -1;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__nav-container {
    grid-template-columns: 1fr;
  }
  
  .footer__form-group {
    flex-direction: column;
  }
  
  .footer__button {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
  }
}

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

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

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

.privacy-page__updated {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  font-style: italic;
}

.privacy-page__content {
  background-color: #ffffff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
}

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

.privacy-page__section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-h3);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-md);
}

.privacy-page__section h3 {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__content {
    padding: var(--space-md);
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-h4);
  }
  
  .privacy-page__section h3 {
    font-size: var(--font-size-h5);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-sm);
  }
}

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

.terms-page__container {
  max-width: 900px;
  background-color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.terms-page__updated {
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
}

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

.terms-page__heading {
  font-size: var(--font-size-h4);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-primary);
}

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

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

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-md) 0;
  }
  
  .terms-page__container {
    padding: var(--space-md);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-lg);
  }
}

.cookie-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  padding: var(--section-padding-desktop) 0;
}

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

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

.cookie-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  margin-bottom: var(--space-xs);
}

.cookie-page__last-updated {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

.cookie-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.cookie-page__section h3 {
  color: var(--color-neutral-dark);
  font-size: var(--font-size-h5);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

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

.cookie-page__list-container {
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--space-lg);
}

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

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

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

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__list-container {
    padding-left: var(--space-sm);
  }
  
  .cookie-page__list {
    padding-left: var(--space-md);
  }
}

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

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

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.thank-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-success);
  color: var(--color-text-light);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.thank-page__lead {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.thank-page__message {
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.thank-page__info {
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  width: 100%;
  text-align: left;
  border-left: 4px solid var(--color-accent);
}

.thank-page__info h4 {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.thank-page__list {
  list-style-position: inside;
  margin-left: var(--space-sm);
}

.thank-page__list li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
}

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

.thank-page__cta .btn {
  padding: var(--space-sm) var(--space-xl);
  font-weight: 600;
}

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-md);
  }
  
  .thank-page__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .thank-page__info {
    padding: var(--space-md);
  }
}

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

  /* Hero Section */
  .category-page .category-hero {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--section-padding-desktop) 0;
    position: relative;
    overflow: hidden;
  }

  .category-page .category-hero h1 {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
  }

  .category-page .category-hero .text-lead {
    max-width: 800px;
    opacity: 0.9;
  }

  /* Posts Grid Section */
  .category-page .category-posts {
    padding: var(--section-padding-desktop) 0;
  }

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

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

  .category-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .category-page .post-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

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

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

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

  .category-page .post-card-content h3 {
    font-size: var(--font-size-h5);
    margin-bottom: var(--space-xs);
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
  }

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

  .category-page .post-card-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    flex-grow: 1;
  }

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

  /* Skills Section Styles */
  .category-page .startup-skills {
    background-color: white;
    padding: var(--section-padding-desktop) 0;
  }

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

  .category-page .skill-item {
    background-color: var(--color-neutral-light);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

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

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

  .category-page .skill-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
  }

  /* Statistics Section Styles */
  .category-page .startup-statistics {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop) 0;
  }

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

  .category-page .stat-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
  }

  .category-page .stat-card h3 {
    color: var(--color-primary);
    font-size: var(--font-size-h4);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-accent);
  }

  .category-page .stat-list {
    list-style-type: none;
  }

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

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

  /* Responsive Styles */
  @media (max-width: 1023px) {
    .category-page .posts-grid,
    .category-page .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .category-page .category-hero,
    .category-page .category-posts,
    .category-page .startup-skills,
    .category-page .startup-statistics {
      padding: var(--section-padding-tablet) 0;
    }
  }

  @media (max-width: 767px) {
    .category-page .posts-grid,
    .category-page .skills-grid,
    .category-page .stats-container {
      grid-template-columns: 1fr;
    }

    .category-page .category-hero,
    .category-page .category-posts,
    .category-page .startup-skills,
    .category-page .startup-statistics {
      padding: var(--section-padding-mobile) 0;
    }

    .category-page .post-card-image {
      height: 180px;
    }
  }

/* Base Styles for the Post Page */
.post-page {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-neutral-light);
}

/* Breadcrumbs Navigation */
.post-page .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  background-color: #fff;
}

.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);
  text-decoration: underline;
}

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

.post-page .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(8, 110, 125, 0.8) 0%, rgba(26, 95, 122, 0.9) 100%);
  z-index: 1;
}

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

.post-page .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.post-page .post-hero .text-lead {
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

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

.post-page .section-light {
  background-color: #ffffff;
}

.post-page .section-dark {
  background-color: var(--color-neutral-dark);
  color: var(--color-text-light);
}

.post-page .section-dark h2,
.post-page .section-dark h3,
.post-page .section-dark h4 {
  color: var(--color-text-light);
}

/* Two Column Layout */
.post-page .two-column-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-page .text-column {
  padding-right: var(--space-md);
}

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

/* Feature List */
.post-page .feature-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

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

.post-page .feature-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Info Grid */
.post-page .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-page .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .info-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

/* Finance Table */
.post-page .finance-table-container {
  margin: var(--space-lg) 0;
  overflow-x: auto;
}

.post-page .finance-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-page .finance-table th {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-sm);
  text-align: left;
  font-weight: 600;
}

.post-page .finance-table td {
  padding: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.post-page .finance-table tr:last-child td {
  border-bottom: none;
}

/* Subsection Styling */
.post-page .subsection {
  margin-bottom: var(--space-xl);
}

.post-page .subsection h3 {
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.post-page .subsection h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
}

/* Tips Container */
.post-page .tips-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-page .tip-card {
  background-color: #f7f9fc;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .tip-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Steps List */
.post-page .steps-list {
  counter-reset: steps;
  list-style-type: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.post-page .steps-list li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: var(--space-md);
  min-height: 2.5rem;
}

.post-page .steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-primary);
}

.post-page .steps-list li strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* Conclusion Section */
.post-page .conclusion {
  background-color: #f7f9fc;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
  border-left: 4px solid var(--color-accent);
}

.post-page .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* CTA Container */
.post-page .cta-container {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Related Posts Section */
.post-page .related-posts {
  background-color: #f7f9fc;
  padding: var(--section-padding-desktop) 0;
  border-top: 1px solid var(--color-border);
}

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

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

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

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

.post-page .post-card-content {
  padding: var(--space-md);
}

.post-page .post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
}

.post-page .post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-small);
}

.post-page .read-more {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-small);
  display: inline-block;
  transition: color var(--transition-fast);
}

.post-page .read-more:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-page .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-page .two-column-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page .text-column {
    padding-right: 0;
  }
  
  .post-page .info-grid,
  .post-page .tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-page .content-section,
  .post-page .post-hero,
  .post-page .related-posts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-page .info-grid,
  .post-page .tips-container,
  .post-page .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .cta-container {
    flex-direction: column;
  }
  
  .post-page .finance-table th,
  .post-page .finance-table td {
    padding: var(--space-xs);
    font-size: var(--font-size-small);
  }
}

/* Base Styles for the Post Page */
.post-rechtliche-grundlagen-startups {
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
}

/* Breadcrumbs Navigation */
.post-rechtliche-grundlagen-startups .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
}

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

.post-rechtliche-grundlagen-startups .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

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

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

.post-rechtliche-grundlagen-startups .post-hero .text-lead {
  font-size: var(--font-size-h5);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Content Sections - Common Styles */
.post-rechtliche-grundlagen-startups .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-rechtliche-grundlagen-startups .content-section h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
}

.post-rechtliche-grundlagen-startups .content-section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-sm);
}

.post-rechtliche-grundlagen-startups .content-section h3 {
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-h4);
}

.post-rechtliche-grundlagen-startups .content-section h4 {
  color: var(--color-text-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-h5);
}

.post-rechtliche-grundlagen-startups .content-section p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-body);
}

.post-rechtliche-grundlagen-startups .image-container {
  margin: var(--space-lg) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-rechtliche-grundlagen-startups .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.post-rechtliche-grundlagen-startups .image-container:hover img {
  transform: scale(1.02);
}

/* Rechtsformen Section */
.post-rechtliche-grundlagen-startups .rechtsformen-section {
  background-color: #ffffff;
}

.post-rechtliche-grundlagen-startups .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-rechtliche-grundlagen-startups .feature-list {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
}

.post-rechtliche-grundlagen-startups .feature-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.post-rechtliche-grundlagen-startups .feature-list li:last-child {
  border-bottom: none;
}

.post-rechtliche-grundlagen-startups .feature-list li strong {
  color: var(--color-primary);
  margin-right: var(--space-2xs);
}

/* Steuer und Anmeldung Section */
.post-rechtliche-grundlagen-startups .steuer-anmeldung-section {
  background-color: var(--color-neutral-light);
}

.post-rechtliche-grundlagen-startups .process-steps {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
  counter-reset: step-counter;
}

.post-rechtliche-grundlagen-startups .process-steps li {
  position: relative;
  padding: var(--space-sm) 0;
  padding-left: var(--space-sm);
  margin-bottom: var(--space-sm);
  counter-increment: step-counter;
}

.post-rechtliche-grundlagen-startups .process-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: -40px;
  top: 12px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-small);
}

.post-rechtliche-grundlagen-startups .tax-list {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin: var(--space-md) 0;
  list-style: none;
}

.post-rechtliche-grundlagen-startups .tax-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--color-border);
}

.post-rechtliche-grundlagen-startups .tax-list li:last-child {
  border-bottom: none;
}

.post-rechtliche-grundlagen-startups .tax-list strong {
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--space-2xs);
}

/* Special Requirements Section */
.post-rechtliche-grundlagen-startups .special-requirements-section {
  background-color: white;
  position: relative;
}

.post-rechtliche-grundlagen-startups .requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-rechtliche-grundlagen-startups .requirement-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-rechtliche-grundlagen-startups .requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-rechtliche-grundlagen-startups .requirement-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-h6);
}

.post-rechtliche-grundlagen-startups .tips-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.post-rechtliche-grundlagen-startups .tip-item {
  background-color: var(--color-neutral-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.post-rechtliche-grundlagen-startups .tip-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-accent);
}

.post-rechtliche-grundlagen-startups .tip-item h4 {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* Related Posts Section */
.post-rechtliche-grundlagen-startups .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
}

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

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

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

.post-rechtliche-grundlagen-startups .related-post-card .card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-rechtliche-grundlagen-startups .related-post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  line-height: 1.3;
}

.post-rechtliche-grundlagen-startups .related-post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-rechtliche-grundlagen-startups .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-rechtliche-grundlagen-startups .section-content {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

@media (max-width: 1023px) {
  .post-rechtliche-grundlagen-startups .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-rechtliche-grundlagen-startups .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-rechtliche-grundlagen-startups .requirements-grid,
  .post-rechtliche-grundlagen-startups .tips-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-rechtliche-grundlagen-startups .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-rechtliche-grundlagen-startups .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-rechtliche-grundlagen-startups .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-rechtliche-grundlagen-startups .section-content,
  .post-rechtliche-grundlagen-startups .requirements-grid,
  .post-rechtliche-grundlagen-startups .tips-container,
  .post-rechtliche-grundlagen-startups .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-rechtliche-grundlagen-startups .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-rechtliche-grundlagen-startups .post-hero .text-lead {
    font-size: var(--font-size-body);
  }
}

/* Page-specific styles */
.post-unternehmerisches-mindset .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--section-padding-desktop) 0;
  position: relative;
  overflow: hidden;
}

.post-unternehmerisches-mindset .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(135deg, rgba(8, 110, 125, 0.7) 0%, rgba(26, 95, 122, 0) 100%);
  z-index: 0;
}

.post-unternehmerisches-mindset .post-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.post-unternehmerisches-mindset .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h1);
  line-height: 1.1;
}

.post-unternehmerisches-mindset .post-hero .text-lead {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--color-text-light);
  opacity: 0.9;
}

/* Breadcrumbs */
.post-unternehmerisches-mindset .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

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

.post-unternehmerisches-mindset .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Content Sections */
.post-unternehmerisches-mindset .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-unternehmerisches-mindset .mindset-fundamentals {
  background-color: white;
}

.post-unternehmerisches-mindset .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.post-unternehmerisches-mindset .text-content {
  flex: 3;
}

.post-unternehmerisches-mindset .image-container {
  flex: 2;
}

.post-unternehmerisches-mindset .mindset-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Mindset Practices Section */
.post-unternehmerisches-mindset .mindset-practices {
  background-color: var(--color-neutral-light);
  position: relative;
}

.post-unternehmerisches-mindset .mindset-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-unternehmerisches-mindset .mindset-card {
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

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

.post-unternehmerisches-mindset .mindset-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-h4);
}

.post-unternehmerisches-mindset .feature-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
}

.post-unternehmerisches-mindset .feature-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
}

.post-unternehmerisches-mindset .feature-list li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.post-unternehmerisches-mindset .mindset-quote {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.post-unternehmerisches-mindset .mindset-quote blockquote {
  font-size: var(--font-size-h4);
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 var(--space-sm) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.post-unternehmerisches-mindset .mindset-quote blockquote::before {
  content: """;
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--color-accent);
  opacity: 0.5;
}

.post-unternehmerisches-mindset .quote-author {
  text-align: right;
  font-weight: 600;
  opacity: 0.9;
  margin: 0;
}

.post-unternehmerisches-mindset .mindset-workshop-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

/* Mindset Application Section */
.post-unternehmerisches-mindset .mindset-application {
  background-color: white;
}

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

.post-unternehmerisches-mindset .principle {
  padding: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  transition: transform var(--transition-normal);
}

.post-unternehmerisches-mindset .principle:hover {
  transform: translateX(5px);
}

.post-unternehmerisches-mindset .principle h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-h5);
}

.post-unternehmerisches-mindset .mindset-conclusion {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
}

.post-unternehmerisches-mindset .mindset-conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-unternehmerisches-mindset .mindset-conclusion .btn {
  margin-top: var(--space-md);
}

/* Related Posts Section */
.post-unternehmerisches-mindset .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
  border-top: 1px solid var(--color-border);
}

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

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

.post-unternehmerisches-mindset .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.post-unternehmerisches-mindset .post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
}

.post-unternehmerisches-mindset .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-unternehmerisches-mindset .post-card h3 a:hover {
  color: var(--color-secondary);
}

.post-unternehmerisches-mindset .post-card p {
  margin-bottom: var(--space-md);
  flex: 1;
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-unternehmerisches-mindset .post-hero,
  .post-unternehmerisches-mindset .content-section,
  .post-unternehmerisches-mindset .related-posts {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-unternehmerisches-mindset .section-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .post-unternehmerisches-mindset .mindset-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-unternehmerisches-mindset .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-unternehmerisches-mindset .post-hero,
  .post-unternehmerisches-mindset .content-section,
  .post-unternehmerisches-mindset .related-posts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-unternehmerisches-mindset .post-hero h1 {
    font-size: var(--font-size-h2);
  }
  
  .post-unternehmerisches-mindset .post-hero .text-lead {
    font-size: 1.1rem;
  }
  
  .post-unternehmerisches-mindset .mindset-cards,
  .post-unternehmerisches-mindset .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-unternehmerisches-mindset .mindset-quote blockquote {
    font-size: var(--font-size-h5);
    padding-left: var(--space-sm);
  }
  
  .post-unternehmerisches-mindset .mindset-quote blockquote::before {
    font-size: 3rem;
    left: -5px;
    top: -15px;
  }
  
  .post-unternehmerisches-mindset .mindset-conclusion {
    padding: var(--space-lg);
  }
}

  /* Base Styles for the Post */
  .post-foerderprogramme-finanzierung-startups {
    background-color: var(--color-neutral-light);
    color: var(--color-text-primary);
  }
  
  /* Breadcrumbs */
  .post-foerderprogramme-finanzierung-startups .breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: var(--font-size-small);
    background-color: white;
    border-bottom: 1px solid var(--color-border);
  }
  
  .post-foerderprogramme-finanzierung-startups .breadcrumbs a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
  }
  
  .post-foerderprogramme-finanzierung-startups .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-foerderprogramme-finanzierung-startups .post-hero {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
  }
  
  .post-foerderprogramme-finanzierung-startups .post-hero h1 {
    color: var(--color-text-light);
    max-width: 900px;
    margin: 0 auto var(--space-md);
  }
  
  .post-foerderprogramme-finanzierung-startups .post-hero .text-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: 300;
  }
  
  /* Content Sections */
  .post-foerderprogramme-finanzierung-startups .content-section {
    padding: var(--section-padding-desktop) 0;
  }
  
  .post-foerderprogramme-finanzierung-startups .content-section h2 {
    margin-bottom: var(--space-lg);
    position: relative;
  }
  
  .post-foerderprogramme-finanzierung-startups .content-section h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
  }
  
  .post-foerderprogramme-finanzierung-startups .content-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-h4);
  }
  
  /* Section 1 - Funding Options */
  .post-foerderprogramme-finanzierung-startups .funding-options {
    background-color: white;
  }
  
  .post-foerderprogramme-finanzierung-startups .section-content {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  
  .post-foerderprogramme-finanzierung-startups .text-content {
    flex: 3;
  }
  
  .post-foerderprogramme-finanzierung-startups .image-container {
    flex: 2;
    margin-top: var(--space-md);
  }
  
  .post-foerderprogramme-finanzierung-startups .image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-list {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-list li {
    margin-bottom: var(--space-sm);
    position: relative;
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-list li strong {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  /* Section 2 - Private Funding */
  .post-foerderprogramme-finanzierung-startups .private-funding {
    background-color: var(--color-neutral-light);
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-stage {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-stage:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .funding-stage h3 {
    color: var(--color-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: var(--space-xs);
  }
  
  .post-foerderprogramme-finanzierung-startups .center-image {
    margin: var(--space-xl) auto;
    max-width: 800px;
  }
  
  .post-foerderprogramme-finanzierung-startups .investor-tips {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    margin: var(--space-lg) 0;
  }
  
  .post-foerderprogramme-finanzierung-startups .investor-tips li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
  }
  
  /* Section 3 - Alternative Funding */
  .post-foerderprogramme-finanzierung-startups .alternative-funding {
    background-color: white;
  }
  
  .post-foerderprogramme-finanzierung-startups .alternative-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
  }
  
  .post-foerderprogramme-finanzierung-startups .option-card {
    background-color: var(--color-neutral-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    border-top: 4px solid var(--color-accent);
  }
  
  .post-foerderprogramme-finanzierung-startups .option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .option-card h3 {
    color: var(--color-primary);
    margin-top: 0;
  }
  
  .post-foerderprogramme-finanzierung-startups .option-card strong {
    color: var(--color-secondary);
  }
  
  .post-foerderprogramme-finanzierung-startups .financing-strategy {
    background-color: var(--color-neutral-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--color-primary);
  }
  
  .post-foerderprogramme-finanzierung-startups .strategy-list {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .strategy-list li {
    margin-bottom: var(--space-sm);
  }
  
  .post-foerderprogramme-finanzierung-startups .strategy-list li strong {
    color: var(--color-primary);
    font-weight: 600;
  }
  
  /* Related Posts Section */
  .post-foerderprogramme-finanzierung-startups .related-posts {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop) 0;
    border-top: 1px solid var(--color-border);
  }
  
  .post-foerderprogramme-finanzierung-startups .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .post-foerderprogramme-finanzierung-startups .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .post-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    padding: var(--space-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .post-foerderprogramme-finanzierung-startups .post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-foerderprogramme-finanzierung-startups .post-card h3 {
    font-size: var(--font-size-h5);
    margin-top: 0;
    margin-bottom: var(--space-sm);
  }
  
  .post-foerderprogramme-finanzierung-startups .post-card p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    flex-grow: 1;
  }
  
  .post-foerderprogramme-finanzierung-startups .post-card .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-foerderprogramme-finanzierung-startups .content-section {
      padding: var(--section-padding-tablet) 0;
    }
    
    .post-foerderprogramme-finanzierung-startups .section-content {
      flex-direction: column;
    }
    
    .post-foerderprogramme-finanzierung-startups .image-container {
      margin: var(--space-md) 0;
    }
    
    .post-foerderprogramme-finanzierung-startups .funding-stages,
    .post-foerderprogramme-finanzierung-startups .alternative-options {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-foerderprogramme-finanzierung-startups .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-foerderprogramme-finanzierung-startups .content-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-foerderprogramme-finanzierung-startups .funding-stages,
    .post-foerderprogramme-finanzierung-startups .alternative-options,
    .post-foerderprogramme-finanzierung-startups .posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-foerderprogramme-finanzierung-startups .post-hero {
      padding: var(--space-xl) 0;
    }
    
    .post-foerderprogramme-finanzierung-startups .post-hero h1 {
      font-size: var(--font-size-h2);
    }
    
    .post-foerderprogramme-finanzierung-startups .post-hero .text-lead {
      font-size: 1.1rem;
    }
  }

/* Base Styles for Post Page */
.post-startup-hubs-deutschland {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-neutral-light);
}

/* Breadcrumbs */
.post-startup-hubs-deutschland .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  background-color: white;
}

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

.post-startup-hubs-deutschland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-startup-hubs-deutschland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-startup-hubs-deutschland .post-hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-h1);
  max-width: 90%;
}

.post-startup-hubs-deutschland .post-hero .text-lead {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
  max-width: 80%;
  color: var(--color-text-light);
}

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

.post-startup-hubs-deutschland .content-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.post-startup-hubs-deutschland .content-section h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-startup-hubs-deutschland .content-section h4 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-startup-hubs-deutschland .content-section p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-body);
}

/* First Section - Ecosystem */
.post-startup-hubs-deutschland .startup-ecosystem {
  background-color: white;
}

.post-startup-hubs-deutschland .ecosystem-content {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-startup-hubs-deutschland .ecosystem-text {
  flex: 3;
}

.post-startup-hubs-deutschland .ecosystem-image {
  flex: 2;
  position: relative;
}

.post-startup-hubs-deutschland .ecosystem-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-startup-hubs-deutschland .hub-list {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
}

.post-startup-hubs-deutschland .hub-list h3 {
  margin-bottom: var(--space-md);
}

.post-startup-hubs-deutschland .hub-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.post-startup-hubs-deutschland .hub-list li {
  padding: var(--space-sm);
  border-left: 3px solid var(--color-accent);
  background-color: white;
  box-shadow: var(--shadow-sm);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

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

.post-startup-hubs-deutschland .strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-startup-hubs-deutschland .strategy-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.post-startup-hubs-deutschland .strategy-tip {
  background-color: var(--color-neutral-light);
  padding: var(--space-sm);
  border-left: 3px solid var(--color-accent);
  font-style: italic;
  margin-top: var(--space-md);
}

.post-startup-hubs-deutschland .networking-image {
  margin: var(--space-xl) 0;
}

.post-startup-hubs-deutschland .networking-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-startup-hubs-deutschland .resource-box {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: var(--space-xl);
}

.post-startup-hubs-deutschland .resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.post-startup-hubs-deutschland .resource-item h5 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-h5);
}

.post-startup-hubs-deutschland .resource-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.post-startup-hubs-deutschland .resource-item li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
}

.post-startup-hubs-deutschland .resource-item li:last-child {
  border-bottom: none;
}

/* Third Section - Success Stories */
.post-startup-hubs-deutschland .success-stories {
  background-color: white;
}

.post-startup-hubs-deutschland .success-story-intro {
  margin-bottom: var(--space-xl);
}

.post-startup-hubs-deutschland .success-story-content {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-startup-hubs-deutschland .success-story-text {
  flex: 3;
}

.post-startup-hubs-deutschland .success-story-image {
  flex: 2;
}

.post-startup-hubs-deutschland .success-story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-startup-hubs-deutschland .principles-list {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-startup-hubs-deutschland .principles-list li {
  margin-bottom: var(--space-sm);
}

.post-startup-hubs-deutschland .takeaway-box {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-xl);
}

.post-startup-hubs-deutschland .takeaway-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-startup-hubs-deutschland .takeaway-box ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-startup-hubs-deutschland .takeaway-box li {
  margin-bottom: var(--space-sm);
}

.post-startup-hubs-deutschland .takeaway-conclusion {
  font-style: italic;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}

/* Related Posts Section */
.post-startup-hubs-deutschland .related-posts {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
}

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

.post-startup-hubs-deutschland .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-startup-hubs-deutschland .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-startup-hubs-deutschland .post-content {
  padding: var(--space-lg);
}

.post-startup-hubs-deutschland .post-content h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
}

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

.post-startup-hubs-deutschland .post-content h3 a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.post-startup-hubs-deutschland .post-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-startup-hubs-deutschland .ecosystem-content,
  .post-startup-hubs-deutschland .success-story-content {
    flex-direction: column;
  }
  
  .post-startup-hubs-deutschland .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-startup-hubs-deutschland .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-startup-hubs-deutschland .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-startup-hubs-deutschland .post-hero .text-lead,
  .post-startup-hubs-deutschland .post-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .post-startup-hubs-deutschland .strategy-grid,
  .post-startup-hubs-deutschland .resource-grid,
  .post-startup-hubs-deutschland .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-startup-hubs-deutschland .hub-list ul {
    grid-template-columns: 1fr;
  }
  
  .post-startup-hubs-deutschland .post-hero {
    padding: var(--space-xl) 0;
  }
}

/* Privacy Page Styles */
.privacy-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text-primary);
  padding: var(--section-padding-desktop) 0;
  font-family: var(--font-secondary);
}

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

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

.privacy-page h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

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

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

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

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

.privacy-page h3 {
  color: var(--color-neutral-dark);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

.terms-page {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
  font-family: var(--font-secondary);
}

.terms-page__container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
}

.terms-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  text-align: center;
}

.terms-page__last-updated {
  text-align: right;
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  font-style: italic;
}

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

.terms-page__section-title {
  color: var(--color-neutral-dark);
  font-size: var(--font-size-h4);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-md);
}

.terms-page p {
  color: var(--color-text-primary);
  line-height: var(--line-height-body);
  margin-bottom: var(--space-md);
}

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

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

@media (max-width: 1023px) {
  .terms-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .terms-page__container {
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .terms-page__container {
    padding: var(--space-md);
  }
  
  .terms-page__title {
    font-size: var(--font-size-h3);
  }
  
  .terms-page__section-title {
    font-size: var(--font-size-h5);
  }
}

/* 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-desktop) 0;
}

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

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

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

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

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

.cookie-page h1 {
  color: var(--color-primary);
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-xs);
}

.cookie-page h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.cookie-page h3 {
  color: var(--color-neutral-dark);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-xs);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  .cookie-page {
    padding: var(--section-padding-tablet) 0;
  }
}

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

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

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

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

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.thank-page__text-lead {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.thank-page__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.thank-page__confirmation {
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

.thank-page__button {
  min-width: 220px;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__confirmation {
    margin: var(--space-lg) 0;
  }
  
  .thank-page__button {
    width: 100%;
  }
}

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

.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: calc(var(--font-size-h1) * 2.5);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1;
  position: relative;
  text-shadow: 0 4px 8px rgba(26, 95, 122, 0.15);
  letter-spacing: -0.03em;
}

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

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

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

.error-404__button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-lg);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.error-404__icon {
  margin-right: var(--space-xs);
  font-size: var(--icon-size-sm);
  transition: transform var(--transition-normal);
}

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

@media (max-width: 767px) {
  .error-404 {
    padding: var(--space-2xl) var(--space-sm);
  }
  
  .error-404__code {
    font-size: calc(var(--font-size-h1) * 2);
  }
  
  .error-404__title {
    font-size: var(--font-size-h4);
  }
  
  .error-404__message {
    font-size: var(--font-size-small);
    margin-bottom: var(--space-md);
  }
  
  .error-404__code::after {
    width: 60px;
    height: 3px;
  }
}
