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

:root {
  --color-bg-primary: #0f0a1e;
  --color-bg-secondary: #1a1035;
  --color-bg-tertiary: #251848;
  --color-bg-card: rgba(58, 35, 97, 0.4);
  --color-bg-card-hover: rgba(58, 35, 97, 0.6);

  --color-text-primary: #ffffff;
  --color-text-secondary: #a5b4fc;
  --color-text-muted: #7c3aed;

  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-secondary: #6366f1;
  --color-accent: #ec4899;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

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

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

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

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.55);

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  --border-width: 1px;
  --border-color: rgba(139, 92, 246, 0.2);
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
}

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

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

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-primary);
  border: var(--border-width) solid var(--color-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

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

button:active, .btn:active {
  transform: translateY(0);
}

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

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

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

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

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

input, textarea, select {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: var(--color-bg-tertiary);
}

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text-primary);
}

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

.card {
  background: var(--color-bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

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

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

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

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

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

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

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.border {
  border: var(--border-width) solid var(--border-color);
}

.border-t {
  border-top: var(--border-width) solid var(--border-color);
}

.border-b {
  border-bottom: var(--border-width) solid var(--border-color);
}

.border-l {
  border-left: var(--border-width) solid var(--border-color);
}

.border-r {
  border-right: var(--border-width) solid var(--border-color);
}

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

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

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

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .flex {
    flex-direction: column;
  }
}

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

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

  button, .btn {
    width: 100%;
  }

  input, textarea, select {
    width: 100%;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

::selection {
  background: var(--color-primary);
  color: var(--color-text-primary);
}
.header-steuern-hub {
  background: var(--color-bg-primary);
  border-bottom: var(--border-width) solid var(--color-border);
  position: static;
  z-index: 100;
  overflow: hidden;
}

.header-steuern-hub-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, 8vh, 5.5rem);
  gap: clamp(1rem, 2vw, 2rem);
}

.header-steuern-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  color: var(--color-text-primary);
  transition: opacity var(--transition-fast);
}

.header-steuern-hub-brand:hover {
  opacity: 0.8;
}

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

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

.header-steuern-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 2rem);
  flex: 1;
  justify-content: center;
  margin: 0 clamp(1rem, 2vw, 2rem);
}

.header-steuern-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.header-steuern-hub-nav-link:hover {
  color: var(--color-accent);
}

.header-steuern-hub-cta-button {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-steuern-hub-cta-button:hover {
  background: var(--color-accent-hover);
  opacity: 0.95;
  transform: translateY(-2px);
}

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

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

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

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

.header-steuern-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: var(--border-width) solid var(--color-border);
}

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

.header-steuern-hub-mobile-close:hover {
  color: var(--color-accent);
}

.header-steuern-hub-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.header-steuern-hub-mobile-link {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.header-steuern-hub-mobile-link:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background: var(--color-bg-secondary);
}

.header-steuern-hub-mobile-cta {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  margin-top: 1rem;
}

.header-steuern-hub-mobile-cta:hover {
  background: var(--color-accent-hover);
  opacity: 0.95;
}

@media (min-width: 768px) {
  .header-steuern-hub-mobile-toggle {
    display: none;
  }

  .header-steuern-hub-desktop-nav {
    display: flex;
  }

  .header-steuern-hub-mobile-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-steuern-hub-desktop-nav {
    gap: clamp(0.5rem, 1vw, 1.5rem);
  }

  .header-steuern-hub-nav-link {
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    padding: 0.5rem 0.5rem;
  }
}

    

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

html {
scroll-behavior: smooth;
}

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

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

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

.tax-hub {
width: 100%;
}

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

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

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

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

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

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

.hero-section-index {
background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.hero-text-wrapper {
flex: 1 1 45%;
}

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

.hero-subtitle-index {
font-size: clamp(1rem, 2vw, 1.25rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-buttons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1rem, 2vw, 1.5rem);
margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.stat-item-index {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

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

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

.hero-image-wrapper {
flex: 1 1 45%;
}

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

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

.hero-text-wrapper {
flex: 1 1 100%;
}

.hero-image-wrapper {
flex: 1 1 100%;
}

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

.btn {
width: 100%;
}
}

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

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

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

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

.features-subtitle-index {
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
}

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

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

.feature-card-index:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: var(--color-primary);
}

.card-icon-index {
font-size: 2.5rem;
color: var(--color-primary);
}

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

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

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

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

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

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

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

.process-subtitle-index {
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
}

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

.process-step-index {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2.5rem);
padding: clamp(1.5rem, 3vw, 2rem);
background: var(--color-bg-card);
border-radius: 12px;
box-shadow: var(--shadow-md);
}

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

.step-content-index {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.step-title-index {
font-size: clamp(1.15rem, 2vw, 1.4rem);
color: var(--color-text-primary);
}

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

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

.step-number-index {
text-align: center;
}
}

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

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

.about-text-wrapper {
flex: 1 1 45%;
}

.about-title-index {
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.2;
}

.about-text-index {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.8;
}

.about-image-wrapper {
flex: 1 1 45%;
}

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

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

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

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

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

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

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

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

.statistics-subtitle-index {
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
}

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

.stat-card-index {
flex: 1 1 240px;
max-width: 340px;
padding: clamp(1.5rem, 3vw, 2rem);
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: 12px;
box-shadow: var(--shadow-md);
display: flex;
flex-direction: column;
gap: 1rem;
text-align: center;
}

.stat-value-index {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 800;
color: var(--color-primary);
font-family: var(--font-heading);
line-height: 1;
}

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

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

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

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

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

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

.blog-subtitle-index {
font-size: clamp(0.95rem, 1.5vw, 1.15rem);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
}

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

.blog-card-index {
flex: 1 1 300px;
max-width: 400px;
background: var(--color-bg-card);
border: 1px solid var(--color-border);
border-radius: 12px;
box-shadow: var(--shadow-md);
overflow: hidden;
text-decoration: none;
color: inherit;
transition: all var(--transition-normal);
display: flex;
flex-direction: column;
}

.blog-card-index:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: var(--color-primary);
}

.blog-card-image {
overflow: hidden;
height: 220px;
}

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

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

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

.blog-card-title {
font-size: clamp(1.05rem, 2vw, 1.3rem);
color: var(--color-text-primary);
line-height: 1.3;
}

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

.read-more-index {
font-size: clamp(0.875rem, 1vw, 1rem);
color: var(--color-primary);
font-weight: 600;
display: inline-block;
}

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

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

.cta-section-index {
background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.cta-box-index {
background: var(--color-bg-card);
padding: clamp(2rem, 4vw, 3.5rem);
border-radius: 12px;
box-shadow: var(--shadow-lg);
border: 2px solid var(--color-primary);
text-align: center;
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

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

.cta-text-index {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: var(--color-text-secondary);
line-height: 1.7;
max-width: 600px;
margin: 0 auto;
}

@media (max-width: 768px) {
.cta-box-index {
padding: clamp(1.5rem, 3vw, 2rem);
}
}

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

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

.cookie-banner-text-index {
color: #ffffff;
margin: 0;
font-size: clamp(0.8rem, 1vw, 0.95rem);
max-width: 500px;
text-align: center;
line-height: 1.5;
}

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

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

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

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

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

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

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

.cookie-banner-text-index {
order: 1;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
flex: 1 1 120px;
}
}

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

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

.footer-about p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.3px;
}

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

.footer-nav-list li,
.footer-legal-list li {
  display: block;
}

.footer-nav a,
.footer-legal a {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.hero-description-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.posts-header-steuererklarung {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

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

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

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

.card-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  flex: 1 1 280px;
  max-width: 380px;
  transition: all var(--transition-normal) ease;
  box-shadow: var(--shadow-md);
}

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

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

.card-title-steuererklarung {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1 1 auto;
}

.card-meta-steuererklarung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 0.8vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
}

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

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

.card-link-steuererklarung {
  display: inline-block;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  text-align: center;
  transition: all var(--transition-normal) ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-steuererklarung:hover {
  background: var(--color-accent-hover);
  opacity: 0.9;
}

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

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

.checklist-header-steuererklarung {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

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

.checklist-subtitle-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-items-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.checklist-item-steuererklarung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.checklist-icon-steuererklarung {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-accent);
  margin-top: clamp(0.25rem, 0.5vw, 0.5rem);
}

.checklist-text-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1 1 auto;
}

.checklist-item-title-steuererklarung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-item-description-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.key-facts-section-steuererklarung {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.key-facts-header-steuererklarung {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.key-facts-title-steuererklarung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.key-facts-subtitle-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.fact-card-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  flex: 1 1 250px;
  max-width: 300px;
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-normal) ease;
}

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

.fact-number-steuererklarung {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}

.fact-label-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fact-text-steuererklarung {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-section-steuererklarung {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

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

  .checklist-section-steuererklarung {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }

  .key-facts-section-steuererklarung {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }

  .card-steuererklarung {
    flex: 1 1 300px;
  }

  .checklist-item-steuererklarung {
    padding: clamp(2rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-steuererklarung {
    padding: 6rem 0;
  }

  .posts-section-steuererklarung {
    padding: 6rem 0;
  }

  .checklist-section-steuererklarung {
    padding: 6rem 0;
  }

  .key-facts-section-steuererklarung {
    padding: 6rem 0;
  }

  .card-steuererklarung {
    flex: 1 1 320px;
  }

  .fact-card-steuererklarung {
    flex: 1 1 280px;
  }
}

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

.main-werbungskosten-absetzen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

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

.hero-text-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-werbungskosten-absetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-werbungskosten-absetzen {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
}

.meta-divider-werbungskosten-absetzen {
  color: var(--color-border);
}

.hero-image-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-werbungskosten-absetzen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.breadcrumbs-werbungskosten-absetzen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-werbungskosten-absetzen a {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.breadcrumbs-werbungskosten-absetzen span {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
}

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

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

.intro-text-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-werbungskosten-absetzen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

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

.categories-content-werbungskosten-absetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.categories-text-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.categories-title-werbungskosten-absetzen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.categories-paragraph-werbungskosten-absetzen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.categories-list-werbungskosten-absetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.category-item-werbungskosten-absetzen {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.category-name-werbungskosten-absetzen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-desc-werbungskosten-absetzen {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.categories-image-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.categories-image-werbungskosten-absetzen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

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

.details-content-werbungskosten-absetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.details-text-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-werbungskosten-absetzen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.details-paragraph-werbungskosten-absetzen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.details-highlight-werbungskosten-absetzen {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-success);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-werbungskosten-absetzen {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.highlight-text-werbungskosten-absetzen strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.details-image-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-werbungskosten-absetzen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

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

.mistakes-content-werbungskosten-absetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-werbungskosten-absetzen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-paragraph-werbungskosten-absetzen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.mistake-item-werbungskosten-absetzen {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistake-title-item-werbungskosten-absetzen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mistake-text-werbungskosten-absetzen {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.mistakes-image-werbungskosten-absetzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-werbungskosten-absetzen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

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

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

.practical-title-werbungskosten-absetzen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}

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

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

.step-number-werbungskosten-absetzen {
  flex: 0 0 auto;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  min-width: 80px;
}

.step-content-werbungskosten-absetzen {
  flex: 1 1 auto;
}

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

.step-text-werbungskosten-absetzen {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practical-quote-werbungskosten-absetzen {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-block-werbungskosten-absetzen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  margin: 0;
}

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

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

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

.conclusion-title-werbungskosten-absetzen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-werbungskosten-absetzen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-cta-werbungskosten-absetzen {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-werbungskosten-absetzen {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-text-werbungskosten-absetzen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-werbungskosten-absetzen {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.cta-button-werbungskosten-absetzen:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.related-card-werbungskosten-absetzen {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.related-card-werbungskosten-absetzen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-werbungskosten-absetzen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-desc-werbungskosten-absetzen {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.related-link-werbungskosten-absetzen {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  transition: color var(--transition-normal);
}

.related-link-werbungskosten-absetzen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

.disclaimer-content-werbungskosten-absetzen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-text-muted);
}

.disclaimer-title-werbungskosten-absetzen {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-werbungskosten-absetzen {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-werbungskosten-absetzen,
  .intro-content-werbungskosten-absetzen,
  .categories-content-werbungskosten-absetzen,
  .details-content-werbungskosten-absetzen,
  .mistakes-content-werbungskosten-absetzen {
    flex-direction: column;
  }

  .hero-text-werbungskosten-absetzen,
  .hero-image-werbungskosten-absetzen,
  .intro-text-werbungskosten-absetzen,
  .intro-image-werbungskosten-absetzen,
  .categories-text-werbungskosten-absetzen,
  .categories-image-werbungskosten-absetzen,
  .details-text-werbungskosten-absetzen,
  .details-image-werbungskosten-absetzen,
  .mistakes-text-werbungskosten-absetzen,
  .mistakes-image-werbungskosten-absetzen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-werbungskosten-absetzen {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-werbungskosten-absetzen {
    min-width: auto;
  }

  .related-card-werbungskosten-absetzen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

* {
  box-sizing: border-box;
}

.main-elster-anleitung-portal {
  display: block;
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary), sans-serif;
}

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

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

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

.hero-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-elster-anleitung-portal {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.hero-meta-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-elster-anleitung-portal {
  display: inline-block;
}

.meta-divider-elster-anleitung-portal {
  color: var(--color-border);
}

.hero-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.breadcrumbs-elster-anleitung-portal a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.breadcrumbs-elster-anleitung-portal a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumbs-elster-anleitung-portal span {
  color: var(--color-border);
}

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

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

.intro-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.intro-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.registration-content-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.registration-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.registration-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.registration-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.registration-paragraph-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.registration-steps-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.step-item-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-elster-anleitung-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(var(--color-primary-rgb, 0, 0, 0), 0.08);
  border-radius: 50%;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  flex-shrink: 0;
}

.step-text-elster-anleitung-portal {
  flex: 1;
}

.step-title-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.5;
}

.registration-note-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding: 1.25rem;
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  line-height: 1.6;
}

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

.declaration-content-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.declaration-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.declaration-paragraph-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.declaration-highlight-elster-anleitung-portal {
  background: var(--color-bg-tertiary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.highlight-title-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.highlight-list-elster-anleitung-portal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-list-elster-anleitung-portal li {
  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;
}

.highlight-list-elster-anleitung-portal li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.declaration-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

.declaration-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.expenses-content-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.expenses-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

.expenses-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.expenses-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.expenses-paragraph-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.expenses-paragraph-elster-anleitung-portal strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

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

.submission-content-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.submission-text-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.submission-paragraph-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.submission-checklist-elster-anleitung-portal {
  background: var(--color-bg-tertiary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.checklist-title-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.checklist-items-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.checkbox-elster-anleitung-portal {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.checkbox-text-elster-anleitung-portal {
  flex: 1;
}

.submission-image-elster-anleitung-portal {
  flex: 1 1 50%;
  max-width: 50%;
}

.submission-image-elster-anleitung-portal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.status-content-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.status-header-elster-anleitung-portal {
  text-align: center;
}

.status-title-elster-anleitung-portal {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.status-cards-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.status-card-elster-anleitung-portal {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.status-card-elster-anleitung-portal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-elster-anleitung-portal {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-accent);
  height: 3rem;
  display: flex;
  align-items: center;
}

.card-title-elster-anleitung-portal {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.tips-content-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tips-header-elster-anleitung-portal {
  text-align: center;
}

.tips-title-elster-anleitung-portal {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.tips-grid-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.tip-card-elster-anleitung-portal {
  flex: 1 1 240px;
  max-width: 320px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.tip-card-elster-anleitung-portal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-number-elster-anleitung-portal {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
}

.tip-title-elster-anleitung-portal {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0.5rem 0 0 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.disclaimer-content-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-box-elster-anleitung-portal {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

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

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

.disclaimer-text-elster-anleitung-portal:last-child {
  margin-bottom: 0;
}

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

.related-content-elster-anleitung-portal {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-header-elster-anleitung-portal {
  text-align: center;
}

.related-title-elster-anleitung-portal {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-cards-elster-anleitung-portal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.related-card-elster-anleitung-portal {
  flex: 1 1 300px;
  max-width: 420px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.related-card-elster-anleitung-portal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-elster-anleitung-portal {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-elster-anleitung-portal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-elster-anleitung-portal {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-elster-anleitung-portal {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.related-link-elster-anleitung-portal {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-normal);
  display: inline-block;
  margin-top: auto;
}

.related-link-elster-anleitung-portal:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-elster-anleitung-portal,
  .intro-content-elster-anleitung-portal,
  .registration-content-elster-anleitung-portal,
  .declaration-content-elster-anleitung-portal,
  .expenses-content-elster-anleitung-portal,
  .submission-content-elster-anleitung-portal {
    flex-direction: column;
  }

  .hero-text-elster-anleitung-portal,
  .hero-image-elster-anleitung-portal,
  .intro-text-elster-anleitung-portal,
  .intro-image-elster-anleitung-portal,
  .registration-image-elster-anleitung-portal,
  .registration-text-elster-anleitung-portal,
  .declaration-text-elster-anleitung-portal,
  .declaration-image-elster-anleitung-portal,
  .expenses-image-elster-anleitung-portal,
  .expenses-text-elster-anleitung-portal,
  .submission-text-elster-anleitung-portal,
  .submission-image-elster-anleitung-portal {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .registration-image-elster-anleitung-portal {
    order: 0;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

.main-handwerkerleistungen-steuererleichterung {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-handwerkerleistungen-steuererleichterung {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

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

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

.breadcrumbs-handwerkerleistungen-steuererleichterung span {
  color: var(--color-text-secondary);
}

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

.hero-text-wrapper-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.meta-item-handwerkerleistungen-steuererleichterung i {
  color: var(--color-accent);
  width: 18px;
  text-align: center;
}

.hero-image-wrapper-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-wrapper-handwerkerleistungen-steuererleichterung,
  .hero-image-wrapper-handwerkerleistungen-steuererleichterung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-handwerkerleistungen-steuererleichterung {
    max-height: 300px;
  }
}

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

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

.intro-text-block-handwerkerleistungen-steuererleichterung {
  max-width: 100%;
}

.intro-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-highlight-handwerkerleistungen-steuererleichterung {
  width: 100%;
}

.highlight-box-handwerkerleistungen-steuererleichterung {
  background: rgba(var(--color-accent-rgb), 0.08);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
}

.highlight-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.highlight-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.eligible-text-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.eligible-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.eligible-text-para-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.95rem, 1.2vw, 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;
}

.eligible-list-handwerkerleistungen-steuererleichterung {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.eligible-item-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.eligible-item-handwerkerleistungen-steuererleichterung::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1em;
}

.eligible-image-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.eligible-image-img-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .eligible-content-handwerkerleistungen-steuererleichterung {
    flex-direction: column;
  }

  .eligible-text-handwerkerleistungen-steuererleichterung,
  .eligible-image-handwerkerleistungen-steuererleichterung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .eligible-image-img-handwerkerleistungen-steuererleichterung {
    max-height: 300px;
  }
}

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

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

.requirements-image-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-image-img-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.requirements-text-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.requirements-text-para-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .requirements-content-handwerkerleistungen-steuererleichterung {
    flex-direction: column-reverse;
  }

  .requirements-image-handwerkerleistungen-steuererleichterung,
  .requirements-text-handwerkerleistungen-steuererleichterung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .requirements-image-img-handwerkerleistungen-steuererleichterung {
    max-height: 300px;
  }
}

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

.limits-content-handwerkerleistungen-steuererleichterung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.limits-text-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.limits-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.limits-text-para-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.95rem, 1.2vw, 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;
}

.limits-cards-handwerkerleistungen-steuererleichterung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.limit-card-handwerkerleistungen-steuererleichterung {
  background: rgba(var(--color-accent-rgb), 0.05);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  transition: all 0.3s ease;
}

.limit-card-handwerkerleistungen-steuererleichterung:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  transform: translateX(4px);
}

.limit-card-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.limit-card-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.limits-image-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.limits-image-img-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .limits-content-handwerkerleistungen-steuererleichterung {
    flex-direction: column;
  }

  .limits-text-handwerkerleistungen-steuererleichterung,
  .limits-image-handwerkerleistungen-steuererleichterung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .limits-image-img-handwerkerleistungen-steuererleichterung {
    max-height: 300px;
  }
}

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

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

.process-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.step-number-handwerkerleistungen-steuererleichterung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-handwerkerleistungen-steuererleichterung {
  flex: 1;
}

.step-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.step-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .process-step-handwerkerleistungen-steuererleichterung {
    gap: 1rem;
  }

  .step-number-handwerkerleistungen-steuererleichterung {
    min-width: 50px;
  }
}

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

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

.tips-text-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-intro-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.95rem, 1.2vw, 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;
}

.tips-list-handwerkerleistungen-steuererleichterung {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tips-item-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  background: rgba(var(--color-accent-rgb), 0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-item-handwerkerleistungen-steuererleichterung strong {
  color: var(--color-text-primary);
}

.tips-image-handwerkerleistungen-steuererleichterung {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-img-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .tips-content-handwerkerleistungen-steuererleichterung {
    flex-direction: column;
  }

  .tips-text-handwerkerleistungen-steuererleichterung,
  .tips-image-handwerkerleistungen-steuererleichterung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-image-img-handwerkerleistungen-steuererleichterung {
    max-height: 300px;
  }
}

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

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

.cta-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: rgba(#ffffff, 0.95);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-handwerkerleistungen-steuererleichterung {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-handwerkerleistungen-steuererleichterung:hover {
  background: rgba(#ffffff, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-handwerkerleistungen-steuererleichterung {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-handwerkerleistungen-steuererleichterung {
  background: rgba(var(--color-accent-rgb), 0.05);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
}

.disclaimer-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.disclaimer-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-handwerkerleistungen-steuererleichterung {
  flex: 1 1 calc(33.333% - 1.67rem);
  max-width: 380px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-handwerkerleistungen-steuererleichterung:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.related-card-image-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-handwerkerleistungen-steuererleichterung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-handwerkerleistungen-steuererleichterung:hover .related-card-img-handwerkerleistungen-steuererleichterung {
  transform: scale(1.05);
}

.related-card-body-handwerkerleistungen-steuererleichterung {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-handwerkerleistungen-steuererleichterung {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-handwerkerleistungen-steuererleichterung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-handwerkerleistungen-steuererleichterung {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

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

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

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

@media (max-width: 480px) {
  .hero-section-handwerkerleistungen-steuererleichterung {
    padding: 2rem 0;
  }

  .intro-section-handwerkerleistungen-steuererleichterung,
  .eligible-section-handwerkerleistungen-steuererleichterung,
  .requirements-section-handwerkerleistungen-steuererleichterung,
  .limits-section-handwerkerleistungen-steuererleichterung,
  .process-section-handwerkerleistungen-steuererleichterung,
  .tips-section-handwerkerleistungen-steuererleichterung,
  .cta-section-handwerkerleistungen-steuererleichterung,
  .disclaimer-section-handwerkerleistungen-steuererleichterung,
  .related-section-handwerkerleistungen-steuererleichterung {
    padding: 2rem 0;
  }

  .meta-item-handwerkerleistungen-steuererleichterung {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

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

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

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

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

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

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

.hero-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

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

.meta-item-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.meta-item-sonderausgaben-vorsorgeaufwendungen i {
  color: var(--color-accent);
  font-size: 0.95rem;
}

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

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

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

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

  .hero-meta-sonderausgaben-vorsorgeaufwendungen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.breadcrumbs-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 0.95vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

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

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

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

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

.intro-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

@media (max-width: 768px) {
  .intro-content-sonderausgaben-vorsorgeaufwendungen {
    flex-direction: column;
  }

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

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

.vorsorge-content-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.vorsorge-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.vorsorge-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.vorsorge-paragraph-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.vorsorge-highlight-sonderausgaben-vorsorgeaufwendungen {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.vorsorge-image-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vorsorge-img-sonderausgaben-vorsorgeaufwendungen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .vorsorge-content-sonderausgaben-vorsorgeaufwendungen {
    flex-direction: column;
  }

  .vorsorge-text-sonderausgaben-vorsorgeaufwendungen,
  .vorsorge-image-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.categories-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.categories-intro-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.category-card-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-card-sonderausgaben-vorsorgeaufwendungen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(30, 41, 59, 0.12);
}

.card-header-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.card-header-sonderausgaben-vorsorgeaufwendungen i {
  font-size: 1.75rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.card-title-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1.05rem, 1.3vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

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

@media (max-width: 1024px) {
  .category-card-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 640px) {
  .category-card-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 100%;
  }
}

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

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

.practical-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.practical-paragraph-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.practical-steps-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.step-number-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 3rem;
  text-align: center;
}

.step-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1;
}

.step-title-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practical-image-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.practical-img-sonderausgaben-vorsorgeaufwendungen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-content-sonderausgaben-vorsorgeaufwendungen {
    flex-direction: column;
  }

  .practical-text-sonderausgaben-vorsorgeaufwendungen,
  .practical-image-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.limits-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.limits-intro-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.limits-grid-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.limit-box-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.limit-category-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.limit-amount-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
  color: var(--color-accent);
  font-weight: 800;
  font-family: 'Courier New', monospace;
}

.limit-description-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .limit-box-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 100%;
  }
}

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

.mistakes-content-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.mistakes-intro-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

.mistake-list-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-item-sonderausgaben-vorsorgeaufwendungen {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.mistake-name-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mistake-explanation-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.mistakes-image-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mistakes-img-sonderausgaben-vorsorgeaufwendungen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .mistakes-content-sonderausgaben-vorsorgeaufwendungen {
    flex-direction: column;
  }

  .mistakes-text-sonderausgaben-vorsorgeaufwendungen,
  .mistakes-image-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-sonderausgaben-vorsorgeaufwendungen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-sonderausgaben-vorsorgeaufwendungen {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-accent);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-text-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.6;
}

.btn-primary-sonderausgaben-vorsorgeaufwendungen {
  display: inline-flex;
  padding: clamp(0.75rem, 1vw + 0.5rem, 1rem) clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

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

.disclaimer-content-sonderausgaben-vorsorgeaufwendungen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer-box-sonderausgaben-vorsorgeaufwendungen {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.disclaimer-title-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1.1rem, 1.3vw + 0.5rem, 1.35rem);
  color: #92400e;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.7;
}

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

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

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

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

.related-card-sonderausgaben-vorsorgeaufwendungen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 260px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-sonderausgaben-vorsorgeaufwendungen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(30, 41, 59, 0.12);
}

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

.related-img-sonderausgaben-vorsorgeaufwendungen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.related-card-text-sonderausgaben-vorsorgeaufwendungen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.related-link-sonderausgaben-vorsorgeaufwendungen {
  display: inline-flex;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.related-link-sonderausgaben-vorsorgeaufwendungen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-sonderausgaben-vorsorgeaufwendungen {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

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

@media (max-width: 640px) {
  .container {
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  }

  h1, h2, h3, h4, h5, h6 {
    word-spacing: -0.05em;
  }
}

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

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

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

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

.tax-expertise-about {
  background: var(--color-bg-primary);
}

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

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

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

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

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

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

.expertise-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.expertise-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.expertise-item-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expertise-item-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.15);
}

.expertise-item-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.expertise-item-title-about i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

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

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

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

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

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

.foundation-visual-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.foundation-header-about {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.foundation-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.foundation-list-about {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.foundation-list-about li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.foundation-list-about li:before {
  content: "";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

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

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

.services-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.services-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 1.5rem;
}

.service-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card-about:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.1);
}

.service-card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.approach-section-about {
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.approach-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.approach-steps-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.step-card-about {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition-normal);
}

.step-card-about:hover {
  transform: translateY(-4px);
}

.step-number-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-title-about {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-about {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.quote-container-about {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  border-left: 5px solid var(--color-accent);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-accent);
  font-style: normal;
  font-weight: 600;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-header-about i {
  color: var(--color-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

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

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

  .foundation-content-about {
    flex-direction: column;
  }

  .services-grid-about {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .approach-steps-about {
    flex-direction: column;
    align-items: stretch;
  }

  .step-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .expertise-grid-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
  }

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

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

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

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

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

.portfolio-hero p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 4rem 2rem;
  }

  .portfolio-hero h1 {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem 3rem;
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 250px;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-category {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-card h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.portfolio-card p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  flex: 1;
}

.portfolio-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.portfolio-card-meta span {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: 3rem 2rem;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .portfolio-card-content {
    padding: 2rem;
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: 4rem 3rem;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .portfolio-card-image {
    height: 300px;
  }
}

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

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta h2 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.portfolio-cta p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: 4rem 2rem;
  }

  .portfolio-cta h2 {
    margin-bottom: 1.5rem;
  }

  .portfolio-cta p {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 5rem 3rem;
  }
}

@media (max-width: 767px) {
  .portfolio-card {
    margin-bottom: 0.5rem;
  }

  .portfolio-card-category {
    margin-bottom: 0.75rem;
  }

  .portfolio-card h3 {
    margin-bottom: 0.75rem;
  }

  .portfolio-card p {
    margin-bottom: 1rem;
  }
}

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

.services-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.services-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 350px;
  }

  .services-hero-container {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 400px;
  }
}

.services-content {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background-color: var(--color-bg-card-hover);
}

.service-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-text {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-features li {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.5;
}

.service-card-features li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.125rem;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.services-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-cta-text {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all var(--transition-normal);
  border: var(--border-width) solid var(--color-primary);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-cta-button:active {
  transform: translateY(0);
}

.services-cta-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: none;
}

@media (min-width: 768px) {
  .services-cta {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-2xl);
  }

  .services-cta-container {
    text-align: left;
    padding: var(--space-xl);
  }

  .services-cta-title {
    margin-bottom: var(--space-lg);
  }

  .services-cta-image {
    display: block;
    max-height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-3xl);
  }

  .services-cta-container {
    padding: var(--space-2xl);
  }

  .services-cta-image {
    max-height: 450px;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: var(--space-lg);
  }

  .services-cta-container {
    order: 2;
  }

  .services-cta-image {
    order: 1;
    max-height: 300px;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
}

.tax-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.tax-docs main {
  width: 100%;
}

.tax-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.tax-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.tax-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.tax-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.tax-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.tax-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.tax-docs ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.tax-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.tax-docs .section {
  margin-bottom: var(--space-2xl);
}

.tax-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.tax-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.tax-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.tax-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .tax-docs .container {
    padding: 0 var(--space-lg);
  }

  .tax-docs .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .tax-docs .container {
    padding: 0 var(--space-xl);
  }

  .tax-docs .content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark {
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.checkmark-circle {
  stroke: var(--color-success);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.6s ease-out 0.4s forwards;
}

.checkmark-check {
  stroke: var(--color-success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.6s ease-out 0.8s forwards;
}

.thank-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  line-height: 1.5;
}

.thank-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.thank-next {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all var(--transition-normal) ease-out;
  border: var(--border-width) solid transparent;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  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);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  min-height: 52px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .thank-description,
  .thank-next {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

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

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

@media (max-width: 480px) {
  .thank-section {
    min-height: auto;
    padding: var(--space-lg) var(--space-md);
  }

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

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

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

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

  .thank-description,
  .thank-next {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
  }

  .btn-large {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
}

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

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

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: rotate-decoration 20s linear infinite;
}

@keyframes rotate-decoration {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
}

.error-context {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  background-color: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.error-context strong {
  color: var(--color-primary);
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  display: inline-block;
  letter-spacing: 0.5px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.error-footer {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-visual {
    margin-bottom: var(--space-2xl);
  }
  
  .error-content {
    gap: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }
  
  .error-code {
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .error-decoration {
    width: 150px;
    height: 150px;
  }
  
  .btn {
    width: 100%;
  }
}

.contact-feedback-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-feedback-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: 6rem 0;
  }
}

.contact-feedback-hero-content {
  text-align: center;
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 5rem 0;
  }
}

.contact-feedback-main-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

@media (max-width: 1023px) {
  .contact-feedback-grid {
    gap: var(--space-2xl);
  }
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-feedback-form-wrapper {
    flex: 1 1 45%;
    max-width: 550px;
  }
}

.contact-feedback-form-header {
  margin-bottom: var(--space-2xl);
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-sm);
}

.contact-feedback-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-feedback-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-feedback-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-feedback-input,
.contact-feedback-select,
.contact-feedback-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card);
  color: var(--color-text-primary);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition-normal), background-color var(--transition-normal);
}

.contact-feedback-input:focus,
.contact-feedback-select:focus,
.contact-feedback-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card-hover);
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-feedback-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-feedback-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
}

.contact-feedback-checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-feedback-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.contact-feedback-checkbox-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-feedback-privacy-link:hover,
.contact-feedback-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
  outline: none;
}

.contact-feedback-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-fast);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-feedback-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-feedback-submit:active {
  transform: translateY(0);
}

.contact-feedback-submit:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-feedback-info-wrapper {
    flex: 1 1 45%;
    max-width: 550px;
  }
}

.contact-feedback-info-header {
  margin-bottom: var(--space-2xl);
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-sm);
}

.contact-feedback-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-feedback-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.contact-feedback-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: var(--border-width) solid var(--border-color);
  transition: border-color var(--transition-normal), background-color var(--transition-normal);
}

.contact-feedback-info-item:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-card-hover);
}

.contact-feedback-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-feedback-info-content {
  flex: 1;
  min-width: 0;
}

.contact-feedback-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-xs);
}

.contact-feedback-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.5;
}

.contact-feedback-info-note {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  margin: var(--space-xs) 0 0 0;
}

.contact-feedback-expertise {
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: var(--border-width) solid var(--border-color);
}

.contact-feedback-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-md);
}

.contact-feedback-expertise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-feedback-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: 1.5;
}

.contact-feedback-expertise-icon {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.contact-feedback-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: var(--border-width) solid var(--border-color);
}

@media (min-width: 768px) {
  .contact-feedback-cta {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-cta {
    padding: 5rem 0;
  }
}

.contact-feedback-cta-content {
  text-align: center;
}

.contact-feedback-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-feedback-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-feedback-cta-emphasis {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .contact-feedback-grid {
    flex-direction: column;
  }

  .contact-feedback-form-wrapper,
  .contact-feedback-info-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-feedback-form-title,
  .contact-feedback-info-title {
    font-size: 1.35rem;
  }

  .contact-feedback-hero-title {
    font-size: 1.5rem;
  }

  .contact-feedback-submit {
    padding: var(--space-sm) var(--space-md);
  }

  .contact-feedback-info-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-feedback-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-feedback-input,
  .contact-feedback-select,
  .contact-feedback-textarea,
  .contact-feedback-submit,
  .contact-feedback-info-item,
  .contact-feedback-privacy-link {
    transition: none;
  }

  .contact-feedback-submit:hover {
    transform: none;
  }

  .contact-feedback-submit:active {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .contact-feedback-input:focus,
  .contact-feedback-select:focus,
  .contact-feedback-textarea:focus {
    background-color: var(--color-bg-card-hover);
  }
}
.header-steuern-hub-hamburger,.header-steuern-hub-mobile-close,.header-steuern-hub-mobile-toggle{
  width: 34px;
}

.header-steuern-hub-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;
}
