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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #050b1d;
  --color-bg-tertiary: #0a0f1e;
  --color-bg-dark-alt: #1e293b;
  --color-bg-card: #0f172a;
  --color-text-primary: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #fff;
  --color-text-secondary-dark: #e2e8f0;
  --color-text-secondary-light: #e1e6ed;
  --color-text-muted-light: #e3e7ee;
  --color-text-muted-dark: #94a3b8;

  --color-primary: #0ea5e9;
  --color-primary-hover: #0284c7;
  --color-primary-light: #e0f2fe;
  --color-secondary: #f97316;
  --color-secondary-hover: #ea580c;
  --color-accent: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Lora', 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: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.04em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-normal);
  font-size: 16px;
}

.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: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.875rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-primary-dark);
}

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

.section-dark a {
  color: var(--color-accent);
}

.section-dark a:hover {
  color: var(--color-primary);
}

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

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-primary-light);
}

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

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

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

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

.section-gray h1,
.section-gray h2,
.section-gray h3,
.section-gray h4,
.section-gray h5,
.section-gray h6 {
  color: var(--color-text-primary-light);
}

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

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

.section-alt-dark h1,
.section-alt-dark h2,
.section-alt-dark h3,
.section-alt-dark h4,
.section-alt-dark h5,
.section-alt-dark h6 {
  color: var(--color-text-primary-dark);
}

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

.card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  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-dark {
  background: var(--color-bg-card);
  color: var(--color-text-primary-dark);
}

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

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

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

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

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

.flex-start {
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-end {
  align-items: flex-end;
  justify-content: flex-end;
}

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

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

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

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

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

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

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

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

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

.font-light {
  font-weight: 400;
}

.font-normal {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 2rem;
}

.leading-tight {
  line-height: var(--line-height-tight);
}

.leading-normal {
  line-height: var(--line-height-normal);
}

.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

.tracking-tight {
  letter-spacing: var(--letter-spacing-tight);
}

.tracking-normal {
  letter-spacing: var(--letter-spacing-normal);
}

.tracking-wide {
  letter-spacing: var(--letter-spacing-wide);
}

.m-0 {
  margin: 0;
}

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

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

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

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

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

.m-2xl {
  margin: var(--space-2xl);
}

.m-3xl {
  margin: var(--space-3xl);
}

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

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

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

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

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-0 {
  padding: 0;
}

.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

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

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: var(--space-xl);
}

.p-2xl {
  padding: var(--space-2xl);
}

.p-3xl {
  padding: var(--space-3xl);
}

.pt-xs {
  padding-top: var(--space-xs);
}

.pt-sm {
  padding-top: var(--space-sm);
}

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

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

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

.pt-2xl {
  padding-top: var(--space-2xl);
}

.pt-3xl {
  padding-top: var(--space-3xl);
}

.pb-xs {
  padding-bottom: var(--space-xs);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

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

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

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

.pb-2xl {
  padding-bottom: var(--space-2xl);
}

.pb-3xl {
  padding-bottom: var(--space-3xl);
}

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

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

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

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

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

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

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

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

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

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

.rounded {
  border-radius: var(--radius-md);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-none {
  box-shadow: none;
}

.border {
  border: 1px solid var(--color-primary);
}

.border-2 {
  border: 2px solid var(--color-primary);
}

.border-t {
  border-top: 1px solid var(--color-primary);
}

.border-b {
  border-bottom: 1px solid var(--color-primary);
}

.border-l {
  border-left: 1px solid var(--color-primary);
}

.border-r {
  border-right: 1px solid var(--color-primary);
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.transition-all {
  transition: all var(--transition-base);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-slow {
  transition: all var(--transition-slow);
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:shadow-lg:hover {
  box-shadow: var(--shadow-lg);
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-md);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

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

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

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

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

  button,
  .btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}
.header-preis-monitor {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  z-index: 100;
  overflow: hidden;
}

.header-preis-monitor-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;
  gap: clamp(1rem, 2vw, 2rem);
  height: 4.5rem;
}

.header-preis-monitor-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-preis-monitor-brand:hover {
  opacity: 0.8;
}

.header-preis-monitor-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-preis-monitor-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary-light);
}

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

.header-preis-monitor-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-preis-monitor-nav-link:hover {
  color: var(--color-accent);
}

.header-preis-monitor-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;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-preis-monitor-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.header-preis-monitor-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

.header-preis-monitor-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary-light);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header-preis-monitor-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-preis-monitor-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-preis-monitor-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-preis-monitor-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-preis-monitor-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

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

.header-preis-monitor-mobile-close:hover {
  color: var(--color-accent);
}

.header-preis-monitor-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
}

.header-preis-monitor-mobile-link {
  display: block;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  border-bottom: 1px solid var(--color-border);
}

.header-preis-monitor-mobile-link:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-accent);
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
}

.header-preis-monitor-mobile-cta {
  display: block;
  margin: 1.5rem clamp(1rem, 3vw, 2rem);
  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;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-preis-monitor-mobile-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-preis-monitor-container {
    height: 5rem;
  }

  .header-preis-monitor-desktop-nav {
    display: flex;
  }

  .header-preis-monitor-cta-button {
    display: block;
  }

  .header-preis-monitor-mobile-toggle {
    display: none;
  }

  .header-preis-monitor-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-preis-monitor-container {
    height: 5.5rem;
  }

  .header-preis-monitor-nav-link {
    font-size: 1rem;
  }

  .header-preis-monitor-cta-button {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
}

    

.inflation-monitor {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.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-light);
  border-color: var(--color-primary-hover);
}

.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;
  flex-wrap: wrap;
}

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

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

.hero-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

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

.hero-image-wrapper-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

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

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

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

  .hero-text-wrapper-index,
  .hero-image-wrapper-index {
    flex: 1 1 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;
  flex-wrap: wrap;
}

.about-text-wrapper-index {
  flex: 1 1 45%;
  min-width: 280px;
  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-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.about-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.about-text-secondary-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.about-image-wrapper-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.section-header-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-index {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 600;
  align-self: center;
}

.section-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.features-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(3rem, 5vw, 4rem);
}

.card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  font-family: var(--font-heading);
}

.card-text-index {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

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

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

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

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

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

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(2.5rem, 5vw, 3.5rem);
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

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

.blog-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.card-image-index {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card-description-index {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.card-link-index {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  transition: color var(--transition-base);
  margin-top: var(--space-sm);
}

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

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

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

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

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-text-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial-text-index p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.author-name-index {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary-light);
  font-weight: 600;
  margin: 0;
}

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

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

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.faq-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.faq-item-index {
  flex: 1 1 280px;
  min-width: 250px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-question-index {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
}

.faq-answer-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.statistics-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

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

.stat-box-index {
  flex: 1 1 250px;
  max-width: 350px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-box-title-index {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
}

.stat-box-text-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.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(2rem, 4vw, 3rem);
}

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

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0;
}

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

.cta-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-md);
}

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

.cta-buttons-index .btn-primary-index:hover {
  background: #f1f5f9;
}

.cta-buttons-index .btn-secondary-index {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-buttons-index .btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-dark-alt);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner-text {
  color: var(--color-text-primary-dark);
  margin: 0;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 767px) {
  .hero-section-index,
  .about-section-index,
  .features-section-index,
  .process-section-index,
  .blog-section-index,
  .testimonials-section-index,
  .faq-section-index,
  .statistics-section-index,
  .cta-section-index {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .features-cards-index,
  .testimonials-grid-index,
  .stats-grid-index,
  .featured-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .feature-card-index,
  .testimonial-card-index,
  .stat-box-index,
  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-index {
    min-width: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features-cards-index .feature-card-index,
  .testimonials-grid-index .testimonial-card-index,
  .stats-grid-index .stat-box-index {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .featured-cards-index .featured-card-index {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .features-cards-index .feature-card-index {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }

  .featured-cards-index .featured-card-index {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
}

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

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

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

.footer-about {
  max-width: 520px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.footer-about p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-navigation,
.footer-contact,
.footer-legal {
  display: block;
}

.footer-navigation h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted-light);
  letter-spacing: var(--letter-spacing-normal);
}

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

  .footer-about {
    flex: 1 1 280px;
    max-width: 100%;
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    flex: 1 1 200px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: clamp(0.75rem, 1vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-navigation {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }

  .footer-legal {
    grid-column: 4;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}
    

.category-page-verbraucherpreisindex-inflationsentwicklung {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

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

.hero-title-category {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-category {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  margin: 0.5rem 0 0 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.posts-title-category {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0.75rem 0 0 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.card-image-category {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-category {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-category {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
}

.card-meta-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.75rem, 1vw + 0.35rem, 0.9rem);
  color: var(--color-text-secondary);
}

.card-reading-time-category,
.card-level-category,
.card-date-category {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-secondary);
}

.card-reading-time-category i,
.card-level-category i,
.card-date-category i {
  color: var(--color-accent);
}

.card-link-category {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base) ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.concepts-header-category {
  text-align: center;
}

.concepts-title-category {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-intro-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0.75rem 0 0 0;
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.concept-item-category {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.concept-name-category {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-text-category {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.insights-header-category {
  text-align: center;
}

.insights-title-category {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-category {
  max-width: 900px;
  margin: 0 auto;
}

.insights-text-category p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-category p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .concepts-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insights-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .card-verbraucherpreisindex-inflationsentwicklung {
    flex: 1 1 320px;
  }
}

@media (min-width: 1024px) {
  .hero-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .concepts-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .insights-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .card-verbraucherpreisindex-inflationsentwicklung {
    flex: 1 1 340px;
  }

  .concept-item-category {
    flex: 1 1 300px;
  }
}

* {
  box-sizing: border-box;
}

.main-verbraucherpreisindex-grundlagen {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 2rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-verbraucherpreisindex-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-muted-light);
}

.meta-item-verbraucherpreisindex-grundlagen {
  color: var(--color-text-muted-light);
}

.meta-divider-verbraucherpreisindex-grundlagen {
  color: var(--color-text-muted-light);
}

.hero-img-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-verbraucherpreisindex-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.breadcrumbs-verbraucherpreisindex-grundlagen a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-verbraucherpreisindex-grundlagen span {
  color: var(--color-text-secondary-light);
}

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

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

.intro-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-verbraucherpreisindex-grundlagen:last-child {
  margin-bottom: 0;
}

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

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

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

.content-one-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-verbraucherpreisindex-grundlagen:last-child {
  margin-bottom: 0;
}

.content-one-img-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.content-two-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-verbraucherpreisindex-grundlagen:last-child {
  margin-bottom: 0;
}

.content-two-img-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.content-three-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-verbraucherpreisindex-grundlagen:last-child {
  margin-bottom: 0;
}

.content-three-img-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.highlight-content-verbraucherpreisindex-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.featured-quote-verbraucherpreisindex-grundlagen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  max-width: 800px;
}

.quote-text-verbraucherpreisindex-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary-light);
  font-style: italic;
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-cite-verbraucherpreisindex-grundlagen {
  display: block;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-light);
  margin-top: 1rem;
  font-style: normal;
}

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

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

.practical-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-cards-verbraucherpreisindex-grundlagen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

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

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

.practical-card-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-card-text-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.conclusion-text-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-verbraucherpreisindex-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-verbraucherpreisindex-grundlagen:last-child {
  margin-bottom: 0;
}

.conclusion-img-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.disclaimer-content-verbraucherpreisindex-grundlagen {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
}

.disclaimer-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-verbraucherpreisindex-grundlagen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-verbraucherpreisindex-grundlagen {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.related-card-image-verbraucherpreisindex-grundlagen {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

.related-card-content-verbraucherpreisindex-grundlagen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-verbraucherpreisindex-grundlagen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-verbraucherpreisindex-grundlagen {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-verbraucherpreisindex-grundlagen {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: color var(--transition-base);
}

.related-card-link-verbraucherpreisindex-grundlagen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

  .hero-text-verbraucherpreisindex-grundlagen,
  .hero-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .intro-text-verbraucherpreisindex-grundlagen,
  .intro-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-one-wrapper-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .content-one-text-verbraucherpreisindex-grundlagen,
  .content-one-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-two-wrapper-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .content-two-text-verbraucherpreisindex-grundlagen,
  .content-two-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-three-wrapper-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .content-three-text-verbraucherpreisindex-grundlagen,
  .content-three-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-content-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .conclusion-text-verbraucherpreisindex-grundlagen,
  .conclusion-image-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-cards-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .practical-card-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-verbraucherpreisindex-grundlagen {
    flex-direction: column;
  }

  .related-card-verbraucherpreisindex-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .practical-card-verbraucherpreisindex-grundlagen {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-verbraucherpreisindex-grundlagen {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

* {
  box-sizing: border-box;
}

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

.main-hvpi-verbraucherpreisindex-unterschied {
  width: 100%;
}

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

.breadcrumbs-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-hvpi-verbraucherpreisindex-unterschied a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-hvpi-verbraucherpreisindex-unterschied a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-hvpi-verbraucherpreisindex-unterschied span {
  color: var(--color-text-muted);
}

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

.hero-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.hero-subtitle-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.hero-meta-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  margin: var(--space-sm) 0;
}

.meta-item-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-hvpi-verbraucherpreisindex-unterschied i {
  color: var(--color-accent);
}

.hero-image-hvpi-verbraucherpreisindex-unterschied {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-img-hvpi-verbraucherpreisindex-unterschied {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.intro-text-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.intro-paragraph-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-hvpi-verbraucherpreisindex-unterschied img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-content-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }

  .intro-text-hvpi-verbraucherpreisindex-unterschied,
  .intro-image-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.definition-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-image-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-text-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.definition-paragraph-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.definition-image-hvpi-verbraucherpreisindex-unterschied img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .definition-content-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }

  .definition-image-hvpi-verbraucherpreisindex-unterschied,
  .definition-text-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.harmonized-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.harmonized-text-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmonized-image-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.harmonized-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.harmonized-paragraph-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.harmonized-image-hvpi-verbraucherpreisindex-unterschied img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .harmonized-content-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }

  .harmonized-text-hvpi-verbraucherpreisindex-unterschied,
  .harmonized-image-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.comparison-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.comparison-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
}

.comparison-cards-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.comparison-card-hvpi-verbraucherpreisindex-unterschied {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.comparison-card-hvpi-verbraucherpreisindex-unterschied:hover {
  box-shadow: var(--shadow-md);
}

.card-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.card-split-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
}

.card-item-hvpi-verbraucherpreisindex-unterschied {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.card-label-hvpi-verbraucherpreisindex-unterschied {
  font-weight: 700;
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.card-text-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .card-split-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }
}

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

.practical-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-text-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.practical-paragraph-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.practical-image-hvpi-verbraucherpreisindex-unterschied img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .practical-content-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }

  .practical-image-hvpi-verbraucherpreisindex-unterschied,
  .practical-text-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.trends-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-direction: column;
}

.trends-text-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.trends-image-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.trends-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.trends-paragraph-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.trends-image-hvpi-verbraucherpreisindex-unterschied img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .trends-content-hvpi-verbraucherpreisindex-unterschied {
    flex-direction: column;
  }

  .trends-text-hvpi-verbraucherpreisindex-unterschied,
  .trends-image-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.conclusion-text-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.disclaimer-section-hvpi-verbraucherpreisindex-unterschied {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-hvpi-verbraucherpreisindex-unterschied {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.disclaimer-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.disclaimer-text-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-content-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
}

.related-cards-hvpi-verbraucherpreisindex-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.related-card-hvpi-verbraucherpreisindex-unterschied {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-hvpi-verbraucherpreisindex-unterschied:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-image-hvpi-verbraucherpreisindex-unterschied {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}

.related-img-hvpi-verbraucherpreisindex-unterschied {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-hvpi-verbraucherpreisindex-unterschied {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.related-card-title-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
  font-family: var(--font-heading);
}

.related-card-text-hvpi-verbraucherpreisindex-unterschied {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-hvpi-verbraucherpreisindex-unterschied {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-link-hvpi-verbraucherpreisindex-unterschied:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-hvpi-verbraucherpreisindex-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, 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;
}

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

.main-inflationstrends-deutschland-historisch {
  width: 100%;
}

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

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

.hero-text-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.hero-subtitle-inflationstrends-deutschland-historisch {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.hero-meta-inflationstrends-deutschland-historisch {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.meta-item-inflationstrends-deutschland-historisch {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.meta-item-inflationstrends-deutschland-historisch i {
  color: var(--color-accent);
}

.hero-image-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-img-inflationstrends-deutschland-historisch {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.intro-text-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.intro-paragraph-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-image-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.intro-img-inflationstrends-deutschland-historisch {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.timeline-section-inflationstrends-deutschland-historisch {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.timeline-content-inflationstrends-deutschland-historisch {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.timeline-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
}

.timeline-intro-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.timeline-items-inflationstrends-deutschland-historisch {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.timeline-item-inflationstrends-deutschland-historisch {
  padding: var(--space-xl);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.timeline-period-inflationstrends-deutschland-historisch {
  margin-bottom: var(--space-lg);
}

.timeline-years-inflationstrends-deutschland-historisch {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.timeline-heading-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.timeline-text-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.patterns-section-inflationstrends-deutschland-historisch {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.patterns-text-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.patterns-paragraph-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.patterns-highlight-inflationstrends-deutschland-historisch {
  padding: var(--space-lg);
  background: rgba(37, 99, 235, 0.05);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.highlight-text-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.patterns-image-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.patterns-img-inflationstrends-deutschland-historisch {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.measurement-section-inflationstrends-deutschland-historisch {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.measurement-image-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.measurement-img-inflationstrends-deutschland-historisch {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.measurement-text-inflationstrends-deutschland-historisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.measurement-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.measurement-paragraph-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.lessons-section-inflationstrends-deutschland-historisch {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.lessons-content-inflationstrends-deutschland-historisch {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.lessons-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.lessons-cards-inflationstrends-deutschland-historisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.lesson-card-inflationstrends-deutschland-historisch {
  flex: 1 1 calc(50% - var(--space-lg));
  max-width: 320px;
  padding: var(--space-xl);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-number-inflationstrends-deutschland-historisch {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
}

.card-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.conclusion-content-inflationstrends-deutschland-historisch {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

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

.conclusion-cta-inflationstrends-deutschland-historisch {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn-primary-inflationstrends-deutschland-historisch {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.btn-primary-inflationstrends-deutschland-historisch:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

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

.related-content-inflationstrends-deutschland-historisch {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.related-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

.related-cards-inflationstrends-deutschland-historisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-inflationstrends-deutschland-historisch {
  flex: 1 1 calc(33.333% - var(--space-lg));
  max-width: 340px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-card-image-inflationstrends-deutschland-historisch {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-inflationstrends-deutschland-historisch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  padding: var(--space-lg) var(--space-lg) 0;
}

.related-card-text-inflationstrends-deutschland-historisch {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  line-height: 1.6;
}

.related-link-inflationstrends-deutschland-historisch {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  color: var(--color-accent);
  font-weight: 600;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.related-link-inflationstrends-deutschland-historisch:hover {
  color: var(--color-accent-hover);
}

.disclaimer-section-inflationstrends-deutschland-historisch {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-inflationstrends-deutschland-historisch {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.disclaimer-title-inflationstrends-deutschland-historisch {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.disclaimer-text-inflationstrends-deutschland-historisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.breadcrumbs-inflationstrends-deutschland-historisch {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

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

.breadcrumbs-inflationstrends-deutschland-historisch a:hover {
  color: var(--color-accent-hover);
}

.breadcrumbs-inflationstrends-deutschland-historisch span {
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .hero-content-inflationstrends-deutschland-historisch,
  .intro-content-inflationstrends-deutschland-historisch,
  .patterns-content-inflationstrends-deutschland-historisch,
  .measurement-content-inflationstrends-deutschland-historisch {
    flex-direction: column;
  }

  .hero-text-inflationstrends-deutschland-historisch,
  .hero-image-inflationstrends-deutschland-historisch,
  .intro-text-inflationstrends-deutschland-historisch,
  .intro-image-inflationstrends-deutschland-historisch,
  .patterns-text-inflationstrends-deutschland-historisch,
  .patterns-image-inflationstrends-deutschland-historisch,
  .measurement-image-inflationstrends-deutschland-historisch,
  .measurement-text-inflationstrends-deutschland-historisch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .lesson-card-inflationstrends-deutschland-historisch,
  .related-card-inflationstrends-deutschland-historisch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-inflationstrends-deutschland-historisch,
  .intro-title-inflationstrends-deutschland-historisch,
  .patterns-title-inflationstrends-deutschland-historisch,
  .measurement-title-inflationstrends-deutschland-historisch,
  .lessons-title-inflationstrends-deutschland-historisch,
  .related-title-inflationstrends-deutschland-historisch,
  .conclusion-title-inflationstrends-deutschland-historisch {
    text-align: center;
  }

  .hero-meta-inflationstrends-deutschland-historisch {
    justify-content: center;
  }

  .timeline-intro-inflationstrends-deutschland-historisch {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .lesson-card-inflationstrends-deutschland-historisch,
  .related-card-inflationstrends-deutschland-historisch {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .lesson-card-inflationstrends-deutschland-historisch,
  .related-card-inflationstrends-deutschland-historisch {
    flex: 1 1 calc(33.333% - var(--space-lg));
  }
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

.main-kerninflation-gesamtinflation-unterschied {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-kerninflation-gesamtinflation-unterschied {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-kerninflation-gesamtinflation-unterschied a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-kerninflation-gesamtinflation-unterschied a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-kerninflation-gesamtinflation-unterschied span {
  color: var(--color-text-secondary);
}

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

.hero-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-kerninflation-gesamtinflation-unterschied {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-kerninflation-gesamtinflation-unterschied i {
  color: var(--color-accent);
}

.hero-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-kerninflation-gesamtinflation-unterschied {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

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

  .hero-text-kerninflation-gesamtinflation-unterschied,
  .hero-image-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-body-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-body-kerninflation-gesamtinflation-unterschied:last-child {
  margin-bottom: 0;
}

.intro-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-kerninflation-gesamtinflation-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
  }

  .intro-text-kerninflation-gesamtinflation-unterschied,
  .intro-image-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.definition-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.definition-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.definition-body-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.definition-body-kerninflation-gesamtinflation-unterschied:last-child {
  margin-bottom: 0;
}

.definition-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-image-kerninflation-gesamtinflation-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

@media (max-width: 768px) {
  .definition-content-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
  }

  .definition-text-kerninflation-gesamtinflation-unterschied,
  .definition-image-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.core-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.core-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.core-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-image-kerninflation-gesamtinflation-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

.core-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.core-body-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.core-body-kerninflation-gesamtinflation-unterschied:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .core-content-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
  }

  .core-image-kerninflation-gesamtinflation-unterschied,
  .core-text-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.comparison-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.comparison-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.comparison-header-kerninflation-gesamtinflation-unterschied {
  text-align: center;
}

.comparison-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.comparison-subtitle-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.comparison-cards-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.comparison-card-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 calc(50% - 1rem);
  max-width: 450px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.card-heading-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.3;
}

.card-item-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-bottom: 1px solid var(--color-border-light);
}

.card-item-kerninflation-gesamtinflation-unterschied:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-label-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-value-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .comparison-card-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.policy-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.policy-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.policy-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.policy-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.policy-body-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.policy-body-kerninflation-gesamtinflation-unterschied:last-child {
  margin-bottom: 0;
}

.policy-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.policy-image-kerninflation-gesamtinflation-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

@media (max-width: 768px) {
  .policy-content-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
  }

  .policy-text-kerninflation-gesamtinflation-unterschied,
  .policy-image-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insight-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.insight-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.insight-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

.insight-boxes-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.insight-box-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.box-icon-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-accent);
}

.box-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.box-text-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .insight-box-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .insight-box-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-kerninflation-gesamtinflation-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.conclusion-body-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.featured-quote-kerninflation-gesamtinflation-unterschied {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-primary);
  border-radius: clamp(0.25rem, 0.5vw, 0.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.quote-text-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.8;
}

.conclusion-image-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-kerninflation-gesamtinflation-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-kerninflation-gesamtinflation-unterschied {
    flex-direction: column;
  }

  .conclusion-text-kerninflation-gesamtinflation-unterschied,
  .conclusion-image-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

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

.disclaimer-header-kerninflation-gesamtinflation-unterschied {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.disclaimer-header-kerninflation-gesamtinflation-unterschied i {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-accent);
}

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

.disclaimer-text-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-kerninflation-gesamtinflation-unterschied {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

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

.related-card-kerninflation-gesamtinflation-unterschied {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-kerninflation-gesamtinflation-unterschied:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-image-kerninflation-gesamtinflation-unterschied {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-kerninflation-gesamtinflation-unterschied {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-kerninflation-gesamtinflation-unterschied {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(1rem, 1.8vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.related-card-description-kerninflation-gesamtinflation-unterschied {
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-kerninflation-gesamtinflation-unterschied {
  display: inline-block;
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-link-kerninflation-gesamtinflation-unterschied:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-kerninflation-gesamtinflation-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.hero-section-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -1px;
  margin: 0;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

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

.mission-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mission-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.mission-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

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

.methodology-header-about {
  text-align: center;
}

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.methodology-intro-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0 0 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: var(--transition-base);
}

.method-card-about:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}

.method-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.75rem 0;
}

.method-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

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

.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: 800px;
  margin: 0 auto 1rem;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

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

.expertise-items-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.expertise-item-about {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.expertise-icon-about {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.expertise-item-text-about {
  flex: 1;
}

.expertise-item-title-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.expertise-item-desc-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.impact-section-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.impact-header-about {
  text-align: center;
  max-width: 750px;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.impact-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.stats-grid-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.stat-box-about {
  flex: 1 1 180px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
}

.stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.5rem 0;
}

.stat-label-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

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

.disclaimer-title-about {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

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

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

  .mission-text-block-about {
    flex: 1 1 45%;
    min-width: 280px;
  }

  .mission-image-about {
    flex: 1 1 45%;
    min-width: 280px;
  }

  .mission-visual-about {
    width: 100%;
    height: 100%;
    max-height: 450px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    display: block;
  }

  .expertise-items-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .stats-grid-about {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .expertise-items-about {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .mission-text-block-about {
    width: 100%;
  }

  .mission-image-about {
    width: 100%;
  }

  .mission-visual-about {
    max-height: 300px;
  }

  .stats-grid-about {
    flex-direction: column;
  }

  .stat-box-about {
    max-width: 100%;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-primary-light);
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.portfolio-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-primary-dark);
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  width: fit-content;
  letter-spacing: var(--letter-spacing-wide);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  font-weight: 500;
  margin-top: var(--space-xs);
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  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);
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  border: none;
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1200px) {
  .portfolio-hero-container,
  .portfolio-projects-container,
  .portfolio-cta-container {
    padding: 0 var(--space-md);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.faq-hero {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-hero-content {
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
}

.faq-hero-image {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.faq-accordion-section {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-primary-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background-color var(--transition-base);
  text-align: left;
}

.faq-question:hover {
  background-color: var(--color-bg-tertiary);
}

.faq-question-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary-dark);
  font-weight: 600;
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0;
  flex: 1;
}

.faq-toggle-icon {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  background-color: var(--color-bg-card);
  animation: slideDown var(--transition-base) ease-out;
}

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

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0;
}

.faq-cta-section {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.faq-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.faq-cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-accordion-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-accordion-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-item {
    border-radius: var(--radius-lg);
  }

  .faq-question {
    padding: var(--space-xl);
  }

  .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }
}

.docs-hub {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
}

.docs-hub .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.docs-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.docs-hub h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.docs-hub .last-updated {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-3xl);
  font-style: italic;
}

.docs-hub h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
}

.docs-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.docs-hub ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}

.docs-hub ul li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.docs-hub ul li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.docs-hub .section {
  margin-bottom: var(--space-2xl);
}

.docs-hub .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
}

.docs-hub .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.docs-hub .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
}

.docs-hub .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .docs-hub .content {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .docs-hub .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .docs-hub .container {
    padding: 0 var(--space-xl);
  }
  
  .docs-hub .content {
    padding: var(--space-3xl) 0;
  }
}

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

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: var(--color-success);
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  font-weight: 500;
  margin: 0;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0;
  max-width: 700px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  margin-top: var(--space-md);
  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);
  box-shadow: var(--shadow-sm);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (min-width: 480px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .thank-icon {
    width: 120px;
    height: 120px;
  }

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

  .thank-icon {
    width: 140px;
    height: 140px;
  }

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

  .btn-primary {
    padding: var(--space-md) var(--space-2xl);
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

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

  .thank-icon {
    width: 160px;
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .thank-icon {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.error-code-container {
  position: relative;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .error-code-container {
    margin-bottom: var(--space-3xl);
  }
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
  line-height: var(--line-height-tight);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  background-color: var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

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

@media (min-width: 768px) {
  .error-message {
    margin-top: var(--space-2xl);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-normal);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .error-subtitle {
    margin: 0 0 var(--space-xl) 0;
  }
}

.error-context {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  text-align: left;
}

@media (min-width: 768px) {
  .error-context {
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
  }
}

.error-context-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  font-weight: 500;
  line-height: var(--line-height-normal);
}

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

.error-keywords li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
  position: relative;
  line-height: var(--line-height-normal);
  border-left: 3px solid var(--color-primary);
  margin-bottom: var(--space-xs);
}

.error-keywords li:last-child {
  margin-bottom: 0;
}

.error-actions {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-actions {
    margin-top: var(--space-3xl);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .btn {
    padding: var(--space-md) var(--space-xl);
  }
}

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

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

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

@media (max-width: 767px) {
  .error-code {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .error-decoration {
    width: clamp(150px, 35vw, 300px);
    height: clamp(150px, 35vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-wrapper {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-keywords li {
    padding: var(--space-md) 0 var(--space-md) var(--space-lg);
  }
}

.contact-message-us {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-message-us-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-message-us-hero-content {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-message-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-message-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-message-us-main-content {
  padding: 0 var(--space-md);
}

.contact-message-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-message-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-message-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-message-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-tight);
}

.contact-message-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-tight);
}

.contact-message-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-message-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-normal);
}

.contact-message-us-input,
.contact-message-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-message-us-input:focus,
.contact-message-us-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-message-us-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-message-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.contact-message-us-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-message-us-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-message-us-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  width: 100%;
  padding: 1rem 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;
  letter-spacing: var(--letter-spacing-normal);
  cursor: pointer;
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-message-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-message-us-submit:active {
  transform: translateY(0);
}

.contact-message-us-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-message-us-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-message-us-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-message-us-info-content {
  flex: 1;
  min-width: 0;
}

.contact-message-us-info-label {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-xs) 0;
  line-height: var(--line-height-tight);
}

.contact-message-us-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0 0 var(--space-xs) 0;
  line-height: var(--line-height-normal);
}

.contact-message-us-info-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-light);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-message-us-info-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: var(--space-xl) 0;
}

.contact-message-us-expertise {
  padding-top: var(--space-md);
}

.contact-message-us-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.contact-message-us-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-message-us-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.contact-message-us-expertise-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: 4rem 0;
  }

  .contact-message-us-main {
    padding: 4rem 0;
  }

  .contact-message-us-grid {
    gap: 4rem;
  }

  .contact-message-us-form-wrapper {
    flex: 1 1 400px;
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 400px;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: 5rem 0;
  }

  .contact-message-us-main {
    padding: 5rem 0;
  }

  .contact-message-us-grid {
    gap: 5rem;
  }

  .contact-message-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1440px) {
  .contact-message-us-hero {
    padding: 6rem 0;
  }

  .contact-message-us-main {
    padding: 6rem 0;
  }

  .contact-message-us-grid {
    gap: 6rem;
  }
}
.header-preis-monitor-mobile-close,.header-preis-monitor-mobile-toggle{
  width: 34px;
}

.header-preis-monitor-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.header-preis-monitor-mobile-close,.header-preis-monitor-mobile-toggle{
  width: 34px;
}

.header-preis-monitor-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

