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

:root {
  /* Color Scheme - Modern Technical with German precision feel */
  --color-primary: #0055a4; /* German blue - trustworthy, professional */
  --color-secondary: #003366; /* Darker blue for depth */
  --color-accent: #ffcc00; /* German gold - excellence, achievement */
  --color-highlight: #4d9fff; /* Light blue for highlights and interaction */
  --color-background: #f7f9fc; /* Light gray-blue background */
  --color-surface: #ffffff; /* Card/surface color */
  --color-text-primary: #1a2a3a; /* Dark blue-gray for main text */
  --color-text-secondary: #4a5568; /* Medium gray for secondary text */
  --color-text-tertiary: #718096; /* Lighter gray for tertiary text */
  --color-success: #27ae60; /* Green for success states */
  --color-error: #e74c3c; /* Red for error states */

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Source Sans Pro', sans-serif;
  
  /* Font Sizes - Desktop */
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.75rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.75rem;
  --font-size-h5: 1.375rem;
  --font-size-h6: 1.125rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-xs: 0.75rem;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing System */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Section Padding */
  --section-padding-desktop: 6rem;
  --section-padding-tablet: 4rem;
  --section-padding-mobile: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.06), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Icon Sizes */
  --icon-xs: 0.75rem;
  --icon-sm: 1rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

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

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

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

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

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

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

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

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

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

p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

small {
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
}

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

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

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

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

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

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

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

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

.btn-accent:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

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

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

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

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

/* Card */
.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(-4px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  :root {
    --font-size-h1: 3rem;
    --font-size-h2: 2.25rem;
    --font-size-h3: 1.875rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1.125rem;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.375rem;
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
  }
  
  section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
  }
}
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  position: relative;
  z-index: 100;
}

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

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

.header__logo {
  display: flex;
  align-items: center;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.header__excel-icon {
  fill: var(--color-primary);
}

.header__logo-text {
  letter-spacing: -0.02em;
}

.header__logo-accent {
  color: var(--color-primary);
  margin-left: var(--space-xs);
}

.header__tagline {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-xs);
}

.header__nav {
  margin-left: var(--space-xl);
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  padding: var(--space-sm) var(--space-sm);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
}

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

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-sm);
  right: var(--space-sm);
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
}

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

.header__action {
  margin-left: auto;
}

.header__cta {
  font-size: var(--font-size-small);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 28px;
  padding: 0;
  position: relative;
  z-index: 10000;
}

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

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-surface);
  padding: var(--space-xl);
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--transition-normal);
}

.header__mobile-menu.is-active {
  opacity: 1;
  transform: translateX(0);
}

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

.header__mobile-logo {
  display: flex;
  align-items: center;
}

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

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

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

.header__mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: var(--space-md);
}

.header__mobile-nav-link {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: var(--space-sm) 0;
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(var(--space-sm));
}

.header__mobile-footer {
  margin-top: var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.header__mobile-cta {
  width: 100%;
}

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

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

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

/* German flag-inspired accent line below header */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--color-text-primary) 33.33%, 
    var(--color-accent) 33.33%, 
    var(--color-accent) 66.66%, 
    var(--color-primary) 66.66%
  );
}

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

@media (max-width: 767px) {
  .header__container {
    padding: 0 var(--space-md);
  }
  
  .header__logo {
    font-size: var(--font-size-h6);
  }
  
  .header__tagline {
    display: none;
  }
}

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

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

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

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

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

.main .hero-subtitle {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

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

.main .hero-cta .btn {
  padding: var(--space-md) var(--space-xl);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-normal);
}

.main .hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.main .hero-cta .btn-secondary:hover {
  transform: translateY(-3px);
}

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

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

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

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

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

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(var(--color-primary-rgb, 0, 85, 164), 0.1);
  top: -100px;
  right: -150px;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(var(--color-accent-rgb, 255, 204, 0), 0.1);
  bottom: -50px;
  right: 100px;
}

.main .hero-shape-3 {
  width: 150px;
  height: 150px;
  background-color: rgba(var(--color-highlight-rgb, 77, 159, 255), 0.1);
  top: 50%;
  left: -75px;
}

.main .hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-pill);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transform: rotate(-5deg);
  width: 120px;
  height: 120px;
}

.main .hero-badge-number {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.main .hero-badge-text {
  font-size: var(--font-size-xs);
  text-align: center;
  font-weight: var(--font-weight-medium);
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  rotate: 180deg;
}

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

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

.main .section-header h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.main .section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

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

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

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

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

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

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

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

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

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

.main .post-card:hover h3 {
  color: var(--color-primary);
}

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

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

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

.main .btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
}

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

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

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

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

.main .benefit-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;
  z-index: 1;
  overflow: hidden;
}

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

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

.main .benefit-card:hover:before {
  height: 8px;
}

.main .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(var(--color-primary-rgb, 0, 85, 164), 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.main .benefit-icon i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

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

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

.main .benefits-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

/* Learning Path Section */
.main .learning-path {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-surface);
}

.main .path-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

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

.main .path-item {
  display: flex;
  margin-bottom: var(--space-3xl);
  position: relative;
}

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

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

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

.main .path-content h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

.main .path-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .path-content img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.main .testimonial-card:before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(var(--color-primary-rgb, 0, 85, 164), 0.1);
  line-height: 1;
}

.main .testimonial-rating {
  display: flex;
  margin-bottom: var(--space-md);
}

.main .testimonial-rating i {
  color: var(--color-accent);
  margin-right: var(--space-xs);
}

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

.main .testimonial-author {
  display: flex;
  align-items: center;
}

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-md);
  border: 3px solid var(--color-primary);
}

.main .testimonial-info h4 {
  font-size: var(--font-size-body);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

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

/* Contact Section */
.main .contact {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-surface);
}

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

.main .contact-content {
  padding-right: var(--space-xl);
}

.main .contact-content h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

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

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

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

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

.main .contact-info-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--color-primary-rgb, 0, 85, 164), 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.main .contact-info-item p {
  margin-bottom: 0;
}

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

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

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

.main .contact-form h3 {
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  text-align: center;
}

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(var(--color-text-tertiary-rgb, 113, 128, 150), 0.3);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 0, 85, 164), 0.2);
  outline: none;
}

.main .form-checkbox {
  display: flex;
  align-items: flex-start;
}

.main .form-checkbox input {
  width: auto;
  margin-right: var(--space-sm);
  margin-top: 5px;
}

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

.main .btn-full {
  width: 100%;
  margin-top: var(--space-md);
}

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

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

.main .cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 300px;
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .main .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main .hero-subtitle {
    max-width: 100%;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    margin-top: var(--space-xl);
    order: 2;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .main .contact-content {
    padding-right: 0;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .main .path-number {
    width: 70px;
    height: 70px;
    font-size: var(--font-size-h3);
  }
  
  .main .path-container:before {
    left: 35px;
  }
  
  .main .hero-badge {
    width: 100px;
    height: 100px;
    bottom: 20px;
    left: 20px;
  }
  
  .main .hero-badge-number {
    font-size: var(--font-size-h5);
  }
}

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

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

.footer__brand {
  grid-column: span 1;
  position: relative;
}

.footer__title {
  color: var(--color-surface);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.footer__description {
  color: var(--color-text-tertiary);
  font-size: var(--font-size-small);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.footer__excel-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__excel-square {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.footer__excel-square:hover {
  transform: rotate(0deg);
}

.footer__excel-letter {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  transform: rotate(-45deg);
  transition: transform var(--transition-normal);
}

.footer__excel-square:hover .footer__excel-letter {
  transform: rotate(0deg);
}

.footer__subtitle {
  color: var(--color-accent);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

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

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

.footer__nav-item,
.footer__course-item,
.footer__resource-item {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.footer__nav-item::before,
.footer__course-item::before,
.footer__resource-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-highlight);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-normal);
}

.footer__nav-item:hover::before,
.footer__course-item:hover::before,
.footer__resource-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__nav-link,
.footer__course-link,
.footer__resource-link {
  color: var(--color-text-tertiary);
  text-decoration: none;
  font-size: var(--font-size-small);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer__nav-link:hover,
.footer__course-link:hover,
.footer__resource-link:hover {
  color: var(--color-surface);
  transform: translateX(var(--space-xs));
}

.footer__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-highlight), transparent);
  margin: var(--space-xl) 0;
  opacity: 0.3;
}

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

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

.footer__legal-item {
  margin-right: var(--space-lg);
  position: relative;
}

.footer__legal-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: var(--color-highlight);
}

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

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

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

.footer__decoration {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-around;
  opacity: 0.1;
}

.footer__decoration-cell {
  width: 10%;
  height: 60px;
  background-color: var(--color-accent);
  transform: skewX(-45deg);
}

.footer__decoration-cell:nth-child(even) {
  background-color: var(--color-highlight);
  height: 40px;
  align-self: flex-end;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .footer__brand {
    grid-column: span 2;
  }
  
  .footer__excel-icon {
    top: var(--space-lg);
    right: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand {
    grid-column: span 1;
  }
  
  .footer__excel-icon {
    position: relative;
    top: 0;
    right: 0;
    margin-top: var(--space-md);
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__legal-list {
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
  }
  
  .footer__legal-item {
    margin-bottom: var(--space-sm);
  }
}

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

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

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

.privacy-page__title {
  color: var(--color-primary);
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-md);
}

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

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

.privacy-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-semibold);
}

.privacy-page__subsection-title {
  color: var(--color-text-primary);
  font-size: var(--font-size-h6);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

.privacy-page__text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.privacy-page__list {
  list-style-position: outside;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.privacy-page__list-item {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

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

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--font-size-body);
}

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

/* Responsive styles */
@media (max-width: 1023px) {
  .privacy-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .privacy-page__container {
    padding: var(--space-2xl);
  }
  
  .privacy-page__title {
    font-size: var(--font-size-h3);
  }
  
  .privacy-page__section-title {
    font-size: var(--font-size-h5);
  }
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .privacy-page__container {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
  }
  
  .privacy-page__title {
    font-size: var(--font-size-h4);
  }
  
  .privacy-page__section-title {
    font-size: var(--font-size-h6);
  }
  
  .privacy-page__contact {
    padding: var(--space-lg);
  }
}

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

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

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

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

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

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

.terms-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-semibold);
}

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

.terms-page__section p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

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

.terms-page__list li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 1023px) {
  .terms-page {
    padding: var(--space-2xl) 0;
  }
  
  .terms-page .container {
    padding: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page .container {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
  }
  
  .terms-page__section h2 {
    font-size: var(--font-size-h5);
  }
  
  .terms-page__section h3 {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
  }
}

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

.cookie-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-3xl);
  max-width: 900px;
}

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

.cookie-page__last-updated {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.cookie-page__last-updated p {
  color: var(--color-text-tertiary);
  font-size: var(--font-size-small);
  font-style: italic;
  margin-bottom: 0;
}

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

.cookie-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page__container {
    padding: var(--space-xl);
  }
  
  .cookie-page__title {
    font-size: var(--font-size-h2);
  }
  
  .cookie-page__section-title {
    font-size: var(--font-size-h4);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--font-size-h6);
  }
}

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

.thank-page__container {
  width: 100%;
}

.thank-page__content {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

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

.thank-page__confirmation {
  color: var(--color-success);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-secondary);
  margin-top: var(--space-lg);
}

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

.thank-page__button {
  padding: var(--space-md) var(--space-2xl);
  font-weight: var(--font-weight-semibold);
}

.thank-page__subtitle {
  font-size: var(--font-size-h5);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.thank-page__list {
  list-style-type: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.thank-page__list-item {
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: var(--space-xl);
}

.thank-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl);
  }
  
  .thank-page__title {
    font-size: var(--font-size-h3);
  }
  
  .thank-page__list-item {
    padding-left: var(--space-lg);
  }
}

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

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  padding: var(--section-padding-desktop) 0;
  color: white;
}

.category-page__hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.category-page__hero-description {
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

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

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

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

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

.post-card__content p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

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

/* Content Sections */
.category-page__content-section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-surface);
}

.category-page__content-section--alt {
  background-color: var(--color-background);
}

.category-page__content-section h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
  color: var(--color-text-primary);
}

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

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

.category-page__content-section--alt .category-page__content-card {
  background-color: var(--color-surface);
}

.category-page__content-card .icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.category-page__content-card h4 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.category-page__content-card p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Learning Formats */
.category-page__formats {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.category-page__format-item {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.category-page__content-section--alt .category-page__format-item {
  background-color: white;
}

.category-page__format-icon {
  font-size: var(--icon-xl);
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 60px;
}

.category-page__format-content {
  flex-grow: 1;
}

.category-page__format-content h4 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.category-page__format-content p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.category-page__format-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.category-page__format-features li {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-lg);
}

.category-page__format-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .category-page__hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__posts,
  .category-page__content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .category-page__format-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .category-page__posts,
  .category-page__content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__content-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__format-item {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .category-page__format-icon {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

/* Base Styles for Excel Grundlagen Masterclass */
.post-excel-grundlagen-masterclass {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-excel-grundlagen-masterclass .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.post-excel-grundlagen-masterclass .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-excel-grundlagen-masterclass .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-excel-grundlagen-masterclass .post-hero::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.post-excel-grundlagen-masterclass .post-hero h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  color: white;
  line-height: 1.1;
}

.post-excel-grundlagen-masterclass .post-hero .lead {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

.post-excel-grundlagen-masterclass .hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Content Sections - General */
.post-excel-grundlagen-masterclass .content-section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.post-excel-grundlagen-masterclass .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.post-excel-grundlagen-masterclass h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.post-excel-grundlagen-masterclass h3 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-excel-grundlagen-masterclass p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

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

/* Excel Basics Section */
.post-excel-grundlagen-masterclass .excel-basics-section {
  background-color: var(--color-surface);
}

.post-excel-grundlagen-masterclass .feature-list {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

.post-excel-grundlagen-masterclass .feature-list ul {
  list-style-type: none;
  padding-left: 0;
}

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

.post-excel-grundlagen-masterclass .feature-list li::before {
  content: "✓";
  color: var(--color-success);
  position: absolute;
  left: 0;
  font-weight: var(--font-weight-bold);
}

/* Advantages Section */
.post-excel-grundlagen-masterclass .excel-advantages-section {
  background-color: var(--color-background);
  position: relative;
}

.post-excel-grundlagen-masterclass .advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-excel-grundlagen-masterclass .advantage-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-grundlagen-masterclass .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-excel-grundlagen-masterclass .advantage-card h3 {
  margin-top: 0;
  font-size: var(--font-size-h6);
}

.post-excel-grundlagen-masterclass .advantage-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-excel-grundlagen-masterclass .advantage-card img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: auto;
}

.post-excel-grundlagen-masterclass .testimonial {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-md);
}

.post-excel-grundlagen-masterclass .testimonial blockquote {
  font-style: italic;
  font-size: var(--font-size-h6);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.post-excel-grundlagen-masterclass .testimonial cite {
  font-style: normal;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
}

/* Career Section */
.post-excel-grundlagen-masterclass .excel-career-section {
  background-color: var(--color-surface);
}

.post-excel-grundlagen-masterclass .career-benefits {
  background-color: rgba(0, 85, 164, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-excel-grundlagen-masterclass .career-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.post-excel-grundlagen-masterclass .career-benefits li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-excel-grundlagen-masterclass .career-benefits li:last-child {
  border-bottom: none;
}

.post-excel-grundlagen-masterclass .cta-text {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin: var(--space-xl) 0;
}

.post-excel-grundlagen-masterclass .action-buttons {
  display: flex;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

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

.post-excel-grundlagen-masterclass .section-intro {
  max-width: 700px;
  margin: 0 auto var(--space-2xl) auto;
  text-align: center;
}

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

.post-excel-grundlagen-masterclass .related-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-grundlagen-masterclass .related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-excel-grundlagen-masterclass .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-excel-grundlagen-masterclass .related-post-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
}

.post-excel-grundlagen-masterclass .related-post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-excel-grundlagen-masterclass .card-link {
  margin-top: auto;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.post-excel-grundlagen-masterclass .card-link:hover {
  color: var(--color-highlight);
}

.post-excel-grundlagen-masterclass .card-link::after {
  content: "→";
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.post-excel-grundlagen-masterclass .card-link:hover::after {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-excel-grundlagen-masterclass .section-content,
  .post-excel-grundlagen-masterclass .advantages-grid,
  .post-excel-grundlagen-masterclass .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-excel-grundlagen-masterclass .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-excel-grundlagen-masterclass .post-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .post-excel-grundlagen-masterclass .section-content,
  .post-excel-grundlagen-masterclass .advantages-grid,
  .post-excel-grundlagen-masterclass .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-excel-grundlagen-masterclass .hero-cta,
  .post-excel-grundlagen-masterclass .action-buttons {
    flex-direction: column;
  }
  
  .post-excel-grundlagen-masterclass .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-grundlagen-masterclass .post-hero {
    padding: var(--space-2xl) 0;
  }
}

/* Base Styles for the Page */
.post-power-bi-excel-kombination {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs Navigation */
.post-power-bi-excel-kombination .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-power-bi-excel-kombination .breadcrumbs a {
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-power-bi-excel-kombination .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-power-bi-excel-kombination .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-power-bi-excel-kombination .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.95) 0%, rgba(0, 51, 102, 0.9) 100%);
  z-index: 1;
}

.post-power-bi-excel-kombination .post-hero .container {
  position: relative;
  z-index: 2;
}

.post-power-bi-excel-kombination .post-hero h1 {
  color: white;
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.post-power-bi-excel-kombination .post-hero .lead {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

/* Content Sections */
.post-power-bi-excel-kombination .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-power-bi-excel-kombination .section-light {
  background-color: var(--color-surface);
}

.post-power-bi-excel-kombination .section-dark {
  background-color: var(--color-secondary);
  color: white;
}

.post-power-bi-excel-kombination .section-dark h2,
.post-power-bi-excel-kombination .section-dark h3 {
  color: white;
}

.post-power-bi-excel-kombination .section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

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

.post-power-bi-excel-kombination .text-column {
  order: 1;
}

.post-power-bi-excel-kombination .image-column {
  order: 2;
}

.post-power-bi-excel-kombination .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Feature List */
.post-power-bi-excel-kombination .feature-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-power-bi-excel-kombination .feature-list li {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-md);
}

.post-power-bi-excel-kombination .feature-list li::before {
  content: '•';
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  width: var(--space-md);
  margin-left: calc(-1 * var(--space-md));
  position: absolute;
  left: 0;
}

/* Visualization Grid */
.post-power-bi-excel-kombination .visualization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

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

.post-power-bi-excel-kombination .viz-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-power-bi-excel-kombination .viz-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.post-power-bi-excel-kombination .viz-card p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

/* Full Width Image */
.post-power-bi-excel-kombination .full-width-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

/* Benefits Grid */
.post-power-bi-excel-kombination .benefits-container {
  margin: var(--space-2xl) 0;
}

.post-power-bi-excel-kombination .benefits-container h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-h4);
}

.post-power-bi-excel-kombination .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.post-power-bi-excel-kombination .benefit-item {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-power-bi-excel-kombination .benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-power-bi-excel-kombination .benefit-item h4 {
  color: var(--color-primary);
  font-size: var(--font-size-h6);
  margin-bottom: var(--space-sm);
}

.post-power-bi-excel-kombination .benefit-item p {
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* CTA Container */
.post-power-bi-excel-kombination .cta-container {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-power-bi-excel-kombination .cta-text {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

/* Related Posts Section */
.post-power-bi-excel-kombination .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-padding-desktop) 0;
}

.post-power-bi-excel-kombination .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.post-power-bi-excel-kombination .related-post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-power-bi-excel-kombination .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.post-power-bi-excel-kombination .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-power-bi-excel-kombination .card-content h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-power-bi-excel-kombination .card-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-power-bi-excel-kombination .card-content .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-power-bi-excel-kombination .two-column-layout,
  .post-power-bi-excel-kombination .visualization-grid,
  .post-power-bi-excel-kombination .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-power-bi-excel-kombination .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-power-bi-excel-kombination .post-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .post-power-bi-excel-kombination .two-column-layout,
  .post-power-bi-excel-kombination .visualization-grid,
  .post-power-bi-excel-kombination .benefits-grid,
  .post-power-bi-excel-kombination .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-power-bi-excel-kombination .text-column,
  .post-power-bi-excel-kombination .image-column {
    order: 0;
  }
  
  .post-power-bi-excel-kombination .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-power-bi-excel-kombination .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-power-bi-excel-kombination .post-hero .lead {
    font-size: var(--font-size-body);
  }
}

.post-power-bi-excel-kombination {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-power-bi-excel-kombination .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-power-bi-excel-kombination .breadcrumbs a {
  color: var(--color-text-tertiary);
  transition: color var(--transition-fast);
}

.post-power-bi-excel-kombination .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-power-bi-excel-kombination .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-power-bi-excel-kombination .post-hero h1 {
  color: white;
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-power-bi-excel-kombination .post-hero .lead {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

.post-power-bi-excel-kombination .hero-image {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

/* Content Sections */
.post-power-bi-excel-kombination .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-power-bi-excel-kombination .section-light {
  background-color: var(--color-surface);
}

.post-power-bi-excel-kombination .section-dark {
  background-color: var(--color-secondary);
  color: white;
}

.post-power-bi-excel-kombination .section-dark h2,
.post-power-bi-excel-kombination .section-dark h3,
.post-power-bi-excel-kombination .section-dark h4 {
  color: white;
}

.post-power-bi-excel-kombination .section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.post-power-bi-excel-kombination .content-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.post-power-bi-excel-kombination .content-section h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
}

.post-power-bi-excel-kombination .content-section h4 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

.post-power-bi-excel-kombination .content-section p {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

/* Content Grid Layout */
.post-power-bi-excel-kombination .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.post-power-bi-excel-kombination .content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-power-bi-excel-kombination .content-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Features Grid */
.post-power-bi-excel-kombination .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-power-bi-excel-kombination .feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-power-bi-excel-kombination .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-power-bi-excel-kombination .feature-card h4 {
  color: white;
  margin-bottom: var(--space-md);
}

.post-power-bi-excel-kombination .feature-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Content with Image */
.post-power-bi-excel-kombination .content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

/* Workflow Steps */
.post-power-bi-excel-kombination .workflow-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-power-bi-excel-kombination .workflow-step {
  background-color: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-normal);
}

.post-power-bi-excel-kombination .workflow-step:hover {
  transform: translateX(5px);
}

.post-power-bi-excel-kombination .workflow-step h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-power-bi-excel-kombination .workflow-step p {
  margin-bottom: 0;
}

.post-power-bi-excel-kombination .workflow-image {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin: var(--space-2xl) 0;
}

/* Conclusion */
.post-power-bi-excel-kombination .conclusion {
  background-color: rgba(0, 0, 0, 0.03);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-accent);
}

.post-power-bi-excel-kombination .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-power-bi-excel-kombination .conclusion p {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-power-bi-excel-kombination .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-padding-desktop) 0;
}

.post-power-bi-excel-kombination .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
  font-size: var(--font-size-h2);
  color: var(--color-text-primary);
}

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

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

.post-power-bi-excel-kombination .related-post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.post-power-bi-excel-kombination .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-power-bi-excel-kombination .related-post-card h3 {
  font-size: var(--font-size-h5);
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
  margin-bottom: 0;
}

.post-power-bi-excel-kombination .related-post-card p {
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
}

.post-power-bi-excel-kombination .related-post-card .btn {
  margin: 0 var(--space-lg) var(--space-lg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-power-bi-excel-kombination .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-power-bi-excel-kombination .features-grid,
  .post-power-bi-excel-kombination .content-grid,
  .post-power-bi-excel-kombination .content-with-image {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-power-bi-excel-kombination .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-power-bi-excel-kombination .post-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .post-power-bi-excel-kombination .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-power-bi-excel-kombination .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-power-bi-excel-kombination .post-hero h1 {
    font-size: var(--font-size-h2);
  }
  
  .post-power-bi-excel-kombination .post-hero .lead {
    font-size: var(--font-size-body);
  }
  
  .post-power-bi-excel-kombination .content-section h2 {
    font-size: var(--font-size-h3);
  }
}

/* Base Styles for Excel VBA Landing Page */
.post-excel-vba-makros-fortgeschrittene {
  background-color: var(--color-background);
}

/* Breadcrumbs Navigation */
.post-excel-vba-makros-fortgeschrittene .breadcrumbs {
  padding: var(--space-md) 0;
  font-family: var(--font-secondary);
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-excel-vba-makros-fortgeschrittene .breadcrumbs a {
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-excel-vba-makros-fortgeschrittene .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-excel-vba-makros-fortgeschrittene .post-hero {
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-surface);
  padding: var(--section-padding-desktop) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-excel-vba-makros-fortgeschrittene .post-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--color-accent);
}

.post-excel-vba-makros-fortgeschrittene .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-excel-vba-makros-fortgeschrittene .post-hero .lead {
  font-family: var(--font-secondary);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-relaxed);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .post-hero .btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-makros-fortgeschrittene .post-hero .btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Content Sections - General */
.post-excel-vba-makros-fortgeschrittene .content-section {
  padding: var(--section-padding-desktop) 0;
}

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

.post-excel-vba-makros-fortgeschrittene .content-section h3 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-excel-vba-makros-fortgeschrittene .content-section h4 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-excel-vba-makros-fortgeschrittene .content-section h5 {
  font-size: var(--font-size-h6);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-excel-vba-makros-fortgeschrittene .content-section p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Automation Section */
.post-excel-vba-makros-fortgeschrittene .automation-section {
  background-color: var(--color-surface);
}

.post-excel-vba-makros-fortgeschrittene .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.post-excel-vba-makros-fortgeschrittene .text-content {
  padding-right: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .image-content {
  position: relative;
}

.post-excel-vba-makros-fortgeschrittene .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Techniques Section */
.post-excel-vba-makros-fortgeschrittene .techniques-section {
  background-color: var(--color-background);
  position: relative;
}

.post-excel-vba-makros-fortgeschrittene .techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-excel-vba-makros-fortgeschrittene .technique-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-vba-makros-fortgeschrittene .technique-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-excel-vba-makros-fortgeschrittene .technique-card h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-excel-vba-makros-fortgeschrittene .feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.post-excel-vba-makros-fortgeschrittene .feature-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
}

.post-excel-vba-makros-fortgeschrittene .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

.post-excel-vba-makros-fortgeschrittene .case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}

.post-excel-vba-makros-fortgeschrittene .case-study-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Benefits Section */
.post-excel-vba-makros-fortgeschrittene .benefits-section {
  background-color: var(--color-surface);
  position: relative;
}

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

.post-excel-vba-makros-fortgeschrittene .benefit-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-excel-vba-makros-fortgeschrittene .benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card p {
  margin-bottom: 0;
}

.post-excel-vba-makros-fortgeschrittene .course-details {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.post-excel-vba-makros-fortgeschrittene .course-details h3 {
  color: white;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-h3);
  text-align: center;
}

.post-excel-vba-makros-fortgeschrittene .details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .detail-item h5 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

.post-excel-vba-makros-fortgeschrittene .detail-item p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.post-excel-vba-makros-fortgeschrittene .cta-container {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .cta-container .btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
}

.post-excel-vba-makros-fortgeschrittene .cta-container .btn-primary {
  background-color: white;
  color: var(--color-primary);
}

.post-excel-vba-makros-fortgeschrittene .cta-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Related Posts Section */
.post-excel-vba-makros-fortgeschrittene .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-padding-desktop) 0;
  text-align: center;
}

.post-excel-vba-makros-fortgeschrittene .related-posts-section h2 {
  margin-bottom: var(--space-md);
}

.post-excel-vba-makros-fortgeschrittene .related-posts-section > .container > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

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

.post-excel-vba-makros-fortgeschrittene .related-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);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.post-excel-vba-makros-fortgeschrittene .related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-excel-vba-makros-fortgeschrittene .card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-excel-vba-makros-fortgeschrittene .card-content h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-excel-vba-makros-fortgeschrittene .card-content p {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.post-excel-vba-makros-fortgeschrittene .card-content .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-excel-vba-makros-fortgeschrittene .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .techniques-grid,
  .post-excel-vba-makros-fortgeschrittene .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-excel-vba-makros-fortgeschrittene .section-content,
  .post-excel-vba-makros-fortgeschrittene .case-study {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-excel-vba-makros-fortgeschrittene .text-content {
    padding-right: 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-excel-vba-makros-fortgeschrittene .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero h1 {
    font-size: var(--font-size-h2);
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero .lead {
    font-size: var(--font-size-h6);
  }
  
  .post-excel-vba-makros-fortgeschrittene .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .techniques-grid,
  .post-excel-vba-makros-fortgeschrittene .benefits-grid,
  .post-excel-vba-makros-fortgeschrittene .details-grid,
  .post-excel-vba-makros-fortgeschrittene .related-posts-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-excel-vba-makros-fortgeschrittene .cta-container {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .post-excel-vba-makros-fortgeschrittene .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Base Styles for Excel Finance Page */
.post-excel-vba-makros-fortgeschrittene {
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-excel-vba-makros-fortgeschrittene .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-excel-vba-makros-fortgeschrittene .breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.post-excel-vba-makros-fortgeschrittene .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-excel-vba-makros-fortgeschrittene .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--section-padding-desktop) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-excel-vba-makros-fortgeschrittene .post-hero h1 {
  color: white;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-h1);
  line-height: 1.2;
}

.post-excel-vba-makros-fortgeschrittene .post-hero .lead {
  font-size: var(--font-size-h5);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.post-excel-vba-makros-fortgeschrittene .hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Content Sections - General */
.post-excel-vba-makros-fortgeschrittene .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-excel-vba-makros-fortgeschrittene .content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.post-excel-vba-makros-fortgeschrittene .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.post-excel-vba-makros-fortgeschrittene .text-content {
  flex: 1;
}

.post-excel-vba-makros-fortgeschrittene .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-excel-vba-makros-fortgeschrittene .image-container img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Finance Tools Section */
.post-excel-vba-makros-fortgeschrittene .finance-tools-section {
  background-color: var(--color-surface);
}

.post-excel-vba-makros-fortgeschrittene .feature-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .feature-list li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
}

/* Dashboard Section */
.post-excel-vba-makros-fortgeschrittene .dashboard-section {
  background-color: var(--color-background);
}

.post-excel-vba-makros-fortgeschrittene .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-h6);
}

.post-excel-vba-makros-fortgeschrittene .benefit-card p {
  margin-bottom: 0;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
}

/* Planning Section */
.post-excel-vba-makros-fortgeschrittene .planning-section {
  background-color: var(--color-surface);
}

.post-excel-vba-makros-fortgeschrittene .takeaways-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-excel-vba-makros-fortgeschrittene .takeaways-list li {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
}

.post-excel-vba-makros-fortgeschrittene .final-cta {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  text-align: center;
}

.post-excel-vba-makros-fortgeschrittene .final-cta p {
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-medium);
}

/* Related Posts Section */
.post-excel-vba-makros-fortgeschrittene .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-padding-desktop) 0;
}

.post-excel-vba-makros-fortgeschrittene .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.post-excel-vba-makros-fortgeschrittene .related-post {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-excel-vba-makros-fortgeschrittene .related-post h3 {
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-excel-vba-makros-fortgeschrittene .related-post p {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.post-excel-vba-makros-fortgeschrittene .related-post .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-excel-vba-makros-fortgeschrittene .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .related-posts-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .content-wrapper {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .post-excel-vba-makros-fortgeschrittene .content-wrapper.reverse {
    flex-direction: column;
  }
  
  .post-excel-vba-makros-fortgeschrittene .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .post-excel-vba-makros-fortgeschrittene .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-excel-vba-makros-fortgeschrittene .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero h1 {
    font-size: var(--font-size-h2);
  }
  
  .post-excel-vba-makros-fortgeschrittene .post-hero .lead {
    font-size: var(--font-size-body);
  }
  
  .post-excel-vba-makros-fortgeschrittene .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .post-excel-vba-makros-fortgeschrittene .hero-cta .btn {
    width: 100%;
  }
  
  .post-excel-vba-makros-fortgeschrittene .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-excel-vba-makros-fortgeschrittene .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

.privacy-page {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-3xl);
  margin: var(--space-3xl) auto;
}

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

.privacy-page__header h1 {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

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

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-md);
}

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

.privacy-page__list li {
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl);
    margin: var(--space-xl) auto;
  }
  
  .privacy-page__section h2 {
    font-size: var(--font-size-h5);
  }
}

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

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

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

.terms-page__updated {
  font-family: var(--font-secondary);
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.terms-page__list {
  font-family: var(--font-secondary);
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

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

@media (max-width: 1023px) {
  .terms-page {
    padding: var(--space-2xl) 0;
  }
  
  .terms-page__content {
    padding: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__content {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
  }
  
  .terms-page__section h2 {
    font-size: var(--font-size-h5);
  }
}

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

.cookie-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
}

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

.cookie-page__title {
  color: var(--color-primary);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.cookie-page__updated {
  font-size: var(--font-size-small);
  color: var(--color-text-tertiary);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
}

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

.cookie-page__section-title {
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
}

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

.cookie-page__subsection-title {
  color: var(--color-text-primary);
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-sm);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }

  .cookie-page__container {
    padding: var(--space-xl) var(--space-lg);
  }

  .cookie-page__title {
    font-size: var(--font-size-h3);
  }

  .cookie-page__section-title {
    font-size: var(--font-size-h5);
  }

  .cookie-page__subsection {
    padding-left: var(--space-md);
  }
}

/* Thank You Page Styles */
.thank-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  background-color: var(--color-background);
}

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

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

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

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

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

.thank-page__message p {
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.thank-page__highlight {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

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

.thank-page__actions .btn {
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md) var(--space-2xl);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--font-size-h3);
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__message {
    margin-bottom: var(--space-xl);
  }
}

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

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

  .error-404__code {
    font-family: var(--font-primary);
    font-size: 10rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-shadow: 2px 2px 0 var(--color-highlight);
    position: relative;
  }

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

  .error-404__title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
  }

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

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

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

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

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

  .error-404__suggestion {
    font-size: var(--font-size-small);
    color: var(--color-text-tertiary);
    margin-bottom: 0;
  }

  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-3xl) var(--space-md);
    }
    
    .error-404__code {
      font-size: 7rem;
    }
    
    .error-404__title {
      font-size: var(--font-size-h4);
    }
    
    .error-404__message {
      font-size: var(--font-size-small);
    }
    
    .error-404__button {
      padding: var(--space-sm) var(--space-lg);
    }
  }
