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

:root {
  /* Color Scheme - Earthy Gradient with Bold Accents */
  --color-primary: #3a7d44;         /* Forest Green */
  --color-primary-light: #5ba45f;   /* Lighter Green */
  --color-secondary: #2c3e50;       /* Deep Blue Gray */
  --color-accent: #e67e22;          /* Vibrant Orange */
  --color-accent-light: #f39c12;    /* Golden Yellow */
  --color-background: #f7f9fc;      /* Off-White */
  --color-surface: #ffffff;         /* White */
  --color-text-primary: #2c3e50;    /* Dark Blue Gray */
  --color-text-secondary: #5d6d7e;  /* Medium Gray */
  --color-text-light: #8a97a8;      /* Light Gray */

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  /* Font Sizes */
  --fs-xxl: 3.5rem;    /* 56px */
  --fs-xl: 2.75rem;    /* 44px */
  --fs-lg: 2rem;       /* 32px */
  --fs-md: 1.5rem;     /* 24px */
  --fs-base: 1.125rem; /* 18px */
  --fs-sm: 1rem;       /* 16px */
  --fs-xs: 0.875rem;   /* 14px */
  
  /* Line Heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
  
  /* Spacing */
  --space-xxs: 0.25rem;  /* 4px */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-xxl: 3rem;     /* 48px */
  --space-xxxl: 5rem;    /* 80px */
  
  /* Section Spacing */
  --section-spacing-mobile: 3rem;   /* 48px */
  --section-spacing-desktop: 6rem;  /* 96px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.05);
  --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.1);
  --shadow-lg: 0 8px 24px rgba(44, 62, 80, 0.12);
  --shadow-focus: 0 0 0 3px rgba(90, 164, 95, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;    /* 16px */
  --icon-sm: 1.25rem; /* 20px */
  --icon-md: 1.5rem;  /* 24px */
  --icon-lg: 2rem;    /* 32px */
  --icon-xl: 3rem;    /* 48px */
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

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

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

h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

h2 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h5, h6 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

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

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

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-weight: 500;
  position: relative;
}

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

a.underline {
  position: relative;
}

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

a.underline:hover::after {
  width: 100%;
}

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

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

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

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

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

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-base);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Utilities */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

/* Responsive Typography */
@media (min-width: 768px) {
  h1 {
    font-size: var(--fs-xxl);
  }
  
  h2 {
    font-size: var(--fs-xl);
  }
  
  h3 {
    font-size: var(--fs-lg);
  }
  
  h4 {
    font-size: var(--fs-md);
  }
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
  
  h1::after {
    width: 60px;
    height: 3px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}
/* Header Styles */
.header {
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

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

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

.header__logo-icon {
  font-size: var(--fs-lg);
  margin-right: var(--space-xs);
  display: inline-block;
  animation: grow-rotate 5s infinite alternate ease-in-out;
}

@keyframes grow-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.header__logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-primary);
  position: relative;
}

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

.header__logo:hover .header__logo-text::after {
  width: 100%;
}

/* Navigation */
.header__nav {
  display: none;
}

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

.header__nav-item {
  position: relative;
}

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

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

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

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

/* Dropdown Menu */
.header__nav-item--dropdown {
  position: relative;
}

.header__nav-link--dropdown {
  display: flex;
  align-items: center;
}

.header__nav-link--dropdown::before {
  content: '▾';
  display: inline-block;
  margin-left: var(--space-xxs);
  font-size: 10px;
  transition: transform var(--transition-normal);
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.header__nav-item--dropdown:hover .header__nav-link--dropdown::before {
  transform: translateY(-50%) rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: var(--space-sm);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  list-style: none;
  border: 1px solid rgba(44, 62, 80, 0.1);
}

.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.header__dropdown-item {
  margin-bottom: var(--space-xs);
}

.header__dropdown-item:last-child {
  margin-bottom: 0;
}

.header__dropdown-link {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: var(--fs-xs);
  transition: all var(--transition-normal);
  border-radius: var(--radius-sm);
}

.header__dropdown-link:hover {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding-left: var(--space-md);
}

/* Call to Action Button */
.header__cta {
  display: none;
}

.header__cta-btn {
  white-space: nowrap;
  padding: var(--space-xs) var(--space-md);
  position: relative;
  overflow: hidden;
}

.header__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 10;
}

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

.header__mobile-icon {
  top: 14px;
}

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

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

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-surface);
  z-index: 9999;
  transition: right var(--transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

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

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

.header__mobile-close {
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--color-text-primary);
  cursor: pointer;
  padding: var(--space-xxs) var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

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

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

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

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

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

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

.header__mobile-nav-link--parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.header__mobile-nav-link--parent::after {
  content: '+';
  font-size: var(--fs-lg);
  color: var(--color-text-light);
  transition: transform var(--transition-normal);
}

.header__mobile-nav-item--has-children.active .header__mobile-nav-link--parent::after {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.header__mobile-subnav {
  display: none;
  list-style: none;
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  margin-top: var(--space-xs);
  border-left: 2px solid var(--color-primary-light);
}

.header__mobile-nav-item--has-children.active .header__mobile-subnav {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.header__mobile-subnav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--fs-sm);
  display: block;
  padding: var(--space-xxs) 0;
  transition: all var(--transition-normal);
}

.header__mobile-subnav-link:hover {
  color: var(--color-primary);
  padding-left: var(--space-xs);
}

.header__mobile-footer {
  padding: var(--space-lg);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  text-align: center;
}

.header__mobile-cta {
  width: 100%;
  margin-bottom: var(--space-lg);
}

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

.header__mobile-legal-link {
  color: var(--color-text-light);
  font-size: var(--fs-xs);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/* Responsive Styles */
@media (min-width: 1360px) {
  .header__wrapper {
    gap: var(--space-lg);
  }
  
  .header__nav {
    display: block;
    flex: 1;
  }
  
  .header__cta {
    display: block;
  }
  
  .header__mobile-toggle {
    display: none;
  }
}

@media (min-width: 992px) {
  .header__wrapper {
    gap: var(--space-xxl);
  }
  
  .header__nav-list {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

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

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

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

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

.main .hero-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  line-height: var(--lh-loose);
}

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

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

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

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

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

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

.main .hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  top: -100px;
  right: -150px;
  opacity: 0.1;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  bottom: -80px;
  left: -100px;
  opacity: 0.1;
}

.main .hero-accent {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: 3;
}

.main .hero-stat {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite;
}

.main .stat-number {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xxs);
}

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

@keyframes float {
  0% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(5deg);
  }
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-xxl) 0;
  background-color: var(--color-surface);
  position: relative;
}

.main .section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.main .section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
}

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

.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;
}

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

.main .post-image {
  width: 100%;
  height: 240px;
  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(--fs-md);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  line-height: 1.3;
}

.main .post-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-loose);
  flex-grow: 1;
}

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

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

/* Journey Map Section */
.main .journey-map {
  padding: var(--space-xxxl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .journey-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(58, 125, 68, 0.05) 0%, rgba(58, 125, 68, 0) 70%);
  z-index: 1;
}

.main .journey-stages {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xxl);
}

.main .journey-stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  position: relative;
  margin-bottom: var(--space-xxl);
}

.main .stage-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  font-size: var(--fs-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 3;
}

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

.main .stage-content {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  position: relative;
}

.main .journey-stage:hover .stage-content {
  transform: translateX(10px);
}

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

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

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

.main .stage-points li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.main .stage-points li i {
  color: var(--color-primary);
  margin-right: var(--space-sm);
}

.main .journey-stage:nth-child(even) .stage-points li i {
  color: var(--color-accent);
}

.main .stage-visual {
  grid-column: 1 / -1;
  height: 240px;
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.main .journey-stage:hover .stage-visual img {
  transform: scale(1.05);
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-xxxl) 0;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.main .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(230, 126, 34, 0.05) 0%, rgba(230, 126, 34, 0) 70%);
  z-index: 1;
}

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

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

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

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

.main .testimonial-content blockquote {
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
}

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

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

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

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

.main .author-info h4 {
  margin-bottom: var(--space-xxs);
  color: var(--color-secondary);
  font-weight: 600;
}

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

/* Methods Section */
.main .methods {
  padding: var(--space-xxxl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .methods::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.05) 0%, rgba(44, 62, 80, 0) 70%);
  z-index: 1;
}

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

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

.main .method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
  transition: width var(--transition-normal);
}

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

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

.main .method-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(58, 125, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  font-size: var(--fs-lg);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.main .method-card:hover .method-icon {
  transform: scale(1.1) rotate(10deg);
  background-color: rgba(58, 125, 68, 0.2);
}

.main .method-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.main .method-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-loose);
}

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

.main .method-features li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.main .method-features li i {
  color: var(--color-primary);
  margin-right: var(--space-sm);
  font-size: var(--fs-xs);
}

/* Contact Section */
.main .contact {
  padding: var(--space-xxxl) 0;
  background: linear-gradient(135deg, rgba(58, 125, 68, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
  position: relative;
}

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

.main .contact-info {
  display: flex;
  flex-direction: column;
}

.main .contact-info .section-header {
  text-align: left;
  margin-bottom: var(--space-xl);
}

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

.main .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main .benefit-item i {
  font-size: var(--fs-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.main .benefit-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

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

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

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

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

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

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-md);
  border: 1px solid #e1e1e1;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .form-privacy {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  gap: var(--space-sm);
}

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

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

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

.main .form-privacy a:hover {
  color: var(--color-primary-light);
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

.main .cookie-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
}

.main .cookie-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

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

/* Media Queries */
@media (min-width: 768px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .journey-stage {
    grid-template-columns: auto 1fr 1fr;
  }
  
  .main .stage-content {
    grid-column: 2;
  }
  
  .main .stage-visual {
    grid-column: 3;
    height: 100%;
    margin-top: 0;
  }
  
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonial-card:first-child {
    grid-column: 1 / -1;
  }
  
  .main .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .main .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .main .cookie-content p {
    margin-bottom: 0;
    margin-right: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .testimonial-card:first-child {
    grid-column: auto;
  }
  
  .main .methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .contact-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: var(--space-xxl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent), var(--color-primary-light));
}

.footer__content {
  position: relative;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
  position: relative;
  z-index: 2;
}

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

.footer__title {
  color: var(--color-surface);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

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

.footer__tagline {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  max-width: 90%;
  line-height: var(--lh-normal);
  font-size: var(--fs-sm);
}

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

.footer__cta-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.footer__cta-btn:hover {
  transform: translateY(-3px);
}

.footer__heading {
  color: var(--color-surface);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
}

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

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

.footer__nav-link {
  color: var(--color-text-light);
  font-size: var(--fs-xs);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
}

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

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

.footer__nav-link:hover::before {
  width: 100%;
}

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

.footer__newsletter-text {
  color: var(--color-text-light);
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

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

.footer__input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-surface);
  font-size: var(--fs-xs);
  outline: none;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.footer__input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-focus);
}

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

.footer__submit-btn {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  font-size: var(--fs-xs);
  font-weight: 600;
  transition: background-color var(--transition-normal);
}

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

.footer__form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.footer__checkbox {
  margin-top: 3px;
  accent-color: var(--color-primary);
}

.footer__consent-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: var(--lh-normal);
}

.footer__text-link {
  color: var(--color-primary-light);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.footer__text-link:hover {
  color: var(--color-accent-light);
}

.footer__decoration {
  position: relative;
  margin: var(--space-xl) 0;
}

.footer__journey-path {
  position: relative;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary-light), var(--color-accent));
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.3;
}

.footer__journey-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-surface);
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-normal);
}

.footer__journey-dot--1 {
  left: 0%;
  background-color: var(--color-primary);
}

.footer__journey-dot--2 {
  left: 33.33%;
  background-color: var(--color-primary-light);
}

.footer__journey-dot--3 {
  left: 66.66%;
  background-color: var(--color-accent-light);
}

.footer__journey-dot--4 {
  left: 100%;
  background-color: var(--color-accent);
}

.footer__journey-dot:hover {
  transform: translateY(-50%) scale(1.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

.footer__legal-link {
  color: var(--color-text-light);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.footer__copyright-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
  
  .footer__title {
    font-size: var(--fs-md);
  }
  
  .footer__tagline {
    font-size: var(--fs-sm);
  }
  
  .footer__journey-path {
    max-width: 800px;
  }
  
  .footer__journey-dot {
    width: 12px;
    height: 12px;
  }
}

/* Privacy Page Specific Styles */
.privacy-page {
  padding: var(--space-xl) 0 var(--space-xxxl);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--lh-normal);
}

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

.privacy-page__last-updated {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
}

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

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

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

.privacy-page h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary-light);
}

.privacy-page h3 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0 var(--space-xxl);
  }
  
  .privacy-page h1 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-md);
  }
  
  .privacy-page h3 {
    font-size: var(--fs-base);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__list {
    padding-left: var(--space-lg);
  }
}

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

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

.terms-page__title {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 700;
  position: relative;
}

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0 var(--space-xxl);
  }
  
  .terms-page__section {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-base);
  }
  
  .terms-page__text {
    font-size: var(--fs-sm);
  }
}

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

.cookie-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.cookie-page h1 {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.cookie-page h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.cookie-page__updated {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
}

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

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

.cookie-page h3 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.cookie-page p {
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
  font-size: var(--fs-base);
}

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

.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);
  line-height: var(--lh-normal);
}

.cookie-page__browser-info {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

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

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

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

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

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

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

.thank-page__header h1 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  position: relative;
}

.thank-page__header h1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.thank-page__icon {
  margin: var(--space-xl) auto;
  width: var(--icon-xl);
  height: var(--icon-xl);
}

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

.thank-page__message p {
  color: var(--color-text-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

.thank-page__quote {
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--color-text-secondary);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  margin: var(--space-lg) auto;
  max-width: 80%;
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--color-primary);
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__card {
    padding: var(--space-lg);
  }
  
  .thank-page__quote {
    font-size: var(--fs-base);
    padding: var(--space-sm) var(--space-md);
    max-width: 90%;
  }
  
  .thank-page__header h1::after {
    width: 60px;
  }
}

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

/* Hero Section */
.category-page__hero {
  padding: var(--space-xxl) 0;
  background-color: var(--color-background);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.category-page__intro {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  max-width: 900px;
  margin-bottom: 0;
}

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

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

/* Post Card Styling */
.category-page .post-card {
  display: flex;
  flex-direction: column;
  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);
}

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

.category-page .post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-page .post-card h3 {
  font-size: var(--fs-md);
  padding: var(--space-lg) var(--space-lg) var(--space-xs);
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
  font-weight: 600;
}

.category-page .post-card p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  flex-grow: 1;
}

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

/* Content Sections */
.category-page__content {
  padding: var(--space-xxl) 0;
  background-color: var(--color-background);
}

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

.category-page__content-text h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

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

.category-page__list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.category-page__icon {
  color: var(--color-primary);
  margin-right: var(--space-xs);
}

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

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

.category-page__resource-card {
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.category-page__resource-card h3 {
  margin-bottom: var(--space-md);
}

.category-page__resource-card h4 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.category-page__resource-item {
  margin-bottom: var(--space-md);
}

.category-page__resource-item h4 {
  font-size: var(--fs-base);
  color: var(--color-accent);
  margin-bottom: var(--space-xxs);
}

.category-page__resource-item p {
  margin-bottom: var(--space-sm);
}

.category-page__ordered-list {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.category-page__ordered-list li {
  margin-bottom: var(--space-sm);
}

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

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__hero {
    padding: var(--space-xxxl) 0;
  }
  
  .category-page__intro {
    font-size: var(--fs-md);
  }
}

/* Animations */
.category-page .post-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.category-page .post-card:hover {
  transform: translateY(-5px);
}

.category-page .post-card:focus-within {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.category-page .btn {
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.category-page .btn:hover {
  transform: translateY(-2px);
}

.category-page .btn:active {
  transform: translateY(0);
}

  /* Page-specific styles */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .breadcrumbs a {
    color: var(--color-text-secondary);
    transition: color var(--transition-normal);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero {
    background-color: var(--color-secondary);
    color: var(--color-surface);
    padding: var(--section-spacing-mobile) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 125, 68, 0.2) 0%, rgba(58, 125, 68, 0) 100%);
    z-index: 1;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero h1 {
    color: var(--color-surface);
    margin-bottom: var(--space-lg);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero h1::after {
    background: var(--color-accent);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero .lead {
    font-size: var(--fs-md);
    line-height: var(--lh-loose);
    max-width: 90%;
    color: var(--color-surface);
    font-family: var(--font-secondary);
  }
  
  /* Content Sections */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .content-section {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .content-section.bg-light {
    background-color: var(--color-background);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .section-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .full-width-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--space-xl) 0;
  }
  
  /* Practice Cards */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-card {
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-card h3 {
    color: var(--color-primary);
    font-size: var(--fs-base);
    margin-bottom: var(--space-sm);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  /* Mindfulness List */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .mindfulness-list {
    list-style-type: none;
    padding: 0;
    margin: var(--space-lg) 0;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .mindfulness-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: var(--lh-normal);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .mindfulness-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
  }
  
  /* Blockquote */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 blockquote {
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 blockquote footer {
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--color-text-secondary);
  }
  
  /* Key Takeaways */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .key-takeaways {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .key-takeaways h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .key-takeaways ol {
    padding-left: var(--space-xl);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .key-takeaways li {
    margin-bottom: var(--space-sm);
    line-height: var(--lh-loose);
  }
  
  /* Related Posts Section */
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-posts-section {
    padding: var(--section-spacing-mobile) 0;
    background-color: var(--color-surface);
    border-top: 1px solid rgba(44, 62, 80, 0.1);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-post-card h3 {
    font-size: var(--fs-base);
    margin-bottom: var(--space-sm);
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-post-card p {
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    flex: 1;
  }
  
  .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-post-card .btn {
    align-self: flex-start;
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero {
      padding: var(--section-spacing-desktop) 0;
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .post-hero .lead {
      font-size: var(--fs-lg);
      max-width: 80%;
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .content-section {
      padding: var(--section-spacing-desktop) 0;
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .two-column-layout {
      grid-template-columns: 3fr 2fr;
      align-items: center;
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-cards {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-posts {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .practice-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-deutschsprachige-selbstentwicklung-buecher-2024 .related-posts {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* Page-specific styles */
.post-smart-methode-deutscher-arbeitskontext .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.post-smart-methode-deutscher-arbeitskontext .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

.post-smart-methode-deutscher-arbeitskontext .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-smart-methode-deutscher-arbeitskontext .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-surface);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-smart-methode-deutscher-arbeitskontext .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 125, 68, 0.3) 0%, rgba(58, 125, 68, 0) 100%);
  z-index: 1;
}

.post-smart-methode-deutscher-arbeitskontext .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-smart-methode-deutscher-arbeitskontext .post-hero h1::after {
  background: var(--color-accent);
}

.post-smart-methode-deutscher-arbeitskontext .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  max-width: 800px;
  color: var(--color-surface);
  margin-bottom: 0;
}

/* Content Sections */
.post-smart-methode-deutscher-arbeitskontext .content-section {
  padding: var(--section-spacing-mobile) 0;
}

.post-smart-methode-deutscher-arbeitskontext .section-light {
  background-color: var(--color-surface);
}

.post-smart-methode-deutscher-arbeitskontext .section-dark {
  background-color: var(--color-background);
}

.post-smart-methode-deutscher-arbeitskontext .content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-smart-methode-deutscher-arbeitskontext .content-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-smart-methode-deutscher-arbeitskontext .content-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-smart-methode-deutscher-arbeitskontext .full-width {
  margin-left: calc(-1 * var(--space-md));
  margin-right: calc(-1 * var(--space-md));
  width: calc(100% + var(--space-md) * 2);
}

/* SMART Criteria */
.post-smart-methode-deutscher-arbeitskontext .smart-criteria {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-smart-methode-deutscher-arbeitskontext .criteria-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-top: 4px solid var(--color-primary);
}

.post-smart-methode-deutscher-arbeitskontext .criteria-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-smart-methode-deutscher-arbeitskontext .criteria-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-base);
  font-weight: 600;
}

.post-smart-methode-deutscher-arbeitskontext .example-box {
  background-color: rgba(58, 125, 68, 0.05);
  border-left: 3px solid var(--color-primary-light);
  padding: var(--space-md);
  margin-top: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-smart-methode-deutscher-arbeitskontext .example-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.post-smart-methode-deutscher-arbeitskontext .example-text {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

/* Two Column Layout */
.post-smart-methode-deutscher-arbeitskontext .two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-smart-methode-deutscher-arbeitskontext .checklist {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.post-smart-methode-deutscher-arbeitskontext .checklist li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.post-smart-methode-deutscher-arbeitskontext .checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.post-smart-methode-deutscher-arbeitskontext .quote-box {
  background-color: rgba(44, 62, 80, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.post-smart-methode-deutscher-arbeitskontext .quote-box blockquote {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-text-primary);
  border-left: none;
  padding-left: 0;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.post-smart-methode-deutscher-arbeitskontext .quote-author {
  text-align: right;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Conclusion Box */
.post-smart-methode-deutscher-arbeitskontext .conclusion-box {
  background-color: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xxl);
  box-shadow: var(--shadow-md);
}

.post-smart-methode-deutscher-arbeitskontext .conclusion-box h3 {
  color: var(--color-surface);
  margin-bottom: var(--space-md);
}

.post-smart-methode-deutscher-arbeitskontext .conclusion-box p {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
}

.post-smart-methode-deutscher-arbeitskontext .conclusion-box .btn-primary {
  background-color: var(--color-surface);
  color: var(--color-primary);
}

.post-smart-methode-deutscher-arbeitskontext .conclusion-box .btn-primary:hover {
  background-color: var(--color-accent);
  color: white;
}

/* Related Posts Section */
.post-smart-methode-deutscher-arbeitskontext .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-spacing-mobile) 0;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.post-smart-methode-deutscher-arbeitskontext .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-smart-methode-deutscher-arbeitskontext .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-smart-methode-deutscher-arbeitskontext .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-smart-methode-deutscher-arbeitskontext .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-smart-methode-deutscher-arbeitskontext .related-post-card:hover img {
  transform: scale(1.05);
}

.post-smart-methode-deutscher-arbeitskontext .card-content {
  padding: var(--space-lg);
}

.post-smart-methode-deutscher-arbeitskontext .related-post-card h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.post-smart-methode-deutscher-arbeitskontext .related-post-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.post-smart-methode-deutscher-arbeitskontext .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-xs);
  transition: all var(--transition-normal);
}

.post-smart-methode-deutscher-arbeitskontext .btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-smart-methode-deutscher-arbeitskontext .content-section {
    padding: var(--section-spacing-desktop) 0;
  }
  
  .post-smart-methode-deutscher-arbeitskontext .content-with-image {
    grid-template-columns: 3fr 2fr;
  }
  
  .post-smart-methode-deutscher-arbeitskontext .smart-criteria {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-smart-methode-deutscher-arbeitskontext .two-column-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-smart-methode-deutscher-arbeitskontext .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-smart-methode-deutscher-arbeitskontext .smart-criteria {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-smart-methode-deutscher-arbeitskontext .post-hero {
    padding: var(--space-xxxl) 0;
  }
  
  .post-smart-methode-deutscher-arbeitskontext .full-width {
    margin-left: calc(-1 * var(--space-xl));
    margin-right: calc(-1 * var(--space-xl));
    width: calc(100% + var(--space-xl) * 2);
  }
}

/* Interactive Elements */
.post-smart-methode-deutscher-arbeitskontext .btn {
  position: relative;
  overflow: hidden;
}

.post-smart-methode-deutscher-arbeitskontext .btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.5s ease;
}

.post-smart-methode-deutscher-arbeitskontext .btn:hover::after {
  left: 100%;
}

/* Base Page Styles */
.post-deutschsprachige-buecher-persoenliche-entwicklung {
  overflow-x: hidden;
}

/* Breadcrumbs */
.post-deutschsprachige-buecher-persoenliche-entwicklung .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero {
  background-color: var(--color-surface);
  padding: var(--space-xxl) 0;
  position: relative;
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero .container {
  max-width: 900px;
  text-align: center;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero h1 {
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
  position: relative;
  display: inline-block;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero h1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 100px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

/* Content Sections - Common */
.post-deutschsprachige-buecher-persoenliche-entwicklung .content-section {
  padding: var(--section-spacing-mobile) 0;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .content-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

/* Section 1 - Mindset */
.post-deutschsprachige-buecher-persoenliche-entwicklung .section-mindset {
  background-color: var(--color-background);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlight {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-xxl);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-content {
  flex: 1;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

/* Section 2 - Practical */
.post-deutschsprachige-buecher-persoenliche-entwicklung .section-practical {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(44, 62, 80, 0.05);
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlights {
  margin-top: var(--space-md);
  padding-left: var(--space-xl);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlights li {
  margin-bottom: var(--space-xs);
  position: relative;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlights li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .practical-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* Section 3 - Emerging */
.post-deutschsprachige-buecher-persoenliche-entwicklung .section-emerging {
  background-color: var(--color-background);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .emerging-authors {
  margin: var(--space-xl) 0;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .author-highlight {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .author-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .author-highlight h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .key-takeaways {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .key-takeaways ul {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .key-takeaways li {
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .key-takeaways li:last-child {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-deutschsprachige-buecher-persoenliche-entwicklung .related-posts-section {
  background-color: var(--color-secondary);
  color: var(--color-surface);
  padding: var(--section-spacing-mobile) 0;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-posts-section h2 {
  color: var(--color-surface);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-posts-section h2::after {
  background: var(--color-accent-light);
  left: 50%;
  transform: translateX(-50%);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card h3 a {
  color: var(--color-surface);
  transition: color var(--transition-normal);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card h3 a:hover {
  color: var(--color-accent-light);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card .btn-outline {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-accent-light);
  transition: all var(--transition-normal);
  font-weight: 500;
}

.post-deutschsprachige-buecher-persoenliche-entwicklung .related-post-card .btn-outline:hover {
  background-color: var(--color-accent-light);
  color: var(--color-secondary);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-deutschsprachige-buecher-persoenliche-entwicklung .content-section {
    padding: var(--section-spacing-desktop) 0;
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlight {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .book-highlight.reverse {
    flex-direction: row-reverse;
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .book-image {
    width: 40%;
    margin-top: 0;
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero h1 {
    font-size: var(--fs-lg);
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-deutschsprachige-buecher-persoenliche-entwicklung .content-section h2 {
    font-size: var(--fs-md);
  }
}

/* Base Page Styles */
.post-netzwerken-deutschland {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-netzwerken-deutschland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.post-netzwerken-deutschland .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-normal);
}

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

/* Hero Section */
.post-netzwerken-deutschland .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-surface);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-netzwerken-deutschland .post-hero .container {
  position: relative;
  z-index: 2;
}

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

.post-netzwerken-deutschland .post-hero h1::after {
  background: var(--color-accent);
}

.post-netzwerken-deutschland .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  color: var(--color-surface);
}

.post-netzwerken-deutschland .networking-hero-image {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: var(--space-xl) 0 var(--space-md);
}

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

.post-netzwerken-deutschland .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

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

.post-netzwerken-deutschland .content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-netzwerken-deutschland .content-section img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Section 1: Grundlagen */
.post-netzwerken-deutschland .grundlagen-section {
  background-color: var(--color-surface);
}

.post-netzwerken-deutschland .section-content {
  display: flex;
  flex-direction: column;
}

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

.post-netzwerken-deutschland .content-image {
  flex: 1;
  margin-top: var(--space-xl);
}

.post-netzwerken-deutschland .content-image img {
  width: 100%;
  height: auto;
}

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

.post-netzwerken-deutschland .feature-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  position: relative;
  line-height: var(--lh-normal);
}

.post-netzwerken-deutschland .feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.post-netzwerken-deutschland .feature-highlight {
  font-weight: 600;
  color: var(--color-primary);
}

/* Section 2: Plattformen */
.post-netzwerken-deutschland .plattformen-section {
  background-color: var(--color-background);
  position: relative;
}

.post-netzwerken-deutschland .platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

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

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

.post-netzwerken-deutschland .platform-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-netzwerken-deutschland .platform-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.post-netzwerken-deutschland blockquote {
  margin: var(--space-xxl) 0;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  max-width: 800px;
}

.post-netzwerken-deutschland .networking-event-image {
  width: 100%;
  margin: var(--space-xl) 0 var(--space-md);
  border-radius: var(--radius-lg);
}

/* Section 3: Strategien */
.post-netzwerken-deutschland .strategien-section {
  background-color: var(--color-surface);
  padding-bottom: var(--space-xxxl);
}

.post-netzwerken-deutschland .strategies-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-netzwerken-deutschland .strategy-content {
  flex: 2;
}

.post-netzwerken-deutschland .strategy-group {
  margin-bottom: var(--space-xl);
}

.post-netzwerken-deutschland .strategy-group h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-netzwerken-deutschland .strategy-tips {
  flex: 1;
  margin-top: var(--space-lg);
}

.post-netzwerken-deutschland .tips-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.post-netzwerken-deutschland .tips-card h3 {
  margin-top: 0;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.post-netzwerken-deutschland .tips-lists {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-netzwerken-deutschland .do-list h4,
.post-netzwerken-deutschland .dont-list h4 {
  margin-bottom: var(--space-md);
}

.post-netzwerken-deutschland .do-list h4 {
  color: var(--color-primary);
}

.post-netzwerken-deutschland .dont-list h4 {
  color: var(--color-accent);
}

.post-netzwerken-deutschland .do-list ul,
.post-netzwerken-deutschland .dont-list ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-netzwerken-deutschland .do-list li,
.post-netzwerken-deutschland .dont-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.post-netzwerken-deutschland .conclusion {
  margin-top: var(--space-xxl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.post-netzwerken-deutschland .conclusion h3 {
  color: var(--color-primary);
}

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

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

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

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

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

.post-netzwerken-deutschland .related-post-card h3 a {
  color: var(--color-secondary);
  transition: color var(--transition-normal);
}

.post-netzwerken-deutschland .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-netzwerken-deutschland .related-post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
}

.post-netzwerken-deutschland .read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-netzwerken-deutschland .read-more .arrow {
  margin-left: var(--space-xxs);
  transition: transform var(--transition-normal);
}

.post-netzwerken-deutschland .read-more:hover {
  color: var(--color-primary-light);
}

.post-netzwerken-deutschland .read-more:hover .arrow {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-netzwerken-deutschland .content-section {
    padding: var(--section-spacing-desktop) 0;
  }
  
  .post-netzwerken-deutschland .section-content {
    flex-direction: row;
    gap: var(--space-xxl);
    align-items: center;
  }
  
  .post-netzwerken-deutschland .content-image {
    margin-top: 0;
  }
  
  .post-netzwerken-deutschland .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-netzwerken-deutschland .strategies-wrapper {
    flex-direction: row;
  }
  
  .post-netzwerken-deutschland .tips-lists {
    flex-direction: row;
    gap: var(--space-xl);
  }
  
  .post-netzwerken-deutschland .do-list,
  .post-netzwerken-deutschland .dont-list {
    flex: 1;
  }
  
  .post-netzwerken-deutschland .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .post-netzwerken-deutschland .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-netzwerken-deutschland .post-hero h1 {
    font-size: var(--fs-lg);
  }
  
  .post-netzwerken-deutschland .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-netzwerken-deutschland .content-section h2 {
    font-size: var(--fs-md);
  }
  
  .post-netzwerken-deutschland blockquote {
    font-size: var(--fs-base);
  }
}

/* Page-specific styles */
.post-mentoring-coaching-deutschland-begleiter-finden .post-hero {
  background-color: var(--color-surface);
  padding: var(--space-xxl) 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.post-mentoring-coaching-deutschland-begleiter-finden .post-hero h1 {
  color: var(--color-secondary);
  max-width: 900px;
  margin-bottom: var(--space-lg);
}

.post-mentoring-coaching-deutschland-begleiter-finden .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-text-secondary);
  max-width: 900px;
  font-family: var(--font-secondary);
}

.post-mentoring-coaching-deutschland-begleiter-finden .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-background);
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.post-mentoring-coaching-deutschland-begleiter-finden .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Content Sections */
.post-mentoring-coaching-deutschland-begleiter-finden .content-section {
  padding: var(--section-spacing-mobile) 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .bg-light {
  background-color: var(--color-background);
}

.post-mentoring-coaching-deutschland-begleiter-finden .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-mentoring-coaching-deutschland-begleiter-finden .image-container {
  margin: var(--space-xl) 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-mentoring-coaching-deutschland-begleiter-finden .center-image {
  display: flex;
  justify-content: center;
}

.post-mentoring-coaching-deutschland-begleiter-finden .center-image img {
  max-width: 600px;
}

/* Benefits List */
.post-mentoring-coaching-deutschland-begleiter-finden .benefits-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .benefits-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-mentoring-coaching-deutschland-begleiter-finden .accent-bullet {
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Certification Section */
.post-mentoring-coaching-deutschland-begleiter-finden .certification-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .certification-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .certification-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-mentoring-coaching-deutschland-begleiter-finden .certification-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-base);
  font-weight: 600;
}

.post-mentoring-coaching-deutschland-begleiter-finden .certification-card ul {
  padding-left: var(--space-lg);
  margin-bottom: 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .certification-card li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

/* Steps Section */
.post-mentoring-coaching-deutschland-begleiter-finden .steps-container {
  margin: var(--space-xl) 0;
}

.post-mentoring-coaching-deutschland-begleiter-finden .step-item {
  display: flex;
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-mentoring-coaching-deutschland-begleiter-finden .step-number {
  background-color: var(--color-primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: var(--space-md);
  margin-top: var(--space-xs);
}

.post-mentoring-coaching-deutschland-begleiter-finden .step-content {
  flex: 1;
}

.post-mentoring-coaching-deutschland-begleiter-finden .step-content h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: var(--fs-base);
}

.post-mentoring-coaching-deutschland-begleiter-finden .step-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-mentoring-coaching-deutschland-begleiter-finden .conclusion-heading {
  margin-top: var(--space-xxl);
  color: var(--color-primary);
  font-size: var(--fs-md);
}

.post-mentoring-coaching-deutschland-begleiter-finden .conclusion-text {
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

/* Blockquote styling */
.post-mentoring-coaching-deutschland-begleiter-finden blockquote {
  font-family: var(--font-secondary);
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  background-color: rgba(230, 126, 34, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-text-secondary);
}

/* Related Posts Section */
.post-mentoring-coaching-deutschland-begleiter-finden .related-posts-section {
  padding: var(--section-spacing-mobile) 0;
  background-color: var(--color-surface);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-mentoring-coaching-deutschland-begleiter-finden .card-content {
  padding: var(--space-lg);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-mentoring-coaching-deutschland-begleiter-finden .related-post-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-xs);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .read-more:hover {
  color: var(--color-primary-light);
}

.post-mentoring-coaching-deutschland-begleiter-finden .arrow {
  margin-left: var(--space-xxs);
  transition: transform var(--transition-normal);
}

.post-mentoring-coaching-deutschland-begleiter-finden .read-more:hover .arrow {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-mentoring-coaching-deutschland-begleiter-finden .content-section {
    padding: var(--section-spacing-desktop) 0;
  }
  
  .post-mentoring-coaching-deutschland-begleiter-finden .section-content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-mentoring-coaching-deutschland-begleiter-finden .certification-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-mentoring-coaching-deutschland-begleiter-finden .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-mentoring-coaching-deutschland-begleiter-finden .post-hero {
    padding: var(--space-xxxl) 0;
  }
  
  .post-mentoring-coaching-deutschland-begleiter-finden .post-hero h1 {
    font-size: var(--fs-xxl);
  }
}

/* Privacy Page Styles */
.privacy-page {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  font-family: var(--font-primary);
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  line-height: var(--lh-normal);
}

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

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

.privacy-page__section {
  margin-bottom: var(--space-xxl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

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

.privacy-page__subsection {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-primary-light);
}

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

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

.privacy-page h1 {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  font-weight: 700;
}

.privacy-page h2 {
  color: var(--color-primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.privacy-page h3 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page h1 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-md);
  }
  
  .privacy-page h3 {
    font-size: var(--fs-base);
  }
  
  .privacy-page__subsection {
    padding-left: var(--space-sm);
  }
}

/* Terms of Service Page Styles */
.terms-page {
  padding: var(--space-xl) 0 var(--space-xxl);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--lh-normal);
}

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

.terms-page h1 {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.terms-page h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.terms-page__updated {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-lg);
  font-style: italic;
}

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

.terms-page h2 {
  color: var(--color-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-primary-light);
  padding-bottom: var(--space-xs);
}

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

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

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

@media (max-width: 767px) {
  .terms-page__section {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .terms-page h1 {
    font-size: var(--fs-lg);
  }
  
  .terms-page h2 {
    font-size: var(--fs-base);
  }
}

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

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

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

.cookie-page h1 {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  position: relative;
}

.cookie-page h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.cookie-page h2 {
  color: var(--color-primary);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.cookie-page h3 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

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

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

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

.cookie-page__subsection {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary-light);
}

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

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

@media (max-width: 767px) {
  .cookie-page h1 {
    font-size: var(--fs-lg);
  }
  
  .cookie-page h2 {
    font-size: var(--fs-md);
  }
  
  .cookie-page h3 {
    font-size: var(--fs-base);
  }
  
  .cookie-page p, 
  .cookie-page__list li {
    font-size: var(--fs-sm);
  }
  
  .cookie-page__subsection {
    padding: var(--space-md);
  }
  
  .cookie-page h1::after {
    width: 60px;
    height: 3px;
  }
}

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

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

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

.thank-page__message {
  text-align: center;
  padding: var(--space-xxl);
  margin-bottom: var(--space-xxl);
}

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

.thank-page__icon .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(58, 125, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.thank-page__title {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.thank-page__text {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-xl);
}

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

.thank-page__response-time {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-spacing-mobile) 0;
  }
  
  .thank-page__message {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-md);
  }
  
  .thank-page__quote {
    max-width: 100%;
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-xxxl) 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: 600px;
  margin: 0 auto;
}

.error-404__code {
  font-family: var(--font-primary);
  font-size: calc(var(--fs-xxl) * 2);
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  opacity: 0.9;
  text-shadow: 3px 3px 0 var(--color-primary);
}

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

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

.error-404__title::after {
  display: none;
}

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

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

.error-404__quote blockquote {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  border-left: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.error-404__quote blockquote::before,
.error-404__quote blockquote::after {
  content: '"';
  color: var(--color-accent-light);
  font-size: var(--fs-lg);
  font-family: var(--font-secondary);
}

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

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

.error-404__button-icon {
  margin-right: var(--space-xs);
  display: inline-block;
  transition: transform var(--transition-normal);
}

.error-404__button:hover .error-404__button-icon {
  transform: translateX(-4px);
}

@media (min-width: 768px) {
  .error-404__code {
    font-size: calc(var(--fs-xxl) * 2.5);
  }
  
  .error-404__title {
    font-size: var(--fs-xl);
  }
  
  .error-404__message {
    font-size: var(--fs-md);
  }
  
  .error-404__quote blockquote {
    font-size: var(--fs-base);
  }
}

@media (max-width: 480px) {
  .error-404 {
    padding: var(--space-xxl) var(--space-md);
  }
  
  .error-404__code {
    font-size: calc(var(--fs-xxl) * 1.5);
  }
  
  .error-404__title {
    font-size: var(--fs-md);
  }
  
  .error-404__message {
    font-size: var(--fs-sm);
  }
}
