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

:root {
  /* Color Palette */
  --color-primary: #0A3D62;      /* Deep blue - trustworthy, professional */
  --color-secondary: #3E92CC;    /* Medium blue - complementary to primary */
  --color-accent: #FFB347;       /* Orange-gold - energy and innovation */
  --color-success: #2E8B57;      /* Forest green - growth and progress */
  --color-warning: #E67E22;      /* Darker orange - caution */
  --color-background: #F8F9FA;   /* Light gray-white - clean, minimal */
  --color-surface: #FFFFFF;      /* White - content areas */
  --color-text-primary: #212529; /* Near black - main text */
  --color-text-secondary: #495057; /* Dark gray - secondary text */
  --color-text-muted: #6C757D;   /* Medium gray - less important text */
  --color-border: #DEE2E6;       /* Light gray - subtle borders */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Merriweather', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 1.75rem;   /* 28px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.5rem;    /* 40px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */
  
  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;  /* 4px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 0.75rem;  /* 12px */
  --radius-xl: 1rem;     /* 16px */
  --radius-full: 9999px; /* Pill shape */
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Icon Sizes */
  --icon-xs: 0.75rem;    /* 12px */
  --icon-sm: 1rem;       /* 16px */
  --icon-md: 1.25rem;    /* 20px */
  --icon-lg: 1.5rem;     /* 24px */
  --icon-xl: 2rem;       /* 32px */
}

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

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

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

p {
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.lead {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-md);
}

.caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

blockquote {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  color: var(--color-text-secondary);
}

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

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

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

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

.btn-primary:hover {
  background-color: #072f4a;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #3078a8;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}

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

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

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

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

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

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

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

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

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

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

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

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

/* Form Elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.2);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
}

/* Responsive Breakpoints */
@media (max-width: 767px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  h4 { font-size: var(--text-xl); }
  h5 { font-size: var(--text-lg); }
  h6 { font-size: var(--text-md); }
  
  .lead {
    font-size: var(--text-lg);
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  border-bottom: 3px solid var(--color-accent);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

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

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

.header__logo:hover {
  text-decoration: none;
  transform: scale(1.05);
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
}

.header__logo-text {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

/* Navigation Styles */
.header__nav {
  display: flex;
  align-items: center;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-item--highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-sm);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.header__nav-item--highlight:hover::after {
  transform: scaleX(1);
}

.header__nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--text-base);
  padding: var(--space-xs) var(--space-xs);
  position: relative;
  transition: color var(--transition-normal);
}

.header__nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  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;
}

/* CTA Button */
.header__cta {
  margin-left: var(--space-xl);
}

.header__cta-button {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.header__mobile-menu.is-active {
  transform: translateY(0);
  display: block;
}

.header__mobile-menu-container {
  padding: var(--space-lg);
  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__mobile-logo {
  font-size: var(--text-lg);
}

.header__mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

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

.header__mobile-nav {
  margin-bottom: var(--space-2xl);
  flex-grow: 1;
}

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

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

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

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

.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::after {
  width: 100%;
}

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

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

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

.header__mobile-footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-lg);
}

.header__mobile-footer-link {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Responsive styles */
@media (max-width: 1023px) {
  .header__nav-list {
    gap: var(--space-md);
  }
  
  .header__cta {
    margin-left: var(--space-md);
  }
}

@media (max-width: 1184px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__container {
    height: 70px;
  }
  
  .header__logo-text {
    font-size: var(--text-lg);
  }
}

/* Animation for mobile menu toggle */
.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.is-active .header__mobile-toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

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

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

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

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

.main .hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-md);
  font-size: var(--text-5xl);
  position: relative;
}

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

.main .hero .lead {
  color: var(--color-surface);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

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

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

.main .hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: var(--shadow-xl);
}

.main .hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform var(--transition-slow);
}

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

.main .hero-shape-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 179, 71, 0.2);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 1;
  animation: floatAnimation 8s ease-in-out infinite alternate;
}

.main .hero-shape-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 200px;
  height: 200px;
  background-color: rgba(62, 146, 204, 0.15);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 1;
  animation: floatAnimation 6s ease-in-out infinite alternate-reverse;
}

.main .hero-accent {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.main .hero-stat {
  background-color: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotate(-5deg);
  max-width: 200px;
}

.main .stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.main .stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F8F9FA' opacity='.25'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23F8F9FA' opacity='.5'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23F8F9FA'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.main .featured-posts h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.main .section-description {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto var(--space-2xl) auto;
  font-size: var(--text-lg);
}

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

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

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

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

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

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

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

.main .post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  line-height: 1.3;
}

.main .post-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

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

/* Benefits Section */
.main .benefits {
  padding: var(--space-3xl) 0;
  background-color: var(--color-surface);
  position: relative;
}

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

.main .benefits .subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-top: var(--space-sm);
}

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

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

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

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

.main .benefit-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.main .benefit-icon {
  background-color: var(--color-primary);
  color: var(--color-surface);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
  box-shadow: var(--shadow-md);
}

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

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

.main .benefits-image {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.main .benefits-image:hover img {
  transform: scale(1.02);
}

/* Methodology Section */
.main .methodology {
  padding: var(--space-3xl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .methodology::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(62, 146, 204, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 0;
}

.main .methodology::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 179, 71, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  z-index: 0;
}

.main .methodology .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.main .methodology-content {
  padding-right: var(--space-lg);
}

.main .methodology-steps {
  margin-top: var(--space-xl);
}

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

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

.main .methodology-step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 1px;
  height: calc(100% + var(--space-xl));
  background-color: var(--color-border);
  z-index: 0;
}

.main .methodology-step:last-child::after {
  display: none;
}

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

.main .step-content {
  padding-top: var(--space-xs);
}

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

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

.main .methodology-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .methodology-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

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

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

.main .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233E92CC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.main .testimonials .section-header {
  position: relative;
  z-index: 1;
}

.main .testimonials h2,
.main .testimonials .subtitle {
  color: var(--color-surface);
}

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

.main .testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.main .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.15);
}

.main .testimonial-content {
  padding: var(--space-xl);
  flex-grow: 1;
}

.main .testimonial-content blockquote {
  font-style: italic;
  margin: 0 0 var(--space-md) 0;
  padding: 0;
  border-left: none;
  color: var(--color-surface);
  font-size: var(--text-base);
  line-height: 1.6;
}

.main .testimonial-rating {
  color: var(--color-accent);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  background-color: rgba(0, 0, 0, 0.1);
}

.main .author-image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-right: var(--space-md);
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}

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

.main .author-info h4 {
  font-size: var(--text-base);
  margin: 0;
  color: var(--color-surface);
}

.main .author-info p {
  font-size: var(--text-xs);
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.main .contact-content .lead {
  margin-bottom: var(--space-xl);
}

.main .contact-info {
  margin-top: var(--space-xl);
}

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

.main .contact-item i {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-right: var(--space-md);
  margin-top: 5px;
}

.main .contact-item p {
  margin: 0;
  color: var(--color-text-secondary);
}

.main .contact-form-container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.2);
}

.main .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
}

.main .form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: 0;
}

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

.main .form-privacy a:hover {
  text-decoration: underline;
}

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

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

.main .cookie-content p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 70%;
}

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

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

  .main .hero-content {
    text-align: center;
    align-items: center;
    margin-bottom: var(--space-xl);
  }

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

  .main .hero .lead {
    max-width: 100%;
  }

  .main .hero-image-container {
    max-height: 400px;
  }

  .main .hero-accent {
    right: 10%;
  }

  .main .methodology .container {
    grid-template-columns: 1fr;
  }

  .main .methodology-visual {
    order: -1;
    margin-bottom: var(--space-xl);
  }

  .main .methodology-image {
    max-height: 400px;
  }

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

  .main .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .main .cookie-content p {
    max-width: 100%;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 767px) {
  .main .hero {
    padding: var(--space-2xl) 0;
  }

  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

  .main .hero-image-container {
    max-height: 300px;
  }

  .main .hero-accent {
    display: none;
  }

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

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

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

  .main .methodology-step::after {
    display: none;
  }

  .main .form-footer {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .main .form-privacy {
    margin-bottom: var(--space-md);
  }
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-surface);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.footer__top {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
}

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

.footer__brand {
  grid-column: span 1;
}

.footer__title {
  color: var(--color-surface);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  position: relative;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer__accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  transition: width var(--transition-normal);
}

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

.footer__nav-section {
  grid-column: span 1;
}

.footer__subtitle {
  color: var(--color-accent);
  font-size: var(--text-md);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  position: relative;
}

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

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

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-sm);
  display: inline-block;
}

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

.footer__link:hover {
  color: var(--color-surface);
  transform: translateX(var(--space-xs));
  text-decoration: none;
}

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

.footer__newsletter {
  grid-column: span 1;
}

.footer__newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

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

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

.footer__input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.3);
  outline: none;
}

.footer__button {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

.footer__button:active {
  transform: translateY(0);
}

.footer__bottom {
  background-color: rgba(0, 0, 0, 0.15);
  padding: var(--space-md) 0;
  position: relative;
  z-index: 2;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

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

.footer__legal-link:hover {
  color: var(--color-surface);
  text-decoration: none;
}

.footer__accent-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background-color: var(--color-accent);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

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

@media (max-width: 767px) {
  .footer {
    padding-top: var(--space-xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand, 
  .footer__nav-section,
  .footer__newsletter {
    grid-column: span 1;
  }
  
  .footer__bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.privacy-page {
  background-color: var(--color-surface);
  padding: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--color-text-primary);
}

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

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

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

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

.privacy-page strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

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

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

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

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

.terms-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

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

.terms-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

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

.terms-page__list {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.terms-page__list-item {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  line-height: 1.5;
}

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

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

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

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

.cookie-page__lead {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

.cookie-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: var(--space-sm);
}

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

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

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

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

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

.cookie-page__footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.cookie-page__update-info {
  color: var(--color-text-muted);
}

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

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

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

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

.thank-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

.thank-page__info-title {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__lead {
    font-size: var(--text-md);
  }
}

/* Category Page Styles */
.category-page {
  background-color: var(--color-background);
  padding-bottom: var(--space-3xl);
}

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) 0;
  margin-bottom: var(--space-2xl);
  color: var(--color-surface);
}

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

.category-page__hero .lead {
  color: var(--color-surface);
  opacity: 0.9;
  max-width: 800px;
}

.category-page__hero-image {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.category-page__hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Content Sections */
.category-page__content-section {
  background-color: var(--color-surface);
  padding: var(--space-2xl) 0;
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow-sm);
}

.category-page__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.category-page__content-text {
  margin-bottom: var(--space-xl);
}

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

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

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

.content-card__icon {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  display: inline-block;
}

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

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

/* Statistics Section */
.category-page__statistics {
  background-color: var(--color-surface);
  padding: var(--space-2xl) 0;
  margin-bottom: var(--space-2xl);
}

.category-page__statistics h2 {
  margin-bottom: var(--space-md);
  text-align: center;
}

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

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

.stats-card {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

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

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

.category-page__statistics blockquote {
  max-width: 800px;
  margin: var(--space-xl) auto;
  text-align: center;
}

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

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__content-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-page__stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-xl) 0;
  }
  
  .category-page__hero h1 {
    font-size: var(--text-3xl);
  }
  
  .category-page__hero .lead {
    font-size: var(--text-md);
  }
  
  .post-card__image {
    height: 200px;
  }
  
  .post-card__content h3 {
    font-size: var(--text-lg);
  }
}

/* Base Post Styles */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte {
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

/* Breadcrumbs Navigation */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .breadcrumbs a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Hero Section */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero .lead {
  color: var(--color-surface);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-secondary);
  line-height: 1.6;
}

/* Content Sections */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .content-section {
  padding: var(--space-3xl) 0;
  margin-bottom: var(--space-2xl);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-light {
  background-color: var(--color-surface);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-dark {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .content-section h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--color-primary);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .content-section h3 {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

/* Section 1 Layout */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .text-content {
  flex: 1;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Section 2 - Principles Grid */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .principles-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .principle-card {
  background-color: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .principle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-image {
  margin-top: var(--space-2xl);
  text-align: center;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Implementation Steps */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .implementation-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .step {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte blockquote {
  margin: var(--space-2xl) 0;
  font-size: var(--text-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .key-takeaways {
  background-color: rgba(62, 146, 204, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .key-takeaways h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .key-takeaways ul {
  margin-left: var(--space-lg);
  margin-bottom: 0;
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .key-takeaways li {
  margin-bottom: var(--space-md);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .key-takeaways li:last-child {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-primary);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .card-content {
  padding: var(--space-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-post-card .btn {
  display: inline-block;
  margin-top: var(--space-sm);
}

/* Responsive Design */
@media (min-width: 768px) {
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .section-content {
    flex-direction: row;
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .content-section {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-mentale-modelle-erfolgreicher-deutscher-fuehrungskraefte blockquote {
    padding-left: var(--space-md);
    font-size: var(--text-md);
  }
}

/* Base Styles for Post Page */
.post-page {
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

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

.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-surface);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

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

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

.post-page .post-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-regular);
  max-width: 800px;
}

.post-page .post-hero .hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-top: var(--space-xl);
}

/* Content Sections - General */
.post-page .content-section {
  padding: var(--space-3xl) 0;
}

.post-page .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  font-size: var(--text-3xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.post-page .content-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
}

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

/* Section 1: Fundamentals */
.post-page .section-fundamentals {
  background-color: var(--color-surface);
}

.post-page .content-columns {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

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

.post-page .image-column {
  flex: 0 0 40%;
}

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

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

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

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

/* Section 2: Implementation */
.post-page .section-implementation {
  background-color: var(--color-background);
  position: relative;
}

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

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

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

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

.post-page .implementation-card p {
  margin-bottom: 0;
  font-size: var(--text-base);
}

.post-page blockquote {
  margin: var(--space-xl) auto;
  max-width: 800px;
  text-align: center;
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  padding: var(--space-lg) var(--space-xl);
  background-color: rgba(10, 61, 98, 0.05);
  border-radius: var(--radius-md);
  border-left: none;
  position: relative;
}

.post-page blockquote:before,
.post-page blockquote:after {
  content: '"';
  font-size: var(--text-5xl);
  color: var(--color-accent);
  position: absolute;
  opacity: 0.3;
}

.post-page blockquote:before {
  top: -10px;
  left: 10px;
}

.post-page blockquote:after {
  bottom: -40px;
  right: 10px;
}

.post-page .case-study {
  background-color: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-success);
}

.post-page .case-study h5 {
  color: var(--color-success);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-page .case-study img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

/* Section 3: Tools */
.post-page .section-tools {
  background-color: var(--color-surface);
}

.post-page .tools-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-page .tool-description {
  background-color: rgba(62, 146, 204, 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.post-page .tool-description h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-page .numbered-list,
.post-page .bullet-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

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

.post-page .key-takeaways {
  background-color: rgba(255, 179, 71, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  border: 1px solid var(--color-accent);
}

.post-page .key-takeaways h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-page .takeaway-list {
  padding-left: var(--space-xl);
}

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

.post-page .takeaway-list li:before {
  content: '✓';
  color: var(--color-success);
  position: absolute;
  left: -25px;
  font-weight: var(--font-weight-bold);
}

.post-page .cta-container {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  justify-content: center;
}

/* Related Posts Section */
.post-page .related-posts {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

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

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

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

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

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

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

.post-page .post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.post-page .post-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.post-page .read-more {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  display: inline-block;
}

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

/* Responsive Styles */
@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-page .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-page .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-page .content-columns {
    flex-direction: column;
  }
  
  .post-page .image-column {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .post-page .implementation-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .cta-container {
    flex-direction: column;
  }
  
  .post-page .post-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-page blockquote {
    font-size: var(--text-lg);
    padding: var(--space-md);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-page .post-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .post-page .implementation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base Styles for the Post Page */
.post-page {
  background-color: var(--color-background);
}

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

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

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

/* Hero Section */
.post-page .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-page .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  max-width: 900px;
}

.post-page .post-hero .lead {
  color: var(--color-surface);
  opacity: 0.9;
  max-width: 800px;
  font-weight: var(--font-weight-regular);
  margin-bottom: 0;
}

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

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

.post-page .section-dark {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

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

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

.post-page .section-content {
  max-width: 100%;
}

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

/* Model Cards */
.post-page .model-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

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

.post-page .model-card h4 {
  margin-bottom: var(--space-md);
  color: var(--color-surface);
}

.post-page .model-card p {
  margin-bottom: 0;
  color: var(--color-surface);
  opacity: 0.9;
}

/* Image Container */
.post-page .image-container {
  margin: var(--space-xl) 0;
}

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

/* Adaptation Grid */
.post-page .adaptation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-page .adaptation-item {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-page .adaptation-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.post-page .adaptation-item p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* Action List */
.post-page .action-list {
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
}

.post-page .action-list li {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-page .action-list strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

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

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

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

.post-page .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.post-page .related-post-card h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-page .related-post-card .caption {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-page .related-post-card .btn {
  align-self: flex-start;
}

/* Blockquote Styles */
.post-page blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: rgba(62, 146, 204, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-page .model-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-page .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-page .section-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .model-cards {
    grid-template-columns: 1fr;
  }
  
  .post-page .adaptation-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page h2 {
    font-size: var(--text-2xl);
  }
  
  .post-page .lead {
    font-size: var(--text-md);
  }
}

/* Base Styles for Post Page */
.post-page {
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

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

.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-surface);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-page .post-hero h1 {
  color: var(--color-surface);
  font-size: var(--text-4xl);
  max-width: 900px;
  margin-bottom: var(--space-lg);
}

.post-page .post-hero .lead {
  color: var(--color-surface);
  font-size: var(--text-xl);
  max-width: 800px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Content Sections - General */
.post-page .content-section {
  padding: var(--space-3xl) 0;
}

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

.post-page .content-section h3 {
  color: var(--color-primary);
  margin: var(--space-xl) 0 var(--space-md);
  font-size: var(--text-2xl);
}

.post-page .content-section h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

/* Digital Challenges Section */
.post-page .digital-challenges {
  background-color: var(--color-surface);
}

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

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

.post-page .digital-challenges .section-image {
  flex: 0 0 40%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

/* Digital Mindset Section */
.post-page .digital-mindset {
  background-color: var(--color-background);
}

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

.post-page .mindset-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

.post-page .digital-mindset .section-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: var(--space-xl) 0 var(--space-lg);
}

/* Digital Strategies Section */
.post-page .digital-strategies {
  background-color: var(--color-surface);
}

.post-page .strategy-list {
  margin: var(--space-xl) 0;
}

.post-page .strategy-item {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.post-page .strategy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.post-page .strategy-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-page .conclusion {
  background-color: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
  border-left: 4px solid var(--color-accent);
}

/* Related Posts Section */
.post-page .related-posts {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-page .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-page .content-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
  }
  
  .post-page .digital-challenges .section-content {
    flex-direction: column;
  }
  
  .post-page .digital-challenges .section-image {
    margin-top: var(--space-lg);
    width: 100%;
  }
  
  .post-page .mindset-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .conclusion {
    padding: var(--space-lg);
  }
}

/* Page Specific Styles */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil {
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .post-hero .lead {
  color: var(--color-surface);
  opacity: 0.9;
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
  margin-top: var(--space-xl);
}

/* Content Sections */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .content-section {
  padding: var(--space-4xl) 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-light {
  background-color: var(--color-surface);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-dark {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-dark h2,
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-dark h3,
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-dark h4 {
  color: var(--color-surface);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-dark p {
  color: var(--color-surface);
  opacity: 0.9;
}

/* Content Columns Layout */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .image-column img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .key-strengths {
  background-color: rgba(10, 61, 98, 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .key-strengths h3 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .key-strengths ul {
  list-style-type: none;
  padding-left: 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .key-strengths li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .key-strengths li:last-child {
  border-bottom: none;
}

/* Challenge Grid */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .challenge-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .challenge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .challenge-item h4 {
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .section-image {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin: var(--space-xl) auto 0;
  display: block;
}

/* Strategy Section */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .strategy-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  border-top: 4px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .strategy-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .action-steps {
  margin-top: var(--space-md);
  background-color: rgba(10, 61, 98, 0.05);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .step-title {
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .action-steps ul {
  padding-left: var(--space-lg);
  margin-bottom: 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .action-steps li {
  margin-bottom: var(--space-sm);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil blockquote {
  background-color: rgba(255, 179, 71, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .conclusion {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Related Posts Section */
.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-posts-section h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .card-content {
  padding: var(--space-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-post-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .read-more {
  color: var(--color-secondary);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .read-more:hover {
  color: var(--color-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .content-columns {
    grid-template-columns: 1fr;
  }
  
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .strategy-grid {
    grid-template-columns: 1fr;
  }
  
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .post-hero h1 {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .post-globales-denken-lokales-handeln-deutscher-fuehrungsstil .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.privacy-page {
  background-color: var(--color-background);
  padding: var(--space-xl) 0 var(--space-3xl);
}

.privacy-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.privacy-page__updated {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

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

.privacy-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.privacy-page__subsection-title {
  color: var(--color-secondary);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
}

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

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

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

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

.privacy-page__contact-item {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page__container {
    padding: var(--space-lg);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-xl);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
}

.terms-page {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  margin: var(--space-2xl) auto;
}

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

.terms-page__header h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-bold);
}

.terms-page__updated {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
  margin-bottom: 0;
}

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

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

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

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

.terms-page__list li {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  line-height: 1.5;
}

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

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

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

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

.cookie-page__header h1 {
  color: var(--color-primary);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.cookie-page__header .lead {
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.cookie-page__section {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookie-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-secondary);
}

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

.cookie-page__subsection h3 {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

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

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

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

.cookie-page__footer {
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

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

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

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

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

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

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

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

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

.thank-page__message p {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  line-height: 1.6;
}

.thank-page__confirmation {
  margin: var(--space-xl) 0;
}

.thank-page__confirmation-box {
  background-color: rgba(10, 61, 98, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  text-align: left;
  border-radius: var(--radius-sm);
}

.thank-page__confirmation-title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

.thank-page__confirmation-text {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.thank-page__quote {
  font-family: var(--font-secondary);
  margin: var(--space-xl) auto;
  max-width: 90%;
  text-align: center;
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__lead {
    font-size: var(--text-lg);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__confirmation-box {
    padding: var(--space-md);
  }
  
  .thank-page__button {
    width: 100%;
  }
}

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

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

  .error-404__code {
    font-family: var(--font-primary);
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: var(--space-md);
  }

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

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

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

  .error-404__action {
    margin-bottom: var(--space-xl);
  }

  .error-404__button {
    transition: all var(--transition-normal);
  }

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

  .error-404__subtitle {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    letter-spacing: 0.02em;
  }

  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-3xl) var(--space-md);
    }
    
    .error-404__code {
      font-size: var(--text-5xl);
    }
    
    .error-404__title {
      font-size: var(--text-2xl);
    }
    
    .error-404__message {
      font-size: var(--text-md);
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .error-404__code {
      font-size: var(--text-6xl);
    }
  }
