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

:root {
  --color-bg-primary: #0f0a1e;
  --color-bg-secondary: #faf5ff;
  --color-bg-tertiary: #1a1035;
  --color-bg-card: #ffffff;

  --color-text-primary: #bab7e7;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  --color-text-light: #ffffff;
  --color-text-light-secondary: #f3f4f6;

  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-primary-light: #ede9fe;
  --color-primary-lighter: #f5f3ff;

  --color-secondary: #8b5cf6;
  --color-secondary-light: #ede9fe;
  --color-secondary-lighter: #f5f3ff;

  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;

  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-border-dark: #374151;

  --font-primary: 'Source Serif 4', serif;
  --font-heading: 'Merriweather', serif;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

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

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
}

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

body {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--color-text-primary);
}

h4 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

h5 {
  font-size: 1rem;
  color: var(--color-text-primary);
}

h6 {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

p {
  margin: 0;
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

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

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

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

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

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

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

input::placeholder {
  color: var(--color-text-muted);
}

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

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

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

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

.section-dark a:hover {
  color: #ddd6fe;
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--spacing-4xl) 0;
}

.section-card {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.section-card-dark {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

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

.badge-warning {
  background: var(--color-warning-light);
  color: #92400e;
}

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

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

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

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

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

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mt-3xl { margin-top: var(--spacing-3xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-disc {
  list-style: disc;
  padding-left: var(--spacing-xl);
  margin: 0;
}

li {
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
}

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

.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--spacing-2xl) 0;
}

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

.divider-dark {
  background: var(--color-border-dark);
}

.overflow-hidden {
  overflow: hidden;
}

.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-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-2xl {
  box-shadow: var(--shadow-2xl);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .section-dark, .section-light {
    padding: var(--spacing-3xl) 0;
  }

  .section-card, .section-card-dark {
    padding: var(--spacing-2xl);
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  body {
    font-size: 0.9375rem;
  }

  button, .btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .section-dark, .section-light {
    padding: var(--spacing-2xl) 0;
  }

  .section-card, .section-card-dark {
    padding: var(--spacing-lg);
  }
}
* {
  box-sizing: border-box;
}

.header-wohn-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  top: 0;
  width: 100%;
  z-index: 100;
}

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

.header-wohn-portal-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-wohn-portal-brand:hover {
  opacity: 0.85;
}

.header-wohn-portal-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-wohn-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-wohn-portal-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-grow: 1;
  margin-left: clamp(2rem, 4vw, 3rem);
}

.header-wohn-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.header-wohn-portal-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-wohn-portal-cta-button {
  display: none;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-wohn-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-wohn-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-wohn-portal-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

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

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

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

.header-wohn-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

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

.header-wohn-portal-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

.header-wohn-portal-mobile-close:hover {
  color: var(--color-primary);
}

.header-wohn-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.header-wohn-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-left: 3px solid transparent;
  transition: all var(--transition-base);
  display: block;
  font-weight: 500;
}

.header-wohn-portal-mobile-link:hover {
  color: var(--color-primary);
  background: var(--color-bg-secondary);
  border-left-color: var(--color-primary);
  padding-left: clamp(1.25rem, 3vw, 1.75rem);
}

.header-wohn-portal-mobile-cta {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border: none;
  text-decoration: none;
  margin: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  display: block;
}

.header-wohn-portal-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

  .header-wohn-portal-desktop-nav {
    display: flex;
  }

  .header-wohn-portal-cta-button {
    display: block;
  }

  .header-wohn-portal-mobile-toggle {
    display: none;
  }

  .header-wohn-portal-mobile-menu {
    display: none;
  }
}

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

  .header-wohn-portal-nav-link {
    font-size: 1rem;
  }

  .header-wohn-portal-logo-text {
    font-size: 1.5rem;
  }
}

    

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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, 3vw, 2rem);
  display: block;
}

.budget-hub {
  width: 100%;
  overflow: hidden;
}

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

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

@media (min-width: 1024px) {
  .hero_content_gate {
    flex-direction: row;
    align-items: center;
  }
}

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

.hero_label_gate {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero_title_gate {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero_subtitle_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.hero_cta_group_gate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero_cta_group_gate {
    flex-direction: row;
  }
}

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

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

.btn_primary_gate:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn_secondary_gate {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-accent);
}

.btn_secondary_gate:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.btn_outline_gate {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent);
}

.btn_outline_gate:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.hero_image_wrapper_gate {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
  border-radius: 8px;
}

.hero_image_gate {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.insights_header_gate {
  text-align: center;
}

.insights_title_gate {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem 0;
}

.insights_subtitle_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin: 0;
}

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

.stat_card_gate {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat_number_gate {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.stat_label_gate {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0 0 0.75rem 0;
}

.stat_desc_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: 1.5;
  margin: 0;
}

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

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

.process_header_gate {
  text-align: center;
}

.process_title_gate {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem 0;
}

.process_subtitle_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin: 0;
}

.timeline_gate {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: clamp(2rem, 4vw, 3rem);
}

.timeline_gate::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
}

.timeline_step_gate {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.timeline_marker_gate {
  color: var(--color-bg-primary);
  background: var(--color-accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  position: absolute;
  left: -clamp(2.5rem, 5vw, 3.5rem);
  top: 0;
}

.timeline_content_gate {
  flex: 1;
  padding-top: 0.25rem;
}

.timeline_title_gate {
  color: var(--color-text-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.timeline_text_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.resources_header_gate {
  text-align: center;
}

.resources_title_gate {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem 0;
}

.resources_subtitle_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin: 0;
}

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

.article_card_gate {
  flex: 1 1 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.article_card_gate:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.12);
}

.article_image_wrapper_gate {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-border-light);
}

.article_image_gate {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.article_title_gate {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.article_desc_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.article_link_gate {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 1rem);
  transition: var(--transition-base);
}

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

.resources_footer_gate {
  text-align: center;
  margin-top: 1rem;
}

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

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

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

.highlights_main_gate {
  flex: 1 1 45%;
}

.highlights_primary_gate {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlights_label_gate {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.highlights_title_gate {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  line-height: 1.2;
}

.highlights_text_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.highlights_secondary_gate {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.highlight_item_gate {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.highlight_icon_gate {
  color: var(--color-accent);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight_body_gate {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight_item_title_gate {
  color: var(--color-text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin: 0;
}

.highlight_item_text_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

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

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

.navigation_header_gate {
  text-align: center;
}

.navigation_title_gate {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
}

.nav_banners_gate {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.nav_banner_gate {
  flex: 1 1 250px;
  max-width: 350px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  transition: var(--transition-base);
}

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

.nav_banner_primary_gate:hover {
  background: var(--color-accent-hover);
  transform: translateX(4px);
}

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

.nav_banner_secondary_gate:hover {
  background: #7c4cf4;
  transform: translateX(4px);
}

.nav_banner_tertiary_gate {
  background: #e879f9;
  color: var(--color-text-light);
}

.nav_banner_tertiary_gate:hover {
  background: #d966f6;
  transform: translateX(4px);
}

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

.nav_banner_gate i {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-left: 0.75rem;
}

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

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

.cta_inner_gate {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta_title_gate {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.cta_text_gate {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.cta_buttons_gate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .cta_buttons_gate {
    flex-direction: row;
    justify-content: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--color-border);
}

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

.cookie-banner-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-text-light);
}

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

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.cookie-btn-decline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

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

  .hero_image_wrapper_gate {
    flex: 1 1 100%;
    max-height: 350px;
  }

  .highlights_content_gate {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .nav_banners_gate {
    flex-direction: column;
  }

  .nav_banner_gate {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta_buttons_gate {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

    .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, 4vw, 2rem);
  display: block;
}

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

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

.footer-about h3,
.footer-navigation h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color var(--transition-base) ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-contact p:last-child {
  margin-bottom: 0;
}

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

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .footer-about {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
  }

  .footer-navigation {
    flex: 0 1 auto;
    min-width: 150px;
  }

  .footer-contact {
    flex: 0 1 auto;
    min-width: 280px;
  }

  .footer-legal {
    flex: 0 1 auto;
    min-width: 150px;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 30%;
    min-width: 300px;
  }

  .footer-navigation {
    flex: 0 1 15%;
    min-width: 140px;
  }

  .footer-contact {
    flex: 1 1 30%;
    min-width: 280px;
  }

  .footer-legal {
    flex: 0 1 15%;
    min-width: 140px;
  }
}
    

.category-page-erste-wohnung-budget {
  width: 100%;
}

.hero_section_rack {
  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_rack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero_header_rack {
  text-align: center;
}

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

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

.hero_date_rack {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin: clamp(0.25rem, 1vw, 0.75rem) 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero_description_rack {
  text-align: center;
}

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

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

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

.posts_header_rack {
  text-align: center;
}

.posts_title_rack {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
}

.posts_subtitle_rack {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts_grid_rack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.card-erste-wohnung-budget {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) ease;
}

.card-erste-wohnung-budget:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card_image_wrapper_rack {
  flex: 0 0 clamp(200px, 30vw, 350px);
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.card_image_rack {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.card_text_wrapper_rack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card_title_rack {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
}

.card_description_rack {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card_meta_rack {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
  margin-top: auto;
  padding-top: clamp(0.5rem, 1vw, 1rem);
  border-top: 1px solid var(--color-border-light);
}

.card_reading_time_rack,
.card_level_rack,
.card_date_rack {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.9rem);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card_reading_time_rack i,
.card_level_rack i,
.card_date_rack i {
  color: var(--color-primary);
  font-size: 0.85em;
}

.card_link_rack {
  align-self: flex-start;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base) ease;
  cursor: pointer;
  border: 2px solid var(--color-primary);
}

.card_link_rack:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  text-decoration: none;
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .card-erste-wohnung-budget {
    flex-direction: column;
    gap: 0;
  }

  .card_image_wrapper_rack {
    flex: 1 1 auto;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-height: 250px;
  }

  .card_image_rack {
    aspect-ratio: 16/9;
  }

  .card_text_wrapper_rack {
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .card_meta_rack {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    border-top: none;
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card_image_wrapper_rack {
    flex: 0 0 35%;
  }

  .card_text_wrapper_rack {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }
}

@media (min-width: 1024px) {
  .card_image_wrapper_rack {
    flex: 0 0 40%;
  }

  .card_text_wrapper_rack {
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
  }

  .card-erste-wohnung-budget:hover {
    transform: translateY(-4px);
  }
}

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

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

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

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

  a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
  }

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

  .hero-section-kaution-maklergebuehr-kosten {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 2rem 0;
  }

  .hero-background-kaution-maklergebuehr-kosten {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
  }

  .hero-image-kaution-maklergebuehr-kosten {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
  }

  .hero-overlay-kaution-maklergebuehr-kosten {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .breadcrumbs-kaution-maklergebuehr-kosten {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .breadcrumbs-kaution-maklergebuehr-kosten a {
    color: var(--color-accent);
  }

  .breadcrumbs-kaution-maklergebuehr-kosten span {
    color: var(--color-text-secondary);
  }

  .hero-content-kaution-maklergebuehr-kosten {
    max-width: 800px;
  }

  .hero-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-subtitle-kaution-maklergebuehr-kosten {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-meta-kaution-maklergebuehr-kosten {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .meta-item-kaution-maklergebuehr-kosten {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
  }

  .meta-item-kaution-maklergebuehr-kosten i {
    color: var(--color-accent);
  }

  .author-section-kaution-maklergebuehr-kosten {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow: hidden;
  }

  .author-inline-kaution-maklergebuehr-kosten {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
  }

  .author-photo-kaution-maklergebuehr-kosten {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--color-accent);
  }

  .author-info-kaution-maklergebuehr-kosten {
    flex: 1;
  }

  .author-label-kaution-maklergebuehr-kosten {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin: 0;
  }

  .author-name-kaution-maklergebuehr-kosten {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0.25rem 0 0 0;
  }

  .author-name-kaution-maklergebuehr-kosten a {
    color: var(--color-text-primary);
  }

  .author-name-kaution-maklergebuehr-kosten a:hover {
    color: var(--color-accent);
  }

  .author-role-kaution-maklergebuehr-kosten {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin: 0.25rem 0;
  }

  .author-bio-kaution-maklergebuehr-kosten {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
  }

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

  .intro-content-kaution-maklergebuehr-kosten {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .intro-text-kaution-maklergebuehr-kosten {
    flex: 1;
  }

  .intro-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

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

  .intro-highlight-kaution-maklergebuehr-kosten {
    flex: 1;
  }

  .highlight-box-kaution-maklergebuehr-kosten {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
  }

  .highlight-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
  }

  .highlight-list-kaution-maklergebuehr-kosten {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .highlight-item-kaution-maklergebuehr-kosten {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding-left: 1.5rem;
    position: relative;
  }

  .highlight-item-kaution-maklergebuehr-kosten::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }

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

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

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

  .content-four-kaution-maklergebuehr-kosten {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .content-header-kaution-maklergebuehr-kosten {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .section-number-kaution-maklergebuehr-kosten {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.3;
    flex-shrink: 0;
  }

  .content-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-accent);
  }

  .content-one-kaution-maklergebuehr-kosten .content-title-kaution-maklergebuehr-kosten {
    color: var(--color-accent);
  }

  .content-two-kaution-maklergebuehr-kosten .content-title-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
  }

  .content-three-kaution-maklergebuehr-kosten .content-title-kaution-maklergebuehr-kosten {
    color: var(--color-accent);
  }

  .content-four-kaution-maklergebuehr-kosten .content-title-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
  }

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

  .content-text-kaution-maklergebuehr-kosten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-image-kaution-maklergebuehr-kosten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-one-kaution-maklergebuehr-kosten .content-text-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-one-kaution-maklergebuehr-kosten .content-paragraph-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-two-kaution-maklergebuehr-kosten .content-text-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-two-kaution-maklergebuehr-kosten .content-paragraph-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-three-kaution-maklergebuehr-kosten .content-text-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-three-kaution-maklergebuehr-kosten .content-paragraph-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-four-kaution-maklergebuehr-kosten .content-text-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-four-kaution-maklergebuehr-kosten .content-paragraph-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
  }

  .content-paragraph-kaution-maklergebuehr-kosten {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .content-subheading-kaution-maklergebuehr-kosten {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: var(--color-accent);
    margin: 2rem 0 1rem 0;
  }

  .content-two-kaution-maklergebuehr-kosten .content-subheading-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
  }

  .content-four-kaution-maklergebuehr-kosten .content-subheading-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
  }

  .content-list-kaution-maklergebuehr-kosten {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .list-item-kaution-maklergebuehr-kosten::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }

  .content-img-kaution-maklergebuehr-kosten {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .budget-box-kaution-maklergebuehr-kosten {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
  }

  .budget-item-kaution-maklergebuehr-kosten {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
  }

  .budget-item-kaution-maklergebuehr-kosten:last-child {
    border-bottom: none;
  }

  .budget-label-kaution-maklergebuehr-kosten {
    color: var(--color-text-secondary);
    font-weight: 500;
  }

  .budget-amount-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
    font-weight: 600;
  }

  .budget-total-kaution-maklergebuehr-kosten {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0 0;
    margin-top: 1rem;
    border-top: 2px solid var(--color-accent);
    font-size: 1.1rem;
    font-weight: 700;
  }

  .budget-total-label-kaution-maklergebuehr-kosten {
    color: var(--color-text-primary);
  }

  .budget-total-amount-kaution-maklergebuehr-kosten {
    color: var(--color-accent);
  }

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

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

  .related-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-accent);
    text-align: center;
  }

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

  .related-card-kaution-maklergebuehr-kosten {
    flex: 1 1 calc(33.333% - 1.7rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .related-card-kaution-maklergebuehr-kosten:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .related-image-kaution-maklergebuehr-kosten {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .related-img-kaution-maklergebuehr-kosten {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .related-text-kaution-maklergebuehr-kosten {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
  }

  .related-card-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
  }

  .related-card-desc-kaution-maklergebuehr-kosten {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
    flex: 1;
    line-height: 1.6;
  }

  .related-link-kaution-maklergebuehr-kosten {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
  }

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

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

  .conclusion-content-kaution-maklergebuehr-kosten {
    max-width: 800px;
    margin: 0 auto;
  }

  .conclusion-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
  }

  .conclusion-text-kaution-maklergebuehr-kosten {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .conclusion-cta-kaution-maklergebuehr-kosten {
    display: inline-block;
    padding: clamp(0.75rem, 1vw + 0.5rem, 1rem) clamp(1.5rem, 2vw, 2rem);
    background: var(--color-accent);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    margin-top: 1rem;
  }

  .conclusion-cta-kaution-maklergebuehr-kosten:hover {
    background: var(--color-accent-hover);
    color: #ffffff;
    text-decoration: none;
  }

  .disclaimer-section-kaution-maklergebuehr-kosten {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-kaution-maklergebuehr-kosten {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
  }

  .disclaimer-title-kaution-maklergebuehr-kosten {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
  }

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

  @media (max-width: 768px) {
    .content-wrapper-kaution-maklergebuehr-kosten {
      flex-direction: column;
    }

    .content-text-kaution-maklergebuehr-kosten {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .content-image-kaution-maklergebuehr-kosten {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .author-inline-kaution-maklergebuehr-kosten {
      flex-direction: column;
      align-items: flex-start;
    }

    .author-photo-kaution-maklergebuehr-kosten {
      width: 100px;
      height: 100px;
    }

    .content-header-kaution-maklergebuehr-kosten {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .section-number-kaution-maklergebuehr-kosten {
      font-size: 2rem;
    }

    .related-card-kaution-maklergebuehr-kosten {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .related-cards-kaution-maklergebuehr-kosten {
      justify-content: stretch;
    }

    .budget-box-kaution-maklergebuehr-kosten {
      font-size: 0.875rem;
    }
  }

  @media (max-width: 480px) {
    .hero-meta-kaution-maklergebuehr-kosten {
      gap: 1rem;
      font-size: 0.8rem;
    }

    .breadcrumbs-kaution-maklergebuehr-kosten {
      font-size: 0.75rem;
    }

    .highlight-list-kaution-maklergebuehr-kosten {
      gap: 0.5rem;
    }

    .highlight-item-kaution-maklergebuehr-kosten {
      font-size: 0.875rem;
    }
  }

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

.main-moebel-ausstattung-erste-wohnung {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-moebel-ausstattung-erste-wohnung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-moebel-ausstattung-erste-wohnung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-moebel-ausstattung-erste-wohnung span {
  color: var(--color-text-muted);
}

.breadcrumbs-moebel-ausstattung-erste-wohnung > span:last-child {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-content-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-bg-card);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
}

.meta-reading-moebel-ausstattung-erste-wohnung,
.meta-level-moebel-ausstattung-erste-wohnung,
.meta-date-moebel-ausstattung-erste-wohnung {
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
  background: var(--color-bg-tertiary);
  border-radius: 0.375rem;
}

.hero-image-wrapper-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
  }

  .hero-text-wrapper-moebel-ausstattung-erste-wohnung,
  .hero-image-wrapper-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-moebel-ausstattung-erste-wohnung {
    max-height: 300px;
  }
}

.author-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-inline-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.author-photo-moebel-ausstattung-erste-wohnung {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-label-moebel-ausstattung-erste-wohnung {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-name-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.author-name-moebel-ausstattung-erste-wohnung a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-name-moebel-ausstattung-erste-wohnung a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.author-role-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.intro-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
  }

  .intro-text-moebel-ausstattung-erste-wohnung,
  .intro-image-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-img-moebel-ausstattung-erste-wohnung {
    max-height: 300px;
  }
}

.essentials-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.essentials-header-moebel-ausstattung-erste-wohnung {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.essentials-number-moebel-ausstattung-erste-wohnung {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
}

.essentials-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.essentials-layout-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.essentials-text-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.essentials-paragraph-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.essentials-checklist-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-card);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-accent);
}

.essentials-checklist-label-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.essentials-list-moebel-ausstattung-erste-wohnung {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.essentials-list-item-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.essentials-list-item-moebel-ausstattung-erste-wohnung:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.essentials-image-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.essentials-image-img-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .essentials-layout-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
  }

  .essentials-text-moebel-ausstattung-erste-wohnung,
  .essentials-image-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .essentials-image-img-moebel-ausstattung-erste-wohnung {
    max-height: 300px;
  }
}

.kitchen-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.kitchen-header-moebel-ausstattung-erste-wohnung {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.kitchen-number-moebel-ausstattung-erste-wohnung {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--color-secondary);
  opacity: 0.15;
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
}

.kitchen-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.kitchen-layout-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.kitchen-image-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.kitchen-image-img-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.kitchen-text-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.kitchen-paragraph-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.kitchen-highlight-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.75rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-secondary);
}

.kitchen-highlight-label-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kitchen-highlight-text-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .kitchen-layout-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
  }

  .kitchen-image-moebel-ausstattung-erste-wohnung,
  .kitchen-text-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .kitchen-image-img-moebel-ausstattung-erste-wohnung {
    max-height: 300px;
  }
}

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

.related-header-moebel-ausstattung-erste-wohnung {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-moebel-ausstattung-erste-wohnung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: var(--color-bg-card);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-card-moebel-ausstattung-erste-wohnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.related-card-image-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-body-moebel-ausstattung-erste-wohnung {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-title-moebel-ausstattung-erste-wohnung a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-title-moebel-ausstattung-erste-wohnung a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.related-card-text-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .related-card-moebel-ausstattung-erste-wohnung {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
  }
}

.storage-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.storage-header-moebel-ausstattung-erste-wohnung {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.storage-number-moebel-ausstattung-erste-wohnung {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
}

.storage-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.storage-layout-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.storage-text-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-paragraph-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.storage-comparison-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.storage-comparison-item-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.75rem;
  border-left: 4px solid var(--color-secondary);
}

.storage-comparison-label-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.storage-comparison-desc-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.storage-image-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-image-img-moebel-ausstattung-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .storage-layout-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
  }

  .storage-text-moebel-ausstattung-erste-wohnung,
  .storage-image-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .storage-image-img-moebel-ausstattung-erste-wohnung {
    max-height: 300px;
  }
}

.smart-buying-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.smart-buying-header-moebel-ausstattung-erste-wohnung {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.smart-buying-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.smart-buying-subtitle-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.smart-buying-cards-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.smart-buying-card-moebel-ausstattung-erste-wohnung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.smart-buying-card-moebel-ausstattung-erste-wohnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.smart-buying-icon-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  display: block;
}

.smart-buying-card-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.smart-buying-card-text-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .smart-buying-card-moebel-ausstattung-erste-wohnung {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .smart-buying-card-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
  }
}

.checklist-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-intro-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-table-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-tertiary);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.checklist-row-moebel-ausstattung-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.checklist-row-moebel-ausstattung-erste-wohnung:last-child {
  border-bottom: none;
}

.checklist-header-moebel-ausstattung-erste-wohnung {
  background: rgba(0, 0, 0, 0.2);
}

.checklist-total-moebel-ausstattung-erste-wohnung {
  background: rgba(124, 58, 237, 0.1);
  border-top: 2px solid var(--color-accent);
}

.checklist-item-col-moebel-ausstattung-erste-wohnung,
.checklist-price-col-moebel-ausstattung-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-header-moebel-ausstattung-erste-wohnung .checklist-item-col-moebel-ausstattung-erste-wohnung,
.checklist-header-moebel-ausstattung-erste-wohnung .checklist-price-col-moebel-ausstattung-erste-wohnung {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.checklist-item-col-moebel-ausstattung-erste-wohnung,
.checklist-price-col-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-total-moebel-ausstattung-erste-wohnung .checklist-item-col-moebel-ausstattung-erste-wohnung,
.checklist-total-moebel-ausstattung-erste-wohnung .checklist-price-col-moebel-ausstattung-erste-wohnung {
  color: var(--color-bg-card);
  font-weight: 600;
}

@media (max-width: 640px) {
  .checklist-row-moebel-ausstattung-erste-wohnung {
    flex-direction: column;
    gap: 0.5rem;
  }

  .checklist-item-col-moebel-ausstattung-erste-wohnung,
  .checklist-price-col-moebel-ausstattung-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-moebel-ausstattung-erste-wohnung {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-moebel-ausstattung-erste-wohnung:last-child {
  margin-bottom: 0;
}

.disclaimer-section-moebel-ausstattung-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-moebel-ausstattung-erste-wohnung {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 0.75rem;
  border-left: 4px solid var(--color-accent);
}

.disclaimer-title-moebel-ausstattung-erste-wohnung {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-bg-card);
  font-weight: 600;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-moebel-ausstattung-erste-wohnung {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.main-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  overflow: hidden;
}

.main-budgetplan-ausgabenlimits-erste-wohnung h1,
.main-budgetplan-ausgabenlimits-erste-wohnung h2,
.main-budgetplan-ausgabenlimits-erste-wohnung h3,
.main-budgetplan-ausgabenlimits-erste-wohnung h4,
.main-budgetplan-ausgabenlimits-erste-wohnung h5,
.main-budgetplan-ausgabenlimits-erste-wohnung h6,
.main-budgetplan-ausgabenlimits-erste-wohnung p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.breadcrumbs-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-budgetplan-ausgabenlimits-erste-wohnung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-budgetplan-ausgabenlimits-erste-wohnung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-budgetplan-ausgabenlimits-erste-wohnung span {
  color: var(--color-text-muted);
}

.hero-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-lead-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-budgetplan-ausgabenlimits-erste-wohnung {
  color: var(--color-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.hero-image-wrapper-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-budgetplan-ausgabenlimits-erste-wohnung {
    flex-direction: column;
  }

  .hero-text-wrapper-budgetplan-ausgabenlimits-erste-wohnung,
  .hero-image-wrapper-budgetplan-ausgabenlimits-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-budgetplan-ausgabenlimits-erste-wohnung {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

.author-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-inline-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.author-photo-budgetplan-ausgabenlimits-erste-wohnung {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-label-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.author-name-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.author-name-budgetplan-ausgabenlimits-erste-wohnung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-budgetplan-ausgabenlimits-erste-wohnung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.author-role-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.intro-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.intro-paragraph-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-budgetplan-ausgabenlimits-erste-wohnung {
    flex-direction: column;
  }

  .intro-text-budgetplan-ausgabenlimits-erste-wohnung,
  .intro-image-budgetplan-ausgabenlimits-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.steps-header-budgetplan-ausgabenlimits-erste-wohnung {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.steps-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.steps-subtitle-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.step-item-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.step-number-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  width: clamp(4rem, 10vw, 6rem);
  text-align: center;
  line-height: 1;
}

.step-text-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-heading-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.step-paragraph-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.step-paragraph-budgetplan-ausgabenlimits-erste-wohnung:last-child {
  margin-bottom: 0;
}

.cost-list-budgetplan-ausgabenlimits-erste-wohnung,
.budget-allocation-budgetplan-ausgabenlimits-erste-wohnung,
.limits-list-budgetplan-ausgabenlimits-erste-wohnung {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cost-item-budgetplan-ausgabenlimits-erste-wohnung,
.allocation-item-budgetplan-ausgabenlimits-erste-wohnung,
.limit-item-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.cost-item-budgetplan-ausgabenlimits-erste-wohnung:before,
.allocation-item-budgetplan-ausgabenlimits-erste-wohnung:before,
.limit-item-budgetplan-ausgabenlimits-erste-wohnung:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.step-image-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-img-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .step-item-budgetplan-ausgabenlimits-erste-wohnung {
    flex-direction: column;
  }

  .step-text-budgetplan-ausgabenlimits-erste-wohnung,
  .step-image-budgetplan-ausgabenlimits-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-budgetplan-ausgabenlimits-erste-wohnung {
    width: auto;
  }
}

.related-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.related-cards-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-budgetplan-ausgabenlimits-erste-wohnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.related-image-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}

.related-card-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  padding: 0 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-card-title-budgetplan-ausgabenlimits-erste-wohnung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-title-budgetplan-ausgabenlimits-erste-wohnung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.related-card-text-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-cards-budgetplan-ausgabenlimits-erste-wohnung {
    flex-direction: column;
  }

  .related-card-budgetplan-ausgabenlimits-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.tip-card-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-heading-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-top: 0.5rem;
}

.tip-text-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.tools-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tools-intro-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tool-item-budgetplan-ausgabenlimits-erste-wohnung {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tool-item-budgetplan-ausgabenlimits-erste-wohnung:last-child {
  margin-bottom: 0;
}

.tool-name-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-secondary);
  margin: 0 0 0.5rem 0;
}

.tool-description-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.tools-image-budgetplan-ausgabenlimits-erste-wohnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-budgetplan-ausgabenlimits-erste-wohnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .tools-content-budgetplan-ausgabenlimits-erste-wohnung {
    flex-direction: column;
  }

  .tools-text-budgetplan-ausgabenlimits-erste-wohnung,
  .tools-image-budgetplan-ausgabenlimits-erste-wohnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-budgetplan-ausgabenlimits-erste-wohnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.conclusion-cta-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.disclaimer-section-budgetplan-ausgabenlimits-erste-wohnung {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-budgetplan-ausgabenlimits-erste-wohnung {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
}

.disclaimer-text-budgetplan-ausgabenlimits-erste-wohnung {
  font-size: clamp(0.8125rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-budgetplan-ausgabenlimits-erste-wohnung {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

html, body {
  width: 100%;
}

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-wohngeld-antrag-berechtigung {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-wrapper-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-wohngeld-antrag-berechtigung a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-wohngeld-antrag-berechtigung a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-wohngeld-antrag-berechtigung span {
  color: var(--color-text-muted);
}

.hero-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-bg-card);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero-lead-wohngeld-antrag-berechtigung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
}

.meta-item-wohngeld-antrag-berechtigung i {
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-image-wrapper-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

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

  .hero-text-wrapper-wohngeld-antrag-berechtigung,
  .hero-image-wrapper-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-wohngeld-antrag-berechtigung {
    margin-bottom: 1.5rem;
  }
}

.author-section-wohngeld-antrag-berechtigung {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-block-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
}

.author-photo-wohngeld-antrag-berechtigung {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-primary);
}

.author-info-wohngeld-antrag-berechtigung {
  flex: 1;
}

.author-label-wohngeld-antrag-berechtigung {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.author-name-wohngeld-antrag-berechtigung {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.author-name-wohngeld-antrag-berechtigung a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-wohngeld-antrag-berechtigung a:hover {
  color: var(--color-primary);
}

.author-position-wohngeld-antrag-berechtigung {
  font-size: clamp(0.85rem, 1.2vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .author-block-wohngeld-antrag-berechtigung {
    flex-direction: column;
    text-align: center;
  }

  .author-photo-wohngeld-antrag-berechtigung {
    width: 100px;
    height: 100px;
  }
}

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

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

.intro-text-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-wohngeld-antrag-berechtigung {
  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-image-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
  .intro-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .intro-text-wohngeld-antrag-berechtigung,
  .intro-image-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.eligibility-section-wohngeld-antrag-berechtigung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.eligibility-header-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-number-wohngeld-antrag-berechtigung {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}

.eligibility-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  font-weight: 700;
  line-height: 1.2;
}

.eligibility-content-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.eligibility-text-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.eligibility-paragraph-wohngeld-antrag-berechtigung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.eligibility-highlight-wohngeld-antrag-berechtigung {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.5rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.eligibility-highlight-wohngeld-antrag-berechtigung p {
  color: var(--color-bg-card);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.7;
}

.eligibility-image-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.eligibility-img-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
  .eligibility-header-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .eligibility-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .eligibility-text-wohngeld-antrag-berechtigung,
  .eligibility-image-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.requirements-header-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.requirements-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.requirements-content-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.requirements-text-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-paragraph-wohngeld-antrag-berechtigung {
  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);
}

.requirements-checklist-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.checklist-item-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-item-wohngeld-antrag-berechtigung i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-item-wohngeld-antrag-berechtigung p {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.requirements-image-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-img-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
  .requirements-header-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .requirements-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .requirements-text-wohngeld-antrag-berechtigung,
  .requirements-image-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.related-header-wohngeld-antrag-berechtigung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.related-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-bg-card);
  font-weight: 700;
  line-height: 1.2;
}

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

.related-card-wohngeld-antrag-berechtigung {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 100%;
  min-width: 250px;
  background: var(--color-bg-card);
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-wohngeld-antrag-berechtigung:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.related-card-image-wohngeld-antrag-berechtigung {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-wohngeld-antrag-berechtigung {
  padding: clamp(1.25rem, 2vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

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

.related-card-link-wohngeld-antrag-berechtigung {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.related-card-link-wohngeld-antrag-berechtigung:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-wohngeld-antrag-berechtigung {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

@media (max-width: 640px) {
  .related-card-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
  }
}

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

.process-header-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.process-content-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.process-text-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-paragraph-wohngeld-antrag-berechtigung {
  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);
}

.process-steps-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.step-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-wohngeld-antrag-berechtigung {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  color: var(--color-bg-card);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text-wohngeld-antrag-berechtigung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-image-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-img-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
  .process-header-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .process-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .process-text-wohngeld-antrag-berechtigung,
  .process-image-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-wohngeld-antrag-berechtigung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-header-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-bg-card);
  font-weight: 700;
  line-height: 1.2;
}

.tips-content-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tips-text-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-paragraph-wohngeld-antrag-berechtigung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tips-list-wohngeld-antrag-berechtigung {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.tips-item-wohngeld-antrag-berechtigung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.tips-item-wohngeld-antrag-berechtigung::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.tips-item-wohngeld-antrag-berechtigung strong {
  color: var(--color-bg-card);
  font-weight: 700;
}

.tips-image-wohngeld-antrag-berechtigung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-img-wohngeld-antrag-berechtigung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
  .tips-header-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .tips-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }

  .tips-text-wohngeld-antrag-berechtigung,
  .tips-image-wohngeld-antrag-berechtigung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-wohngeld-antrag-berechtigung {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-text-wohngeld-antrag-berechtigung {
  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);
}

.conclusion-text-wohngeld-antrag-berechtigung:last-child {
  margin-bottom: 0;
}

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

.disclaimer-content-wohngeld-antrag-berechtigung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-icon-wohngeld-antrag-berechtigung {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-icon-wohngeld-antrag-berechtigung i {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-text-wohngeld-antrag-berechtigung {
  flex: 1;
}

.disclaimer-title-wohngeld-antrag-berechtigung {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-bg-card);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-body-wohngeld-antrag-berechtigung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-wohngeld-antrag-berechtigung {
    flex-direction: column;
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, span, li, a, cite, blockquote {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.budgeting-journey-about {
  background: var(--color-bg-primary);
}

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

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

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

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

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

.hero-visual-about {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.story-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-card);
  overflow: hidden;
  border-top: 2px solid var(--color-border-light);
}

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

.story-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.story-tag-about {
  display: inline-block;
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.story-text-about {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
}

.story-text-about p {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
}

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

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

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.expertise-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.expertise-card-about {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 400px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.12);
  border-color: var(--color-primary);
}

.expertise-icon-about {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

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

.approach-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-card);
  overflow: hidden;
  border-top: 2px solid var(--color-border-light);
}

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

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.approach-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

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

.approach-text-about {
  flex: 1 1 45%;
  min-width: 280px;
}

.approach-text-about p {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.approach-visual-about {
  flex: 1 1 45%;
  min-width: 280px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

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

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

.values-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.values-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.values-subtitle-about {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.values-item-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.values-icon-about {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.values-text-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.values-item-title-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.values-item-desc-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.commitment-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-card);
  overflow: hidden;
  border-top: 2px solid var(--color-border-light);
}

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

.commitment-box-about {
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  border: 2px solid var(--color-border);
  text-align: center;
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.commitment-text-about {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 2vw, 2rem);
}

.commitment-cta-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
}

.commitment-cta-about:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

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

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 900px;
}

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

  .approach-split-about {
    flex-direction: column;
  }

  .approach-text-about,
  .approach-visual-about {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .approach-visual-about {
    height: 300px;
  }

  .values-item-about {
    flex-direction: column;
    gap: 1rem;
  }

  .values-icon-about {
    align-self: flex-start;
  }
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

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

html,
body {
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

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

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-author-julia-brenner {
  background: var(--color-bg-primary);
}

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

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

@media (min-width: 768px) {
  .hero-content-julia-brenner {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

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

@media (min-width: 768px) {
  .hero-text-julia-brenner {
    flex: 1 1 50%;
  }
}

.hero-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-julia-brenner {
  color: var(--color-bg-secondary);
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-julia-brenner {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.hero-description-julia-brenner {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.hero-stats-julia-brenner {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.stat-number-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.stat-label-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  line-height: var(--line-height-normal);
}

.hero-image-julia-brenner {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-image-julia-brenner {
    flex: 1 1 50%;
  }
}

.hero-photo-julia-brenner {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  display: block;
}

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

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

.origin-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.origin-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.origin-title-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.origin-story-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .origin-story-julia-brenner {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
    align-items: flex-start;
  }
}

.origin-text-julia-brenner {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .origin-text-julia-brenner {
    flex: 1 1 55%;
  }
}

.origin-paragraph-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.origin-timeline-julia-brenner {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .origin-timeline-julia-brenner {
    flex: 1 1 45%;
  }
}

.timeline-item-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  border-left: 2px solid var(--color-accent);
}

.timeline-year-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

.timeline-text-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-normal);
}

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

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

.expertise-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.expertise-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expertise-title-julia-brenner {
  color: var(--color-bg-secondary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.expertise-subtitle-julia-brenner {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

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

.expertise-card-julia-brenner {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 280px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: var(--transition-base);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.expertise-card-julia-brenner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.expertise-card-icon-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.expertise-card-title-julia-brenner {
  color: var(--color-bg-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.expertise-card-text-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
}

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

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

.philosophy-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.philosophy-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.philosophy-title-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

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

@media (min-width: 768px) {
  .philosophy-split-julia-brenner {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
    align-items: flex-start;
  }
}

.philosophy-text-julia-brenner {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

@media (min-width: 768px) {
  .philosophy-text-julia-brenner {
    flex: 1 1 50%;
  }
}

.philosophy-subheading-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.philosophy-principles-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.principle-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.principle-title-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.principle-text-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
}

.philosophy-highlight-julia-brenner {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .philosophy-highlight-julia-brenner {
    flex: 1 1 50%;
  }
}

.highlight-box-julia-brenner {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 450px;
}

.highlight-text-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

.highlight-author-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 700;
}

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

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

.credentials-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.credentials-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.credentials-title-julia-brenner {
  color: var(--color-bg-secondary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.credentials-grid-julia-brenner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.credential-block-julia-brenner {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 350px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.credential-heading-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.credential-list-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  list-style: none;
}

.credential-item-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  padding-left: var(--spacing-lg);
  position: relative;
}

.credential-item-julia-brenner:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

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

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

.articles-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.articles-tag-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.articles-title-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.articles-subtitle-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.articles-grid-julia-brenner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.article-card-julia-brenner {
  flex: 1 1 100%;
  min-width: 260px;
  max-width: 300px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: var(--transition-base);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

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

.article-card-header-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}

.article-card-title-julia-brenner {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.article-card-excerpt-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.article-card-footer-julia-brenner {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-sm);
}

.article-card-link-julia-brenner {
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition-fast);
}

.article-card-julia-brenner:hover .article-card-link-julia-brenner {
  color: var(--color-accent-hover);
}

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

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

.contact-header-julia-brenner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 600px;
}

.contact-title-julia-brenner {
  color: var(--color-bg-secondary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.contact-description-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.contact-box-julia-brenner {
  width: 100%;
  max-width: 500px;
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.contact-box-content-julia-brenner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
}

.contact-box-text-julia-brenner {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

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

.btn-contact-julia-brenner {
  background: var(--color-accent);
  color: var(--color-bg-card);
}

.btn-contact-julia-brenner:hover {
  background: var(--color-accent-hover);
}

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

  .hero-text-julia-brenner {
    order: 2;
  }

  .hero-image-julia-brenner {
    order: 1;
    max-width: 300px;
  }

  .origin-story-julia-brenner {
    flex-direction: column;
  }

  .philosophy-split-julia-brenner {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .expertise-card-julia-brenner {
    flex: 1 1 calc(50% - 1rem);
    min-width: 240px;
  }

  .credential-block-julia-brenner {
    flex: 1 1 calc(50% - 1rem);
  }

  .article-card-julia-brenner {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .expertise-card-julia-brenner {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    max-width: none;
  }

  .credential-block-julia-brenner {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    max-width: none;
  }

  .article-card-julia-brenner {
    flex: 1 1 calc(50% - 1rem);
    min-width: 240px;
    max-width: none;
  }
}

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

.portfolio-hero {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.portfolio-projects {
  padding: var(--spacing-4xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-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-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card__content {
  padding: var(--spacing-lg);
}

.portfolio-card__category {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.025rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-card__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.portfolio-card__details li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.portfolio-card__details li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.portfolio-cta {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-cta__button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  background-color: var(--color-primary);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: 2px solid var(--color-primary);
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .portfolio-projects {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card__image-wrapper {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .portfolio-projects {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

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

  .portfolio-card__image-wrapper {
    height: 300px;
  }

  .portfolio-card__content {
    padding: var(--spacing-xl);
  }

  .portfolio-cta {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }
}

@media (min-width: 1280px) {
  .portfolio-hero__container,
  .portfolio-projects__container,
  .portfolio-cta__container {
    max-width: 1280px;
    margin: 0 auto;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.services-hero {
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.services-hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.services-hero-content {
  padding: var(--spacing-lg) 0;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.services-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.services-cards-section {
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.services-cards-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.services-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.services-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-lighter);
  border-radius: var(--radius-md);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: var(--line-height-tight);
}

.services-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-md) 0;
  flex-grow: 1;
}

.services-card-cta {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-sm) 0;
  border-bottom: 2px solid var(--color-primary);
  transition: var(--transition-fast);
  width: fit-content;
}

.services-card-cta:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
  padding-bottom: calc(var(--spacing-sm) - 2px);
}

.services-cta-section {
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.services-cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.services-cta-content {
  padding: var(--spacing-lg) 0;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-lg) 0;
}

.services-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  background-color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.services-cta-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .services-hero-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .services-hero-image {
    min-height: 350px;
  }

  .services-cards-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .services-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .services-cta-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .services-cta-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .services-cta-image {
    min-height: 350px;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .services-hero-image {
    min-height: 420px;
  }

  .services-cards-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .services-card {
    padding: var(--spacing-xl);
  }

  .services-cta-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-cta-image {
    min-height: 420px;
  }
}

@media (min-width: 1200px) {
  .services-cards-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.budget-legal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.budget-legal main {
  width: 100%;
}

.budget-legal .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.budget-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) 0;
}

.budget-legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

.budget-legal .updated-date {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  font-style: italic;
}

.budget-legal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

.budget-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.budget-legal ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.budget-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.budget-legal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-3xl);
  border-left: 4px solid var(--color-primary);
}

.budget-legal .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.budget-legal .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.budget-legal .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.budget-legal .contact-item {
  color: var(--color-text-primary);
}

.budget-legal .contact-item strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .budget-legal .content {
    padding: var(--spacing-4xl) 0;
  }

  .budget-legal .contact-section {
    padding: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .budget-legal .container {
    padding: 0 var(--spacing-lg);
  }

  .budget-legal .content {
    padding: var(--spacing-4xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
}

.thank-section {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-icon {
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon svg {
  color: var(--color-success);
  width: 80px;
  height: 80px;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.thank-content .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

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

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

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

@media (min-width: 480px) {
  .thank-section {
    padding: var(--spacing-4xl) 0;
  }
  
  .thank-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 768px) {
  .thank-page {
    padding: var(--spacing-lg) 0;
  }
  
  .thank-section {
    padding: var(--spacing-4xl) 0;
  }
  
  .thank-content {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    min-height: 100vh;
    padding: 0;
  }
  
  .thank-section {
    padding: var(--spacing-4xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .thank-content {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }
  
  .thank-icon svg {
    width: 120px;
    height: 120px;
  }
}

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--spacing-2xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-code-container {
  margin-bottom: var(--spacing-2xl);
  perspective: 1000px;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  display: block;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  animation: slideDown 0.6s ease-out;
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-details {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  animation: fadeIn 1s ease-out 0.3s both;
}

.error-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-normal);
}

.error-list {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.error-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

.error-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  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);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .error-details {
    padding: var(--spacing-xl);
  }

  .error-list li {
    padding-left: var(--spacing-xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .error-wrapper {
    animation: fadeInUp 1s ease-out;
  }

  .error-code-container {
    margin-bottom: var(--spacing-3xl);
  }

  .error-title {
    margin-bottom: var(--spacing-xl);
  }

  .error-message {
    margin-bottom: var(--spacing-2xl);
  }

  .error-details {
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl);
  }

  .btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .container {
    padding: 0 var(--spacing-xl);
  }

  .error-code-container {
    margin-bottom: var(--spacing-3xl);
  }

  .error-details {
    border-width: 2px;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--spacing-4xl) 0;
  }
}

.contact-get-started {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-get-started-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.contact-get-started-hero-content {
  padding: 0 var(--spacing-lg);
}

.contact-get-started-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

.contact-get-started-main {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: var(--spacing-4xl) 0;
  }
  
  .contact-get-started-main {
    padding: var(--spacing-4xl) 0;
  }
}

.contact-get-started-content {
  padding: 0 var(--spacing-lg);
}

.contact-get-started-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  width: 100%;
}

@media (min-width: 768px) {
  .contact-get-started-grid {
    flex-direction: row;
    gap: var(--spacing-3xl);
  }
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-started-form-wrapper {
    flex: 1 1 45%;
  }
}

.contact-get-started-form-box {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-get-started-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xl) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-get-started-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  position: relative;
}

.contact-get-started-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-get-started-input,
.contact-get-started-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-get-started-input::placeholder,
.contact-get-started-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-started-input:focus,
.contact-get-started-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-get-started-input:invalid:not(:placeholder-shown),
.contact-get-started-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-danger);
}

.contact-get-started-textarea {
  min-height: 140px;
  resize: vertical;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.contact-get-started-error {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  color: var(--color-danger);
  display: none;
  margin-top: -var(--spacing-sm);
}

.contact-get-started-error.active {
  display: block;
}

.contact-get-started-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  text-align: center;
}

.contact-get-started-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-get-started-submit:active {
  transform: translateY(0);
}

.contact-get-started-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-get-started-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  text-align: center;
}

.contact-get-started-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-get-started-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-started-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-get-started-info-box {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-get-started-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xl) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-info-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-get-started-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: var(--spacing-xl);
  padding-bottom: 0;
}

.contact-get-started-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-primary);
}

.contact-get-started-info-content {
  flex: 1;
  min-width: 0;
}

.contact-get-started-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xs) 0;
}

.contact-get-started-info-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-break: break-word;
}

.contact-get-started-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-get-started-info-section {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--color-border-light);
}

.contact-get-started-info-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-get-started-topics-list li {
  margin: 0;
}

.contact-get-started-topic-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: color var(--transition-base), transform var(--transition-base);
  line-height: var(--line-height-normal);
}

.contact-get-started-topic-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.contact-get-started-topic-link::before {
  content: "";
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .contact-get-started-form-box,
  .contact-get-started-info-box {
    height: 100%;
  }
}
.header-wohn-portal-hamburger,.header-wohn-portal-mobile-close,.header-wohn-portal-mobile-toggle{
  width: 34px;
}

.header-wohn-portal-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}

.header-wohn-portal-mobile-toggle[aria-expanded="true"]{
  display: none;
}
