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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0a0f1e;
  --color-bg-tertiary: #0a0f1e;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card: #0a0f1e;
  --color-text-primary: #ffffff;
  --color-text-primary-light: #ffffff;
  --color-text-primary-dark: #e0e5f2;
  --color-text-secondary-light: #e2e8f0;
  --color-text-secondary-dark: #e8ecf1;
  --color-text-muted-dark: #e2e6ec;
  --color-text-muted-light: #cbd5e1;

  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;

  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary-dark);
  background: var(--color-bg-secondary);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  font-weight: 400;
}

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

button, .btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  display: inline-block;
}

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

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

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

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

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

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

section {
  padding: var(--space-3xl) 0;
}

.hero-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
}

.hero-dark h1 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
}

.hero-dark p {
  color: var(--color-text-secondary-light);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-dark);
}

.section-light h2 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.section-light p {
  color: var(--color-text-secondary-dark);
}

.section-light-muted {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-dark);
}

.section-light-muted h2 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.section-dark-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
}

.section-dark-accent h2 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
}

.section-dark-accent p {
  color: var(--color-text-secondary-light);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

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

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

.card-dark {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-light);
}

.card-dark h3 {
  color: var(--color-text-primary-light);
}

.card-dark p {
  color: var(--color-text-secondary-light);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

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

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

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

.gap-sm {
  gap: var(--space-sm);
}

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

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
}

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

.badge-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-accent-hover);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

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

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

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

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

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

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

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

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

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

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

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

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

.underline-primary {
  position: relative;
  display: inline-block;
}

.underline-primary::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-dark-accent .border-top {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section-dark-accent .border-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .hero-dark {
    padding: var(--space-2xl) 0;
  }

  .section-dark-accent {
    padding: var(--space-2xl) 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .flex-between {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  button, .btn {
    padding: var(--space-md) var(--space-md);
    font-size: 0.95rem;
  }

  section {
    padding: var(--space-xl) 0;
  }

  .hero-dark {
    padding: var(--space-xl) 0;
  }

  .card {
    padding: var(--space-md);
  }
}
.header-energy-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  z-index: 100;
  width: 100%;
}

.header-energy-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: clamp(1rem, 2vw, 2rem);
}

.header-energy-forge-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-energy-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.header-energy-forge-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary-light);
  letter-spacing: -0.5px;
}

.header-energy-forge-brand:hover .header-energy-forge-logo-text {
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.header-energy-forge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-energy-forge-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary-light);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
  padding: 0.5rem 0;
}

.header-energy-forge-nav-link:hover {
  color: var(--color-accent);
}

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

.header-energy-forge-nav-link:hover::after {
  width: 100%;
}

.header-energy-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-energy-forge-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-energy-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  flex-shrink: 0;
}

.header-energy-forge-hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-energy-forge-mobile-toggle[aria-expanded="true"] .header-energy-forge-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-energy-forge-mobile-toggle[aria-expanded="true"] .header-energy-forge-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-energy-forge-mobile-toggle[aria-expanded="true"] .header-energy-forge-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-energy-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  border-left: 1px solid var(--color-border);
}

.header-energy-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-energy-forge-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  height: 70px;
}

.header-energy-forge-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-primary-light);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-energy-forge-mobile-close:hover {
  color: var(--color-accent);
}

.header-energy-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.header-energy-forge-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-primary-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.header-energy-forge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-accent);
  padding-left: 2rem;
}

.header-energy-forge-mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  transition: all var(--transition-base);
  margin: 1rem;
  display: block;
}

.header-energy-forge-mobile-cta:hover {
  background: var(--color-accent-hover);
  transform: none;
}

@media (min-width: 768px) {
  .header-energy-forge-desktop-nav {
    display: flex;
  }

  .header-energy-forge-cta-button {
    display: inline-block;
  }

  .header-energy-forge-mobile-toggle {
    display: none;
  }

  .header-energy-forge-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-energy-forge-container {
    height: 60px;
  }

  .header-energy-forge-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-energy-forge-logo-text {
    font-size: 1.1rem;
  }
}

    

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

html, body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary-index {
  background: var(--color-primary);
  color: #ffffff;
}

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

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

.btn-secondary-index:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.energy-transition-hub {
  width: 100%;
}

.hero-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.hero-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
}

.hero-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: clamp(2rem, 3vw, 3rem);
  border-top: 1px solid var(--color-border);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  flex: 1 1 150px;
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }

  .hero-text-index,
  .hero-image-index {
    flex: 1 1 100%;
  }

  .hero-image-index {
    min-height: 250px;
    max-height: 350px;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.about-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.about-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.about-description-index,
.about-detail-index,
.about-emphasis-index {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-emphasis-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-primary);
}

.about-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
}

.about-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .about-content-index {
    flex-direction: column;
  }

  .about-text-index,
  .about-image-index {
    flex: 1 1 100%;
  }

  .about-image-index {
    min-height: 250px;
    max-height: 350px;
  }
}

.benefits-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.benefits-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
}

.benefits-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.benefit-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
}

.benefit-card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.benefit-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefit-card-index {
    flex: 1 1 100%;
  }
}

.how-it-works-section-index {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.how-it-works-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.how-it-works-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
}

.how-it-works-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.process-step-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  position: relative;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.8;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-index {
    flex: 1 1 100%;
  }
}

.blog-preview-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-preview-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.blog-preview-header-index {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: clamp(0.35rem, 0.5vw, 0.5rem) clamp(1rem, 1.5vw, 1.5rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.blog-preview-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.blog-preview-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.featured-card-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.featured-card-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.featured-card-index:hover .featured-card-image-index img {
  transform: scale(1.05);
}

.featured-card-content-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.featured-card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.featured-card-link-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  align-self: flex-start;
}

.featured-card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.blog-preview-cta-index {
  display: flex;
  justify-content: center;
  padding-top: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
  }
}

.faq-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.faq-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  transition: var(--transition-base);
}

.faq-item-index:hover {
  box-shadow: var(--shadow-md);
}

.faq-question-index {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.testimonials-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonials-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
}

.testimonials-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  transition: var(--transition-base);
}

.testimonial-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.testimonial-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: clamp(0.75rem, 1vw, 1rem);
}

.author-name-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .testimonial-card-index {
    flex: 1 1 100%;
  }
}

.cta-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.cta-box-index {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: var(--color-primary);
  align-self: center;
}

.cta-box-index .btn-primary-index:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-hover);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  flex: 1 1 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex: 1 1 auto;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
  border-radius: 6px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .cookie-banner-buttons {
    flex: 1 1 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 1024px) {
  .benefits-cards-index,
  .how-it-works-steps-index,
  .featured-cards-index {
    flex-direction: column;
    align-items: center;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-about p {
  max-width: 480px;
}

.footer-about p:first-of-type {
  margin-bottom: 0;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}

.footer a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-base) ease;
  display: inline-block;
}

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

.footer-copyright {
  border-top: 1px solid var(--color-border-light);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 280px;
  }

  .footer-nav {
    flex: 1 1 180px;
  }

  .footer-contact {
    flex: 1 1 220px;
  }

  .footer-legal {
    flex: 1 1 160px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.625rem, 1.5vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 5vw, 4.5rem);
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-nav {
    flex: 0 1 200px;
  }

  .footer-contact {
    flex: 0 1 240px;
  }

  .footer-legal {
    flex: 0 1 180px;
  }
}
    

.category-page-energiewende {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
}

.hero-section-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.hero-content-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-header-energiewende {
  text-align: center;
}

.hero-title-energiewende {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-energiewende {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-accent);
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}

.hero-description-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.posts-section-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.posts-content-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.posts-header-energiewende {
  text-align: center;
}

.posts-title-energiewende {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0.75rem 0 0 0;
  line-height: 1.5;
}

.posts-grid-energiewende {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-energiewende {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) ease;
}

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

.card-image-energiewende {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0;
  display: block;
}

.card-title-energiewende {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.card-meta-energiewende {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.card-meta-item-energiewende {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-secondary-dark);
}

.card-meta-item-energiewende i {
  color: var(--color-accent);
  font-size: 0.85em;
}

.card-link-energiewende {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base) ease;
  text-align: center;
  width: fit-content;
}

.card-link-energiewende:hover {
  background: var(--color-accent-hover);
  text-decoration: underline;
}

.insight-section-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.insight-content-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.insight-quote-energiewende {
  max-width: 800px;
  width: 100%;
}

.insight-blockquote-energiewende {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.insight-quote-text-energiewende {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--color-text-primary-dark);
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-quote-footer-energiewende {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
}

.insight-context-energiewende {
  max-width: 800px;
  width: 100%;
}

.insight-heading-energiewende {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-text-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.insight-text-energiewende:last-child {
  margin-bottom: 0;
}

.concepts-section-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.concepts-content-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.concepts-title-energiewende {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-grid-energiewende {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.concept-item-energiewende {
  flex: 1 1 260px;
  max-width: 350px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-text-secondary-dark);
  border-opacity: 0.2;
}

.concept-name-energiewende {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.75rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-definition-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .posts-grid-energiewende {
    flex-direction: column;
    align-items: stretch;
  }

  .card-energiewende {
    flex: 1 1 100%;
    max-width: none;
  }

  .concepts-grid-energiewende {
    flex-direction: column;
    align-items: stretch;
  }

  .concept-item-energiewende {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-energiewende {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .card-energiewende {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .concepts-grid-energiewende {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .concept-item-energiewende {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .posts-grid-energiewende {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-energiewende {
    flex: 1 1 calc(25% - 1.875rem);
  }

  .concepts-grid-energiewende {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .concept-item-energiewende {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.main-energiepreise-wettbewerbsfaehigkeit {
  width: 100%;
  overflow: hidden;
}

.hero-section-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-energiepreise-wettbewerbsfaehigkeit a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-energiepreise-wettbewerbsfaehigkeit a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-energiepreise-wettbewerbsfaehigkeit span {
  color: var(--color-text-muted-light);
}

.hero-content-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
}

.hero-meta-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
}

.meta-item-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-energiepreise-wettbewerbsfaehigkeit i {
  color: var(--color-primary);
  width: 18px;
  text-align: center;
}

.hero-image-energiepreise-wettbewerbsfaehigkeit {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.intro-section-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-energiepreise-wettbewerbsfaehigkeit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-energiepreise-wettbewerbsfaehigkeit {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-two-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-four-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-energiepreise-wettbewerbsfaehigkeit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-energiepreise-wettbewerbsfaehigkeit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit .content-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
}

.content-section-two-energiepreise-wettbewerbsfaehigkeit .content-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-light);
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit .content-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
}

.content-section-four-energiepreise-wettbewerbsfaehigkeit .content-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-light);
}

.content-paragraph-energiepreise-wettbewerbsfaehigkeit {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit .content-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
}

.content-section-two-energiepreise-wettbewerbsfaehigkeit .content-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-light);
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit .content-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
}

.content-section-four-energiepreise-wettbewerbsfaehigkeit .content-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-light);
}

.content-image-energiepreise-wettbewerbsfaehigkeit {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.highlight-box-energiepreise-wettbewerbsfaehigkeit {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit .highlight-box-energiepreise-wettbewerbsfaehigkeit {
  background: rgba(var(--color-primary-rgb, 99, 102, 241), 0.1);
  border-left: 4px solid var(--color-primary);
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit .highlight-box-energiepreise-wettbewerbsfaehigkeit {
  background: rgba(var(--color-primary-rgb, 99, 102, 241), 0.1);
  border-left: 4px solid var(--color-primary);
}

.highlight-title-energiepreise-wettbewerbsfaehigkeit {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit .highlight-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit .highlight-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
}

.highlight-list-energiepreise-wettbewerbsfaehigkeit {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list-energiepreise-wettbewerbsfaehigkeit li {
  padding: 0.5rem 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-section-one-energiepreise-wettbewerbsfaehigkeit .highlight-list-energiepreise-wettbewerbsfaehigkeit li {
  color: var(--color-text-secondary-dark);
}

.content-section-three-energiepreise-wettbewerbsfaehigkeit .highlight-list-energiepreise-wettbewerbsfaehigkeit li {
  color: var(--color-text-secondary-dark);
}

.conclusion-section-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
}

.conclusion-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-quote-energiepreise-wettbewerbsfaehigkeit {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(var(--color-primary-rgb, 99, 102, 241), 0.08);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.quote-text-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1vw, 1rem);
  display: block;
  font-style: normal;
}

.conclusion-paragraph-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-box-energiepreise-wettbewerbsfaehigkeit {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-energiepreise-wettbewerbsfaehigkeit {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-energiepreise-wettbewerbsfaehigkeit {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary-energiepreise-wettbewerbsfaehigkeit {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  display: inline-block;
}

.btn-primary-energiepreise-wettbewerbsfaehigkeit:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-box-energiepreise-wettbewerbsfaehigkeit {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(var(--color-primary-rgb, 99, 102, 241), 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.disclaimer-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-light);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-title-energiepreise-wettbewerbsfaehigkeit i {
  color: var(--color-primary);
  font-size: 1.3em;
}

.disclaimer-text-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-energiepreise-wettbewerbsfaehigkeit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-energiepreise-wettbewerbsfaehigkeit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-energiepreise-wettbewerbsfaehigkeit {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

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

.related-image-energiepreise-wettbewerbsfaehigkeit {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-energiepreise-wettbewerbsfaehigkeit {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-primary-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-energiepreise-wettbewerbsfaehigkeit {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

@media (max-width: 768px) {
  .breadcrumbs-energiepreise-wettbewerbsfaehigkeit {
    font-size: 0.8rem;
  }

  .intro-content-energiepreise-wettbewerbsfaehigkeit {
    flex-direction: column;
  }

  .intro-text-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 350px;
  }

  .content-wrapper-energiepreise-wettbewerbsfaehigkeit {
    flex-direction: column;
  }

  .content-text-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 350px;
  }

  .related-card-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .intro-content-energiepreise-wettbewerbsfaehigkeit {
    flex-direction: column;
  }

  .intro-text-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 350px;
  }

  .content-wrapper-energiepreise-wettbewerbsfaehigkeit {
    flex-direction: column;
  }

  .content-text-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 350px;
  }

  .related-card-energiepreise-wettbewerbsfaehigkeit {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.main-energiewende-kosten-deutschland {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

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

.hero-section-energiewende-kosten-deutschland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-energiewende-kosten-deutschland {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-energiewende-kosten-deutschland {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.hero-meta-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-energiewende-kosten-deutschland i {
  color: var(--color-accent);
}

.hero-image-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-energiewende-kosten-deutschland a {
  color: var(--color-accent);
  transition: var(--transition-base);
}

.breadcrumbs-energiewende-kosten-deutschland a:hover {
  color: var(--color-accent-hover);
}

.breadcrumbs-energiewende-kosten-deutschland span {
  color: var(--color-text-muted);
}

.intro-section-energiewende-kosten-deutschland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.intro-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.intro-image-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.investments-section-energiewende-kosten-deutschland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.investments-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.investments-text-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.investments-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.investments-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.investments-breakdown-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.breakdown-item-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-bottom: 1px solid var(--color-border);
}

.breakdown-item-energiewende-kosten-deutschland:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.breakdown-label-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  flex: 1;
}

.breakdown-value-energiewende-kosten-deutschland {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

.investments-image-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.investments-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.subsidies-section-energiewende-kosten-deutschland {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.subsidies-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.subsidies-image-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.subsidies-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.subsidies-text-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.subsidies-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.subsidies-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.highlight-box-energiewende-kosten-deutschland {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-title-energiewende-kosten-deutschland {
  display: block;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.highlight-text-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.impacts-section-energiewende-kosten-deutschland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impacts-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impacts-text-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.impacts-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.impacts-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.impacts-image-energiewende-kosten-deutschland {
  flex: 1 1 50%;
  max-width: 50%;
}

.impacts-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.achievements-section-energiewende-kosten-deutschland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.achievements-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.achievements-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

.achievements-grid-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.achievement-card-energiewende-kosten-deutschland {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: var(--transition-base);
}

.achievement-card-energiewende-kosten-deutschland:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.achievement-icon-energiewende-kosten-deutschland {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
}

.achievement-name-energiewende-kosten-deutschland {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.achievement-desc-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.achievements-note-energiewende-kosten-deutschland {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.note-text-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.outlook-section-energiewende-kosten-deutschland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.outlook-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.outlook-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.3;
}

.outlook-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.outlook-quote-energiewende-kosten-deutschland {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 2vw, 2.5rem) 0;
}

.quote-text-energiewende-kosten-deutschland {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.conclusion-section-energiewende-kosten-deutschland {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.3;
}

.conclusion-paragraph-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.cta-box-energiewende-kosten-deutschland {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(1.5rem, 2vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-energiewende-kosten-deutschland {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.cta-text-energiewende-kosten-deutschland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.cta-button-energiewende-kosten-deutschland {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-accent);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.cta-button-energiewende-kosten-deutschland:hover {
  background: #f3f4f6;
  color: var(--color-accent-hover);
}

.related-section-energiewende-kosten-deutschland {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-energiewende-kosten-deutschland {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

.related-cards-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-energiewende-kosten-deutschland {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.related-card-energiewende-kosten-deutschland:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.related-image-energiewende-kosten-deutschland {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-energiewende-kosten-deutschland img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-energiewende-kosten-deutschland {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-post-title-energiewende-kosten-deutschland {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.4;
}

.related-post-desc-energiewende-kosten-deutschland {
  font-size: clamp(0.825rem, 0.95vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-link-energiewende-kosten-deutschland {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-link-energiewende-kosten-deutschland:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.disclaimer-section-energiewende-kosten-deutschland {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-energiewende-kosten-deutschland {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.disclaimer-title-energiewende-kosten-deutschland {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.disclaimer-text-energiewende-kosten-deutschland {
  font-size: clamp(0.825rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-energiewende-kosten-deutschland,
  .intro-content-energiewende-kosten-deutschland,
  .investments-content-energiewende-kosten-deutschland,
  .subsidies-content-energiewende-kosten-deutschland,
  .impacts-content-energiewende-kosten-deutschland {
    flex-direction: column;
  }

  .hero-text-energiewende-kosten-deutschland,
  .hero-image-energiewende-kosten-deutschland,
  .intro-text-energiewende-kosten-deutschland,
  .intro-image-energiewende-kosten-deutschland,
  .investments-text-energiewende-kosten-deutschland,
  .investments-image-energiewende-kosten-deutschland,
  .subsidies-text-energiewende-kosten-deutschland,
  .subsidies-image-energiewende-kosten-deutschland,
  .impacts-text-energiewende-kosten-deutschland,
  .impacts-image-energiewende-kosten-deutschland {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-energiewende-kosten-deutschland {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .meta-item-energiewende-kosten-deutschland {
    font-size: 0.8rem;
  }

  .achievements-grid-energiewende-kosten-deutschland {
    flex-direction: column;
    align-items: stretch;
  }

  .achievement-card-energiewende-kosten-deutschland {
    max-width: 100%;
  }

  .related-cards-energiewende-kosten-deutschland {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-energiewende-kosten-deutschland {
    max-width: 100%;
  }

  .breadcrumbs-energiewende-kosten-deutschland {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content-energiewende-kosten-deutschland,
  .intro-content-energiewende-kosten-deutschland,
  .investments-content-energiewende-kosten-deutschland,
  .subsidies-content-energiewende-kosten-deutschland,
  .impacts-content-energiewende-kosten-deutschland {
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .achievements-grid-energiewende-kosten-deutschland {
    gap: clamp(1rem, 2.5vw, 2rem);
  }

  .achievement-card-energiewende-kosten-deutschland {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-cards-energiewende-kosten-deutschland {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .related-card-energiewende-kosten-deutschland {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-energiewende-kosten-deutschland {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-energiewende-kosten-deutschland,
  .investments-section-energiewende-kosten-deutschland,
  .subsidies-section-energiewende-kosten-deutschland,
  .impacts-section-energiewende-kosten-deutschland {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .achievements-section-energiewende-kosten-deutschland,
  .outlook-section-energiewende-kosten-deutschland,
  .conclusion-section-energiewende-kosten-deutschland {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-energiewende-kosten-deutschland,
  .disclaimer-section-energiewende-kosten-deutschland {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.main-makrooekonomische-effekte-energiewende {
  width: 100%;
  overflow: hidden;
}

.hero-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.hero-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  flex-wrap: wrap;
}

.meta-item-makrooekonomische-effekte-energiewende {
  display: inline;
}

.meta-divider-makrooekonomische-effekte-energiewende {
  display: inline;
}

.breadcrumbs-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-makrooekonomische-effekte-energiewende a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-makrooekonomische-effekte-energiewende a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-makrooekonomische-effekte-energiewende span {
  color: var(--color-text-muted-dark);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block;
}

.intro-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.intro-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-section-1-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-1-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-1-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-1-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-1-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.content-title-1-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-1-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-section-2-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-2-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-2-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-2-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-2-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.content-title-2-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-2-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-section-3-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-3-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-3-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-3-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-3-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.content-title-3-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-3-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-section-4-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-4-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-4-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-4-makrooekonomische-effekte-energiewende {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-4-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.content-title-4-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-4-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.summary-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.summary-content-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.summary-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-boxes-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.summary-box-makrooekonomische-effekte-energiewende {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 280px;
  max-width: 500px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.summary-box-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-list-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list-item-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.summary-list-item-makrooekonomische-effekte-energiewende::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.summary-conclusion-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.summary-text-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
}

.cta-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-makrooekonomische-effekte-energiewende {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.btn-primary-makrooekonomische-effekte-energiewende {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary-makrooekonomische-effekte-energiewende:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-makrooekonomische-effekte-energiewende {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-makrooekonomische-effekte-energiewende {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.related-card-makrooekonomische-effekte-energiewende:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-makrooekonomische-effekte-energiewende {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-makrooekonomische-effekte-energiewende {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

.related-card-link-makrooekonomische-effekte-energiewende {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  margin-top: auto;
}

.related-card-link-makrooekonomische-effekte-energiewende:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-makrooekonomische-effekte-energiewende {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.disclaimer-title-makrooekonomische-effekte-energiewende {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-makrooekonomische-effekte-energiewende {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-makrooekonomische-effekte-energiewende {
    flex-direction: column;
  }

  .hero-text-makrooekonomische-effekte-energiewende,
  .hero-image-makrooekonomische-effekte-energiewende {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-makrooekonomische-effekte-energiewende {
    flex-direction: column;
  }

  .intro-text-makrooekonomische-effekte-energiewende,
  .intro-image-makrooekonomische-effekte-energiewende {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-1-makrooekonomische-effekte-energiewende,
  .content-wrapper-2-makrooekonomische-effekte-energiewende,
  .content-wrapper-3-makrooekonomische-effekte-energiewende,
  .content-wrapper-4-makrooekonomische-effekte-energiewende {
    flex-direction: column;
  }

  .content-text-1-makrooekonomische-effekte-energiewende,
  .content-image-1-makrooekonomische-effekte-energiewende,
  .content-text-2-makrooekonomische-effekte-energiewende,
  .content-image-2-makrooekonomische-effekte-energiewende,
  .content-text-3-makrooekonomische-effekte-energiewende,
  .content-image-3-makrooekonomische-effekte-energiewende,
  .content-text-4-makrooekonomische-effekte-energiewende,
  .content-image-4-makrooekonomische-effekte-energiewende {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .summary-box-makrooekonomische-effekte-energiewende {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-makrooekonomische-effekte-energiewende {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .related-card-makrooekonomische-effekte-energiewende {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

html, body {
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
  background: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-subventionen-erneuerbare-energien {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-subventionen-erneuerbare-energien {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-muted-light);
  font-weight: 500;
}

.meta-divider-subventionen-erneuerbare-energien {
  color: var(--color-border);
}

.hero-image-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-subventionen-erneuerbare-energien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 450px;
}

.breadcrumbs-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-subventionen-erneuerbare-energien a {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-primary);
  transition: var(--transition-base);
}

.breadcrumbs-subventionen-erneuerbare-energien a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-subventionen-erneuerbare-energien span {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-muted-light);
}

.intro-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-block-subventionen-erneuerbare-energien {
  flex: 1 1 65%;
  max-width: 65%;
}

.intro-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-subventionen-erneuerbare-energien {
  flex: 1 1 35%;
  max-width: 35%;
}

.highlight-box-subventionen-erneuerbare-energien {
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.highlight-title-subventionen-erneuerbare-energien {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.highlight-list-subventionen-erneuerbare-energien {
  list-style: none;
}

.highlight-item-subventionen-erneuerbare-energien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.6;
}

.highlight-item-subventionen-erneuerbare-energien:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.content-section-one-subventionen-erneuerbare-energien {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-subventionen-erneuerbare-energien img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 450px;
}

.content-section-two-subventionen-erneuerbare-energien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.programs-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.programs-content-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.programs-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  text-align: center;
  line-height: 1.3;
}

.programs-intro-subventionen-erneuerbare-energien {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.programs-cards-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.program-card-subventionen-erneuerbare-energien {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: var(--transition-base);
}

.program-card-subventionen-erneuerbare-energien:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-title-subventionen-erneuerbare-energien {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.4;
}

.card-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

.impact-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-wrapper-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-text-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.impact-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.impact-image-subventionen-erneuerbare-energien {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-subventionen-erneuerbare-energien img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 450px;
}

.future-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.future-content-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.future-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.3;
}

.future-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

.future-stats-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-box-subventionen-erneuerbare-energien {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 150px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.stat-number-subventionen-erneuerbare-energien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-subventionen-erneuerbare-energien {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-secondary-light);
  font-weight: 500;
}

.quote-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-subventionen-erneuerbare-energien {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.quote-text-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-text-primary-dark);
  line-height: 1.6;
  font-weight: 500;
}

.quote-author-subventionen-erneuerbare-energien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  font-weight: 500;
}

.disclaimer-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-subventionen-erneuerbare-energien {
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-subventionen-erneuerbare-energien {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

.related-section-subventionen-erneuerbare-energien {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-subventionen-erneuerbare-energien {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  text-align: center;
  line-height: 1.3;
}

.related-cards-subventionen-erneuerbare-energien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-subventionen-erneuerbare-energien {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-subventionen-erneuerbare-energien:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.related-image-subventionen-erneuerbare-energien {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-image-subventionen-erneuerbare-energien img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-text-subventionen-erneuerbare-energien {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-grow: 1;
}

.related-card-title-subventionen-erneuerbare-energien {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.4;
}

.related-card-text-subventionen-erneuerbare-energien {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

.related-link-subventionen-erneuerbare-energien {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-base);
  margin-top: auto;
}

.related-link-subventionen-erneuerbare-energien:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-subventionen-erneuerbare-energien,
  .intro-content-subventionen-erneuerbare-energien,
  .content-wrapper-subventionen-erneuerbare-energien,
  .impact-wrapper-subventionen-erneuerbare-energien {
    flex-direction: column;
  }

  .hero-text-subventionen-erneuerbare-energien,
  .hero-image-subventionen-erneuerbare-energien,
  .intro-text-block-subventionen-erneuerbare-energien,
  .intro-highlight-subventionen-erneuerbare-energien,
  .content-text-subventionen-erneuerbare-energien,
  .content-image-subventionen-erneuerbare-energien,
  .impact-text-subventionen-erneuerbare-energien,
  .impact-image-subventionen-erneuerbare-energien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .program-card-subventionen-erneuerbare-energien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stat-box-subventionen-erneuerbare-energien {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .related-card-subventionen-erneuerbare-energien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-subventionen-erneuerbare-energien,
  .content-image-subventionen-erneuerbare-energien img,
  .impact-image-subventionen-erneuerbare-energien img {
    max-height: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .program-card-subventionen-erneuerbare-energien {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .related-card-subventionen-erneuerbare-energien {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: calc(50% - 1.25rem);
  }
}

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

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.energiewende-platform-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block !important;
}

.hero-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-header-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-about {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.foundation-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.foundation-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 1vw, 1rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.foundation-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.foundation-split-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .foundation-split-about {
    flex-direction: row;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.foundation-text-block-about {
  flex: 1 1 45%;
  min-width: 0;
}

.foundation-text-block-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.foundation-text-block-about p:last-child {
  margin-bottom: 0;
}

.foundation-image-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  min-height: 250px;
  max-height: 400px;
}

.expertise-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expertise-icon-about {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.expertise-card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.expertise-card-text-about {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.approach-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 1vw, 1rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.approach-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-about {
  flex: 1;
  min-width: 0;
}

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.impact-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.impact-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.impact-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.impact-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  object-fit: cover;
  max-height: 400px;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

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

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-accent);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .foundation-split-about {
    flex-direction: column;
  }

  .foundation-text-block-about {
    flex: 1 1 100%;
  }

  .foundation-image-about {
    flex: 1 1 100%;
    min-height: 200px;
  }

  .process-step-about {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number-about {
    font-size: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section-about {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
  }

  .expertise-cards-about {
    gap: clamp(1.25rem, 2vw, 1.75rem);
  }

  .expertise-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .expertise-cards-about {
    gap: clamp(1.5rem, 2vw, 2.5rem);
  }

  .expertise-card-about {
    flex: 1 1 30%;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-hero p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.375rem var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-card p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
}

.portfolio-card-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted-dark);
  font-weight: 500;
  margin: 0;
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.2;
  font-weight: 700;
}

.portfolio-cta p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-2xl) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  background-color: var(--color-accent);
  color: var(--color-text-primary-dark);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  border: 2px solid var(--color-accent);
  cursor: pointer;
}

.portfolio-cta-button:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .portfolio-hero {
    padding: 4rem 2rem;
  }

  .portfolio-projects {
    padding: 4rem 2rem;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem 3rem;
  }

  .portfolio-projects {
    padding: 5rem 3rem;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card {
    display: flex;
    flex-direction: column;
  }

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-card:nth-child(3) {
    grid-column: 1 / 2;
  }

  .portfolio-card:nth-child(4) {
    grid-column: 2 / 3;
  }

  .portfolio-cta {
    padding: 6rem 3rem;
  }

  .portfolio-cta-content {
    max-width: 800px;
  }
}

@media (min-width: 1440px) {
  .portfolio-hero {
    padding: 6rem 4rem;
  }

  .portfolio-projects {
    padding: 6rem 4rem;
  }

  .portfolio-cta {
    padding: 7rem 4rem;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }

  .services-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  font-weight: 400;
}

.service-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
}

.service-details li {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
  line-height: 1.5;
}

.service-details li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .services-content {
    padding: 4rem var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: 5rem var(--space-xl);
  }

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

.services-cta {
  background-color: var(--color-bg-dark-accent);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  font-weight: 400;
}

.services-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem var(--space-lg);
  }

  .services-cta-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem var(--space-xl);
  }
}

.energy-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
}

.energy-docs main {
  width: 100%;
}

.energy-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.energy-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.energy-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.energy-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-3xl);
  font-style: italic;
}

.energy-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.energy-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.energy-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  list-style-position: outside;
}

.energy-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.energy-docs .section {
  margin-bottom: var(--space-3xl);
}

.energy-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
}

.energy-docs .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-top: 0;
}

.energy-docs .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.energy-docs .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .energy-docs .content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .energy-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .energy-docs h2 {
    margin-top: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .energy-docs .container {
    padding: 0 var(--space-xl);
  }

  .energy-docs .content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-md);
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: iconPulse 0.8s ease-out;
}

@keyframes iconPulse {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-icon svg {
  width: 60px;
  height: 60px;
  stroke-width: 2;
}

.thank-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  letter-spacing: 0.3px;
}

.thank-subtext {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 1rem);
  font-family: var(--font-primary);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  margin-top: var(--space-md);
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .thank-wrapper {
    padding: var(--space-2xl);
    gap: var(--space-xl);
  }

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
  }

  .thank-icon svg {
    width: 70px;
    height: 70px;
  }

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

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-xl);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .thank-wrapper {
    padding: var(--space-3xl);
    gap: var(--space-2xl);
    border-radius: var(--radius-xl);
  }

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

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

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

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

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

@media (min-width: 1024px) {
  .thank-wrapper {
    padding: 3.5rem;
  }

  .thank-message {
    font-size: 1.1rem;
  }

  .btn {
    padding: 1rem 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper {
    animation: none;
  }

  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .thank-page {
    background-color: var(--color-bg-primary);
  }

  .thank-wrapper {
    background-color: var(--color-bg-card);
  }

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

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  line-height: 1.7;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light), transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent), transparent 70%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0;
  }
}

.error-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  font-weight: 500;
  line-height: 1.6;
}

.error-description {
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
}

.error-description p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin: 0;
}

.error-actions {
  margin: var(--space-xl) 0 var(--space-lg);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

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

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

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

.error-suggestions {
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.suggestions-label {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.suggestions-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-primary-light);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-md);
  transition: all var(--transition-fast);
}

.suggestions-list li:hover {
  transform: translateX(4px);
  color: var(--color-accent);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .error-code-container {
    width: 320px;
    height: 320px;
  }

  .suggestions-list {
    grid-template-columns: 1fr 1fr;
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

  .error-code-container {
    width: 360px;
    height: 360px;
    margin-bottom: var(--space-lg);
  }

  .error-title {
    margin-bottom: var(--space-md);
  }

  .error-text {
    gap: var(--space-lg);
  }

  .suggestions-list {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .error-suggestions {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }

  .error-code-container {
    width: 400px;
    height: 400px;
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-actions {
    margin: var(--space-2xl) 0;
  }
}

@media (max-width: 639px) {
  .error-page {
    min-height: auto;
  }

  .error-section {
    min-height: auto;
    padding: var(--space-lg) var(--space-md);
  }

  .error-code-container {
    width: 240px;
    height: 240px;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

.contact-get-in-touch {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-get-in-touch-hero-content {
  text-align: center;
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  margin-bottom: var(--space-lg);
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-get-in-touch-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  display: block;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  width: 100%;
  padding: var(--space-md) var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary-light);
  line-height: 1.6;
  transition: var(--transition-base);
  box-sizing: border-box;
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-get-in-touch-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-get-in-touch-form-privacy {
  margin: var(--space-sm) 0;
}

.contact-get-in-touch-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-get-in-touch-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  margin-bottom: var(--space-lg);
}

.contact-get-in-touch-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-get-in-touch-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
  min-width: 0;
}

.contact-get-in-touch-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  margin-bottom: var(--space-xs);
}

.contact-get-in-touch-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-info-additional {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-get-in-touch-info-additional-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  margin-bottom: var(--space-sm);
}

.contact-get-in-touch-info-additional-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-main {
    padding: var(--space-3xl) 0;
  }

  .contact-get-in-touch-grid {
    gap: var(--space-3xl);
  }

  .contact-get-in-touch-form-wrapper {
    flex: 0 1 calc(50% - var(--space-3xl) / 2);
  }

  .contact-get-in-touch-info-wrapper {
    flex: 0 1 calc(50% - var(--space-3xl) / 2);
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: 4rem 0;
  }

  .contact-get-in-touch-main {
    padding: 4rem 0;
  }

  .contact-get-in-touch-hero-title {
    margin-bottom: var(--space-lg);
  }

  .contact-get-in-touch-form {
    gap: var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .contact-get-in-touch-hero {
    padding: 5rem 0;
  }

  .contact-get-in-touch-main {
    padding: 5rem 0;
  }
}