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

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-hover: #f1f5f9;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.02em;
  
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.03);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.1), 0 1px 2px 0 rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  font-weight: 400;
  overflow-x: hidden;
}

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

h1 {
  font-size: var(--text-5xl);
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: var(--letter-spacing-tight);
}

h3 {
  font-size: var(--text-3xl);
  letter-spacing: var(--letter-spacing-tight);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h6 {
  font-size: var(--text-lg);
  font-weight: 600;
}

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

p:last-child {
  margin-bottom: 0;
}

strong,
.font-bold {
  font-weight: 700;
  color: var(--color-text-primary);
}

em,
.font-italic {
  font-style: italic;
}

small,
.text-sm {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

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

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

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

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

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

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

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-secondary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

.btn-ghost:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-block {
  width: 100%;
}

button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

.card-body:last-child {
  margin-bottom: 0;
}

.card-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-bg-secondary);
}

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

input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

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

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

textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.form-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

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

ul,
ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

li:last-child {
  margin-bottom: 0;
}

.list-unstyled {
  list-style: none;
  margin-left: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin-left: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

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

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

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

.badge-warning {
  background: #fef3c7;
  color: var(--color-warning);
}

.badge-error {
  background: #fee2e2;
  color: var(--color-error);
}

.alert {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  margin-bottom: var(--space-lg);
}

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

.alert-success {
  background: #d1fae5;
  border-color: var(--color-success);
  color: #065f46;
}

.alert-warning {
  background: #fef3c7;
  border-color: var(--color-warning);
  color: #92400e;
}

.alert-error {
  background: #fee2e2;
  border-color: var(--color-error);
  color: #991b1b;
}

.alert-info {
  background: #dbeafe;
  border-color: var(--color-info);
  color: #1e40af;
}

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

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

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

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

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

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

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

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

.font-light { font-weight: 400; }
.font-normal { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.bg-primary { background: var(--color-bg-primary); }
.bg-secondary { background: var(--color-bg-secondary); }
.bg-tertiary { background: var(--color-bg-tertiary); }
.bg-card { background: var(--color-bg-card); }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

.border { border: 1px solid var(--color-bg-secondary); }
.border-t { border-top: 1px solid var(--color-bg-secondary); }
.border-b { border-bottom: 1px solid var(--color-bg-secondary); }
.border-l { border-left: 1px solid var(--color-bg-secondary); }
.border-r { border-right: 1px solid var(--color-bg-secondary); }

.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-slow) ease-in;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow) ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow) ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@media (max-width: 1440px) {
  :root {
    --space-5xl: 6rem;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --space-3xl: 2rem;
    --space-4xl: 3rem;
    --space-5xl: 4rem;
  }

  body {
    font-size: var(--text-sm);
  }

  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

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

  button,
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
  }

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

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
  }

  body {
    font-size: var(--text-sm);
  }

  h1 {
    font-size: var(--text-2xl);
  }

  h2 {
    font-size: var(--text-xl);
  }

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  .no-print,
  .btn,
  button {
    display: none !important;
  }
}
.header-steuern-deck {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: static;
  width: 100%;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-sm);
}

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

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

.header-steuern-deck-brand:hover {
  opacity: 0.85;
}

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

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

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

.header-steuern-deck-nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  white-space: nowrap;
}

.header-steuern-deck-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-steuern-deck-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-steuern-deck-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.header-steuern-deck-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header-steuern-deck-mobile-toggle:hover span {
  background: var(--color-primary);
}

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

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

.header-steuern-deck-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-bg-secondary);
  height: clamp(4rem, 10vh, 5.5rem);
}

.header-steuern-deck-mobile-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
  padding: 0;
}

.header-steuern-deck-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-steuern-deck-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: color var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-steuern-deck-mobile-link:hover {
  color: var(--color-primary);
}

.header-steuern-deck-mobile-cta {
  margin: clamp(1.5rem, 4vw, 2rem);
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

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

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

  .header-steuern-deck-cta-button {
    display: block;
  }

  .header-steuern-deck-mobile-toggle {
    display: none;
  }

  .header-steuern-deck-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-steuern-deck-logo-text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
}

    .tax-hub {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.tax-hub section {
  overflow: hidden;
}

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

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

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

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

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

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

.hero-cta-buttons .btn {
  flex: 0 1 auto;
}

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

  .hero-cta-buttons .btn {
    width: 100%;
  }
}

.hero-stats-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

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

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
}

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

.section-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

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

@media (min-width: 768px) {
  .steps-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 100%;
  min-width: 0;

  @media (min-width: 768px) {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
  }
}

.step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

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

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

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

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

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

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

.benefit-icon {
  font-size: 2rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  height: 2.5rem;
}

.benefit-card-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.benefit-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.featured-posts-section-index {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

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

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

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

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.featured-card-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.featured-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
}

.featured-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

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

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

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

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

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

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

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-bg-secondary);
}

.author-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.author-role {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
}

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

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

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

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

.stat-card {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-card-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

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

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

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

.faq-items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.faq-question {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.cta-final-section-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-final-box {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem);
  max-width: 600px;
}

.cta-final-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 0;
}

.cta-final-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 0;
}

.cta-final-box .btn {
  margin-top: 1rem;
  align-self: center;
}

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: all var(--transition-fast);
}

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

.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: all var(--transition-fast);
}

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

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1 1 auto;
    min-width: 100px;
  }

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

  .step-card {
    flex: 1 1 100%;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .featured-cards {
    flex-direction: column;
    align-items: center;
  }

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

  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .statistics-cards {
    flex-direction: column;
    align-items: center;
  }

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

  .faq-items {
    max-width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    text-align: center;
    min-width: auto;
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .benefit-icon {
    font-size: 1.75rem;
  }

  .featured-card-image {
    height: 150px;
  }

  .faq-item {
    padding: 1rem;
  }

  .cta-final-box .btn {
    width: 100%;
  }

  .cookie-banner {
    padding: 0.75rem;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

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

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

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

.footer-about {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.footer-about p {
  color: var(--color-text-light);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
  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: #ffffff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

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

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

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

.footer-nav a:hover,
.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact p {
  color: var(--color-text-light);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
  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 {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: var(--color-text-light);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .footer-about {
    flex: 1 1 100%;
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 200px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 1024px) {
  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 0 1 auto;
    min-width: 180px;
  }
}
    

.category-page-steuerliche-abzuege {
  width: 100%;
}

.hero-section-steuerliche-abzuege {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-steuerliche-abzuege {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.5;
  max-width: 600px;
}

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

.hero-text-steuerliche-abzuege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 700px;
}

.hero-secondary-text-steuerliche-abzuege {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  max-width: 700px;
}

.posts-section-steuerliche-abzuege {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.posts-subtitle-steuerliche-abzuege {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.card-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #0d1526;
  border-radius: 12px;
  flex: 1 1 clamp(300px, 30vw, 380px);
  max-width: 380px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.card-steuerliche-abzuege:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.card-image-steuerliche-abzuege {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2a3f;
}

.card-image-steuerliche-abzuege img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.card-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.card-description-steuerliche-abzuege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  flex-grow: 1;
}

.card-meta-steuerliche-abzuege {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #1a2a3f;
  font-size: 0.875rem;
}

.card-reading-time-steuerliche-abzuege,
.card-level-steuerliche-abzuege,
.card-date-steuerliche-abzuege {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-steuerliche-abzuege i,
.card-level-steuerliche-abzuege i,
.card-date-steuerliche-abzuege i {
  color: #f59e0b;
}

.card-link-steuerliche-abzuege {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.card-link-steuerliche-abzuege:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.insights-section-steuerliche-abzuege {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.insights-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.insights-intro-steuerliche-abzuege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.insight-item-steuerliche-abzuege {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #111d2f;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.insight-name-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.insight-text-steuerliche-abzuege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.checklist-section-steuerliche-abzuege {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-header-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.checklist-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.checklist-intro-steuerliche-abzuege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.checklist-items-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.checklist-item-steuerliche-abzuege {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #0d1526;
  border-radius: 8px;
  align-items: flex-start;
}

.checklist-icon-steuerliche-abzuege {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-text-steuerliche-abzuege {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist-item-title-steuerliche-abzuege {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.checklist-item-desc-steuerliche-abzuege {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .card-steuerliche-abzuege {
    flex: 1 1 clamp(280px, 45vw, 360px);
  }
}

@media (max-width: 768px) {
  .hero-section-steuerliche-abzuege {
    padding: 2rem 0;
  }

  .hero-title-steuerliche-abzuege {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero-subtitle-steuerliche-abzuege {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }

  .posts-section-steuerliche-abzuege {
    padding: 2rem 0;
  }

  .posts-title-steuerliche-abzuege {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .posts-grid-steuerliche-abzuege {
    flex-direction: column;
    align-items: stretch;
  }

  .card-steuerliche-abzuege {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-section-steuerliche-abzuege {
    padding: 2rem 0;
  }

  .insights-title-steuerliche-abzuege {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .checklist-section-steuerliche-abzuege {
    padding: 2rem 0;
  }

  .checklist-title-steuerliche-abzuege {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .checklist-item-steuerliche-abzuege {
    gap: 1rem;
  }

  .card-meta-steuerliche-abzuege {
    gap: 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section-steuerliche-abzuege {
    padding: 1.5rem 0;
  }

  .hero-title-steuerliche-abzuege {
    font-size: 1.5rem;
  }

  .hero-subtitle-steuerliche-abzuege {
    font-size: 0.95rem;
  }

  .posts-grid-steuerliche-abzuege {
    gap: 1rem;
  }

  .card-steuerliche-abzuege {
    padding: 1rem;
    gap: 1rem;
  }

  .card-title-steuerliche-abzuege {
    font-size: 1.1rem;
  }

  .card-description-steuerliche-abzuege {
    font-size: 0.875rem;
  }

  .card-meta-steuerliche-abzuege {
    flex-direction: column;
    gap: 0.5rem;
  }

  .insight-item-steuerliche-abzuege {
    padding: 1rem;
  }

  .insight-name-steuerliche-abzuege {
    font-size: 1rem;
  }

  .checklist-item-steuerliche-abzuege {
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .checklist-icon-steuerliche-abzuege {
    font-size: 1.25rem;
  }
}

.main-betriebsausgaben-dokumentation {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-betriebsausgaben-dokumentation {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-betriebsausgaben-dokumentation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-betriebsausgaben-dokumentation a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumbs-betriebsausgaben-dokumentation a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-betriebsausgaben-dokumentation span {
  color: #94a3b8;
}

.breadcrumbs-betriebsausgaben-dokumentation span:last-child {
  color: #0f172a;
  font-weight: 600;
}

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

.hero-text-betriebsausgaben-dokumentation {
  flex: 1 1 45%;
  max-width: 45%;
}

.hero-image-betriebsausgaben-dokumentation {
  flex: 1 1 45%;
  max-width: 45%;
}

.hero-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-betriebsausgaben-dokumentation {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.meta-item-betriebsausgaben-dokumentation {
  color: #64748b;
  font-weight: 500;
}

.meta-separator-betriebsausgaben-dokumentation {
  color: #cbd5e1;
}

.hero-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .hero-content-betriebsausgaben-dokumentation {
    flex-direction: column;
  }
  
  .hero-text-betriebsausgaben-dokumentation,
  .hero-image-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-betriebsausgaben-dokumentation {
    flex-wrap: wrap;
  }
}

.intro-section-betriebsausgaben-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-text-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-betriebsausgaben-dokumentation:last-child {
  margin-bottom: 0;
}

.intro-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .intro-content-betriebsausgaben-dokumentation {
    flex-direction: column;
  }
  
  .intro-text-betriebsausgaben-dokumentation,
  .intro-image-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documents-section-betriebsausgaben-dokumentation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.documents-text-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-image-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documents-paragraph-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.documents-list-betriebsausgaben-dokumentation {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.documents-subheading-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.documents-items-betriebsausgaben-dokumentation {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-item-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.document-item-betriebsausgaben-dokumentation::before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
  font-size: 1.25rem;
}

.documents-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .documents-content-betriebsausgaben-dokumentation {
    flex-direction: column;
  }
  
  .documents-text-betriebsausgaben-dokumentation,
  .documents-image-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.organization-section-betriebsausgaben-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.organization-image-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.organization-text-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.organization-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.organization-paragraph-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.organization-steps-betriebsausgaben-dokumentation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.step-card-betriebsausgaben-dokumentation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.step-number-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-title-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

.step-text-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.organization-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .organization-content-betriebsausgaben-dokumentation {
    flex-direction: column;
  }
  
  .organization-image-betriebsausgaben-dokumentation,
  .organization-text-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.categories-section-betriebsausgaben-dokumentation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.categories-header-betriebsausgaben-dokumentation {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.categories-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.categories-subtitle-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.6;
}

.categories-grid-betriebsausgaben-dokumentation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-betriebsausgaben-dokumentation {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: all var(--transition-base);
}

.category-card-betriebsausgaben-dokumentation:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.category-title-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.category-text-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 1024px) {
  .category-card-betriebsausgaben-dokumentation {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (max-width: 768px) {
  .category-card-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.storage-section-betriebsausgaben-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.storage-text-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-image-betriebsausgaben-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.storage-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.storage-paragraph-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.storage-highlight-betriebsausgaben-dokumentation {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #e0e7ff;
  border-left: 4px solid #4f46e5;
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.storage-highlight-text-betriebsausgaben-dokumentation {
  color: #312e81;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.storage-highlight-text-betriebsausgaben-dokumentation strong {
  color: #1e1b4b;
  font-weight: 600;
}

.storage-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .storage-content-betriebsausgaben-dokumentation {
    flex-direction: column;
  }
  
  .storage-text-betriebsausgaben-dokumentation,
  .storage-image-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.checklist-section-betriebsausgaben-dokumentation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-content-betriebsausgaben-dokumentation {
  max-width: 700px;
  margin: 0 auto;
}

.checklist-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-intro-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.checklist-items-betriebsausgaben-dokumentation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.checklist-item-betriebsausgaben-dokumentation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.checklist-box-betriebsausgaben-dokumentation {
  min-width: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  font-size: 1.25rem;
  color: #4f46e5;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.6;
}

.conclusion-section-betriebsausgaben-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-betriebsausgaben-dokumentation {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-betriebsausgaben-dokumentation:last-child {
  margin-bottom: 0;
}

.disclaimer-section-betriebsausgaben-dokumentation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-betriebsausgaben-dokumentation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-betriebsausgaben-dokumentation {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.disclaimer-title-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #92400e;
  font-weight: 600;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-betriebsausgaben-dokumentation {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.related-section-betriebsausgaben-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-title-betriebsausgaben-dokumentation {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-intro-betriebsausgaben-dokumentation {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

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

.related-card-betriebsausgaben-dokumentation {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-betriebsausgaben-dokumentation:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.related-card-image-betriebsausgaben-dokumentation {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-img-betriebsausgaben-dokumentation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related-card-betriebsausgaben-dokumentation:hover .related-img-betriebsausgaben-dokumentation {
  transform: scale(1.05);
}

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

.related-card-title-betriebsausgaben-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-betriebsausgaben-dokumentation {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-betriebsausgaben-dokumentation {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-link-betriebsausgaben-dokumentation:hover {
  color: #4338ca;
  text-decoration: underline;
}

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

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

@media (max-width: 480px) {
  .breadcrumbs-betriebsausgaben-dokumentation {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  
  .hero-meta-betriebsausgaben-dokumentation {
    font-size: 0.75rem;
    gap: 0.75rem;
  }
  
  .category-card-betriebsausgaben-dokumentation,
  .related-card-betriebsausgaben-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-homeoffice-kosten-steuern {
  background: #f8fafc;
  overflow-x: hidden;
}

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

.hero-section-homeoffice-kosten-steuern {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-homeoffice-kosten-steuern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-homeoffice-kosten-steuern a {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs-homeoffice-kosten-steuern a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-homeoffice-kosten-steuern span {
  color: #475569;
}

.breadcrumbs-homeoffice-kosten-steuern span:last-child {
  color: #94a3b8;
}

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

.hero-text-wrapper-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-homeoffice-kosten-steuern {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

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

.meta-item-homeoffice-kosten-steuern {
  color: #94a3b8;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  padding: 0.5rem 1rem;
  background: rgba(79, 70, 229, 0.15);
  border-radius: 20px;
  font-weight: 500;
}

.hero-image-wrapper-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-homeoffice-kosten-steuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .hero-content-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .hero-text-wrapper-homeoffice-kosten-steuern,
  .hero-image-wrapper-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-homeoffice-kosten-steuern:last-of-type {
  margin-bottom: 0;
}

.intro-image-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-homeoffice-kosten-steuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1024px) {
  .intro-content-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .intro-text-homeoffice-kosten-steuern,
  .intro-image-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.method-section-homeoffice-kosten-steuern {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.method-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.method-header-homeoffice-kosten-steuern {
  text-align: center;
}

.method-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.method-subtitle-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.method-cards-wrapper-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.method-card-homeoffice-kosten-steuern {
  flex: 1 1 300px;
  max-width: 420px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.method-card-homeoffice-kosten-steuern:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.card-header-label-homeoffice-kosten-steuern {
  display: inline-block;
  color: #4f46e5;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  background: #e0e7ff;
  border-radius: 20px;
  width: fit-content;
}

.card-title-homeoffice-kosten-steuern {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.card-description-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.card-features-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.feature-badge-homeoffice-kosten-steuern {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 500;
}

.steps-section-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.steps-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.steps-header-homeoffice-kosten-steuern {
  text-align: center;
}

.steps-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.steps-intro-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-list-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

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

.step-number-homeoffice-kosten-steuern {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  min-width: clamp(4rem, 8vw, 5rem);
  text-align: center;
}

.step-body-homeoffice-kosten-steuern {
  flex: 1;
}

.step-title-homeoffice-kosten-steuern {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  font-weight: 700;
}

.step-text-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-homeoffice-kosten-steuern {
    gap: 1rem;
  }

  .step-number-homeoffice-kosten-steuern {
    min-width: 3rem;
    font-size: 1.75rem;
  }
}

.costs-section-homeoffice-kosten-steuern {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.costs-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.costs-header-homeoffice-kosten-steuern {
  text-align: center;
}

.costs-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
}

.costs-grid-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
}

.costs-column-homeoffice-kosten-steuern {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.costs-item-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.item-title-homeoffice-kosten-steuern {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  font-weight: 700;
}

.item-list-homeoffice-kosten-steuern {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-item-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.5;
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-homeoffice-kosten-steuern::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.costs-image-homeoffice-kosten-steuern {
  flex: 1 1 45%;
  min-width: 250px;
}

.costs-image-img-homeoffice-kosten-steuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1024px) {
  .costs-grid-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .costs-column-homeoffice-kosten-steuern,
  .costs-image-homeoffice-kosten-steuern {
    flex: 1 1 100%;
  }
}

.tips-section-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tips-header-homeoffice-kosten-steuern {
  text-align: center;
}

.tips-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
}

.tips-boxes-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.tips-box-homeoffice-kosten-steuern {
  flex: 1 1 220px;
  max-width: 280px;
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #4f46e5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tips-box-title-homeoffice-kosten-steuern {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}

.tips-box-text-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.tips-image-homeoffice-kosten-steuern {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tips-image-img-homeoffice-kosten-steuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
}

.example-section-homeoffice-kosten-steuern {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.example-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.example-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
}

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

.example-text-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-intro-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.example-calculation-homeoffice-kosten-steuern {
  background: rgba(79, 70, 229, 0.1);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #4f46e5;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-item-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  padding: 0.5rem 0;
}

.calc-label-homeoffice-kosten-steuern {
  font-weight: 500;
}

.calc-value-homeoffice-kosten-steuern {
  color: #06b6d4;
  font-weight: 600;
}

.calc-total-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #ffffff;
  padding: clamp(0.75rem, 1vw, 1rem) 0;
  border-top: 2px solid rgba(79, 70, 229, 0.3);
  margin-top: 0.5rem;
  font-weight: 700;
}

.total-label-homeoffice-kosten-steuern {
  font-weight: 700;
}

.total-value-homeoffice-kosten-steuern {
  color: #fbbf24;
}

.example-result-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.example-result-homeoffice-kosten-steuern strong {
  color: #fbbf24;
  font-weight: 700;
}

.example-image-homeoffice-kosten-steuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-img-homeoffice-kosten-steuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .example-wrapper-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .example-text-homeoffice-kosten-steuern,
  .example-image-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
}

.conclusion-text-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.conclusion-paragraph-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.conclusion-highlight-homeoffice-kosten-steuern {
  background: #f0fdf4;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.highlight-text-homeoffice-kosten-steuern {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #065f46;
  line-height: 1.6;
  margin: 0;
}

.highlight-text-homeoffice-kosten-steuern strong {
  font-weight: 700;
}

.disclaimer-section-homeoffice-kosten-steuern {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-homeoffice-kosten-steuern {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-homeoffice-kosten-steuern {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.disclaimer-text-homeoffice-kosten-steuern {
  font-size: clamp(0.8125rem, 0.95vw, 0.975rem);
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.related-section-homeoffice-kosten-steuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-homeoffice-kosten-steuern {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
}

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

.related-card-homeoffice-kosten-steuern {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-homeoffice-kosten-steuern:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.related-card-link-homeoffice-kosten-steuern {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.related-image-homeoffice-kosten-steuern {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-image-homeoffice-kosten-steuern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-homeoffice-kosten-steuern:hover .related-image-homeoffice-kosten-steuern img {
  transform: scale(1.05);
}

.related-card-body-homeoffice-kosten-steuern {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-homeoffice-kosten-steuern {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.related-card-text-homeoffice-kosten-steuern {
  font-size: clamp(0.8125rem, 0.95vw, 0.975rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-content-homeoffice-kosten-steuern,
  .intro-content-homeoffice-kosten-steuern,
  .costs-grid-homeoffice-kosten-steuern,
  .example-wrapper-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .hero-text-wrapper-homeoffice-kosten-steuern,
  .hero-image-wrapper-homeoffice-kosten-steuern,
  .intro-text-homeoffice-kosten-steuern,
  .intro-image-homeoffice-kosten-steuern,
  .costs-column-homeoffice-kosten-steuern,
  .costs-image-homeoffice-kosten-steuern,
  .example-text-homeoffice-kosten-steuern,
  .example-image-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-homeoffice-kosten-steuern {
    gap: 1rem;
  }

  .step-number-homeoffice-kosten-steuern {
    font-size: 1.75rem;
    min-width: 3rem;
  }

  .method-cards-wrapper-homeoffice-kosten-steuern {
    flex-direction: column;
    align-items: stretch;
  }

  .method-card-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .calc-item-homeoffice-kosten-steuern,
  .calc-total-homeoffice-kosten-steuern {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .calc-value-homeoffice-kosten-steuern,
  .total-value-homeoffice-kosten-steuern {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title-homeoffice-kosten-steuern {
    font-size: 1.5rem;
  }

  .intro-title-homeoffice-kosten-steuern,
  .method-title-homeoffice-kosten-steuern,
  .steps-title-homeoffice-kosten-steuern,
  .costs-title-homeoffice-kosten-steuern,
  .tips-title-homeoffice-kosten-steuern,
  .example-title-homeoffice-kosten-steuern,
  .conclusion-title-homeoffice-kosten-steuern,
  .related-title-homeoffice-kosten-steuern {
    font-size: 1.375rem;
  }

  .hero-meta-homeoffice-kosten-steuern {
    gap: 0.5rem;
  }

  .meta-item-homeoffice-kosten-steuern {
    font-size: 0.7rem;
    padding: 0.375rem 0.625rem;
  }

  .related-cards-homeoffice-kosten-steuern {
    flex-direction: column;
  }

  .related-card-homeoffice-kosten-steuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-fahrtkosten-dienstreisen {
width: 100%;
overflow: hidden;
}

.hero-section-fahrtkosten-dienstreisen {
background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.hero-text-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-fahrtkosten-dienstreisen {
color: #ffffff;
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-fahrtkosten-dienstreisen {
color: #bfdbfe;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
line-height: 1.6;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-fahrtkosten-dienstreisen {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
}

.meta-item-fahrtkosten-dienstreisen {
color: #93c5fd;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
font-weight: 500;
}

.meta-divider-fahrtkosten-dienstreisen {
color: #3b82f6;
opacity: 0.5;
}

.hero-image-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-fahrtkosten-dienstreisen img {
max-width: 100%;
height: auto;
border-radius: clamp(0.5rem, 1vw, 1rem);
display: block;
object-fit: cover;
}

.breadcrumbs-fahrtkosten-dienstreisen {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
align-items: center;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-fahrtkosten-dienstreisen a {
color: #93c5fd;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-fahrtkosten-dienstreisen a:hover {
color: #ffffff;
text-decoration: underline;
}

.breadcrumbs-fahrtkosten-dienstreisen span {
color: #3b82f6;
}

.intro-section-fahrtkosten-dienstreisen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.intro-text-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-paragraph-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.highlight-box-fahrtkosten-dienstreisen {
background: #f1f5f9;
border-left: 4px solid #4f46e5;
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 0.5rem;
}

.highlight-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
margin-bottom: 1rem;
font-weight: 600;
}

.highlight-list-fahrtkosten-dienstreisen {
list-style: none;
margin-left: 0;
}

.highlight-list-fahrtkosten-dienstreisen li {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
line-height: 1.6;
}

.highlight-list-fahrtkosten-dienstreisen li:before {
content: "";
position: absolute;
left: 0;
color: #4f46e5;
font-weight: bold;
}

.content-section-one-fahrtkosten-dienstreisen {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.content-text-one-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-one-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.content-paragraph-one-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-one-fahrtkosten-dienstreisen:last-child {
margin-bottom: 0;
}

.content-image-one-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-image-one-fahrtkosten-dienstreisen img {
max-width: 100%;
height: auto;
border-radius: 0.75rem;
display: block;
object-fit: cover;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.content-section-two-fahrtkosten-dienstreisen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.content-image-two-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-image-two-fahrtkosten-dienstreisen img {
max-width: 100%;
height: auto;
border-radius: 0.75rem;
display: block;
object-fit: cover;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.content-text-two-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-two-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.content-paragraph-two-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-two-fahrtkosten-dienstreisen:last-child {
margin-bottom: 0;
}

.content-section-three-fahrtkosten-dienstreisen {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.content-text-three-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-three-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.content-paragraph-three-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-three-fahrtkosten-dienstreisen:last-child {
margin-bottom: 0;
}

.content-image-three-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-image-three-fahrtkosten-dienstreisen img {
max-width: 100%;
height: auto;
border-radius: 0.75rem;
display: block;
object-fit: cover;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.content-section-four-fahrtkosten-dienstreisen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.content-image-four-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-image-four-fahrtkosten-dienstreisen img {
max-width: 100%;
height: auto;
border-radius: 0.75rem;
display: block;
object-fit: cover;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.content-text-four-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-four-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.content-paragraph-four-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-four-fahrtkosten-dienstreisen:last-child {
margin-bottom: 0;
}

.conclusion-section-fahrtkosten-dienstreisen {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-content-fahrtkosten-dienstreisen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: flex-start;
}

.conclusion-text-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.conclusion-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-paragraph-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-fahrtkosten-dienstreisen:last-child {
margin-bottom: 0;
}

.conclusion-highlight-fahrtkosten-dienstreisen {
flex: 1 1 50%;
max-width: 50%;
}

.cta-box-fahrtkosten-dienstreisen {
background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: 0.75rem;
box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.cta-title-fahrtkosten-dienstreisen {
color: #ffffff;
font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
margin-bottom: 1.5rem;
font-weight: 700;
}

.cta-list-fahrtkosten-dienstreisen {
list-style: none;
margin-left: 0;
}

.cta-list-fahrtkosten-dienstreisen li {
color: #ffffff;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
padding: 0.75rem 0;
padding-left: 2rem;
position: relative;
line-height: 1.6;
}

.cta-list-fahrtkosten-dienstreisen li:before {
content: "";
position: absolute;
left: 0;
color: #dbeafe;
font-weight: bold;
}

.related-section-fahrtkosten-dienstreisen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.related-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

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

.related-card-fahrtkosten-dienstreisen {
flex: 1 1 calc(33.333% - 1.667rem);
min-width: 280px;
max-width: 400px;
background: #f8fafc;
border-radius: 0.75rem;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
text-decoration: none;
display: flex;
flex-direction: column;
}

.related-card-fahrtkosten-dienstreisen:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card-image-fahrtkosten-dienstreisen {
width: 100%;
height: 200px;
overflow: hidden;
background: #e2e8f0;
}

.related-card-image-fahrtkosten-dienstreisen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-text-fahrtkosten-dienstreisen {
padding: clamp(1rem, 2vw, 1.5rem);
flex: 1 1 auto;
display: flex;
flex-direction: column;
}

.related-card-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
margin-bottom: 0.75rem;
line-height: 1.4;
font-weight: 600;
}

.related-card-description-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
line-height: 1.6;
margin: 0;
flex-grow: 1;
}

.disclaimer-section-fahrtkosten-dienstreisen {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
border-top: 1px solid #e2e8f0;
}

.disclaimer-content-fahrtkosten-dienstreisen {
display: flex;
justify-content: center;
}

.disclaimer-box-fahrtkosten-dienstreisen {
background: #ffffff;
border-left: 4px solid #cbd5e1;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: 0.5rem;
max-width: 800px;
width: 100%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disclaimer-title-fahrtkosten-dienstreisen {
color: #0f172a;
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
margin-bottom: 1rem;
font-weight: 600;
}

.disclaimer-text-fahrtkosten-dienstreisen {
color: #475569;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
line-height: 1.7;
margin: 0;
}

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

@media (max-width: 768px) {
.hero-content-fahrtkosten-dienstreisen,
.intro-content-fahrtkosten-dienstreisen,
.content-wrapper-one-fahrtkosten-dienstreisen,
.content-wrapper-two-fahrtkosten-dienstreisen,
.content-wrapper-three-fahrtkosten-dienstreisen,
.content-wrapper-four-fahrtkosten-dienstreisen,
.conclusion-content-fahrtkosten-dienstreisen {
flex-direction: column;
}

.hero-text-fahrtkosten-dienstreisen,
.hero-image-fahrtkosten-dienstreisen,
.intro-text-fahrtkosten-dienstreisen,
.intro-highlight-fahrtkosten-dienstreisen,
.content-text-one-fahrtkosten-dienstreisen,
.content-image-one-fahrtkosten-dienstreisen,
.content-image-two-fahrtkosten-dienstreisen,
.content-text-two-fahrtkosten-dienstreisen,
.content-text-three-fahrtkosten-dienstreisen,
.content-image-three-fahrtkosten-dienstreisen,
.content-image-four-fahrtkosten-dienstreisen,
.content-text-four-fahrtkosten-dienstreisen,
.conclusion-text-fahrtkosten-dienstreisen,
.conclusion-highlight-fahrtkosten-dienstreisen {
flex: 1 1 100%;
max-width: 100%;
}

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

@media (max-width: 480px) {
.hero-title-fahrtkosten-dienstreisen,
.intro-title-fahrtkosten-dienstreisen,
.content-title-one-fahrtkosten-dienstreisen,
.content-title-two-fahrtkosten-dienstreisen,
.content-title-three-fahrtkosten-dienstreisen,
.content-title-four-fahrtkosten-dienstreisen,
.conclusion-title-fahrtkosten-dienstreisen,
.related-title-fahrtkosten-dienstreisen {
font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-fahrtkosten-dienstreisen {
flex: 1 1 100%;
}

.hero-section-fahrtkosten-dienstreisen,
.intro-section-fahrtkosten-dienstreisen,
.content-section-one-fahrtkosten-dienstreisen,
.content-section-two-fahrtkosten-dienstreisen,
.content-section-three-fahrtkosten-dienstreisen,
.content-section-four-fahrtkosten-dienstreisen,
.conclusion-section-fahrtkosten-dienstreisen,
.related-section-fahrtkosten-dienstreisen,
.disclaimer-section-fahrtkosten-dienstreisen {
padding: clamp(2rem, 5vw, 3rem) 0;
}
}

.main-fortbildung-steuerabzug {
overflow: hidden;
}

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

.hero-section-fortbildung-steuerabzug {
background: #0a0f1e;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.breadcrumbs-fortbildung-steuerabzug a {
color: #64748b;
text-decoration: none;
transition: color 0.2s ease;
}

.breadcrumbs-fortbildung-steuerabzug a:hover {
color: #94a3b8;
}

.breadcrumbs-fortbildung-steuerabzug span {
color: #475569;
}

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

.hero-text-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-fortbildung-steuerabzug {
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
color: #ffffff;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-description-fortbildung-steuerabzug {
color: #cbd5e1;
font-size: clamp(0.95rem, 1.2vw, 1.15rem);
line-height: 1.7;
margin-bottom: 2rem;
}

.hero-meta-fortbildung-steuerabzug {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
}

.meta-item-fortbildung-steuerabzug {
color: #94a3b8;
font-size: clamp(0.8rem, 1vw, 0.95rem);
font-weight: 500;
}

.meta-divider-fortbildung-steuerabzug {
color: #475569;
}

.hero-image-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.hero-img-fortbildung-steuerabzug {
max-width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
}

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

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

.hero-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw, 2.5rem);
}
}

.intro-section-fortbildung-steuerabzug {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.intro-text-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.intro-paragraph-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.75;
margin-bottom: 1.5rem;
}

.intro-image-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-fortbildung-steuerabzug img {
max-width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
}

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

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

.definition-section-fortbildung-steuerabzug {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.definition-text-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.definition-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.definition-paragraph-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.75;
margin-bottom: 1.5rem;
}

.definition-highlight-fortbildung-steuerabzug {
background: #e0e7ff;
padding: 1.5rem;
border-left: 4px solid #4f46e5;
border-radius: 8px;
margin-top: 2rem;
}

.highlight-text-fortbildung-steuerabzug {
color: #3730a3;
font-size: clamp(0.9rem, 1.1vw, 1.05rem);
line-height: 1.6;
}

.definition-image-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.definition-image-fortbildung-steuerabzug img {
max-width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
}

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

.definition-text-fortbildung-steuerabzug,
.definition-image-fortbildung-steuerabzug {
flex: 1 1 100%;
max-width: 100%;
}
}

.deductible-section-fortbildung-steuerabzug {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.deductible-content-fortbildung-steuerabzug {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: flex-start;
}

.deductible-header-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.deductible-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.deductible-intro-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.75;
}

.deductible-items-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.deductible-item-fortbildung-steuerabzug {
display: flex;
flex-direction: row;
gap: 1.25rem;
}

.item-icon-fortbildung-steuerabzug {
color: #10b981;
font-size: 1.5rem;
font-weight: 700;
flex-shrink: 0;
}

.item-title-fortbildung-steuerabzug {
color: #0f172a;
font-size: clamp(0.95rem, 1.1vw, 1.15rem);
font-weight: 600;
margin-bottom: 0.5rem;
}

.item-text-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.85rem, 1vw, 1rem);
line-height: 1.6;
}

.deductible-image-fortbildung-steuerabzug {
display: none;
}

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

.deductible-header-fortbildung-steuerabzug,
.deductible-items-fortbildung-steuerabzug {
flex: 1 1 100%;
max-width: 100%;
}

.deductible-items-fortbildung-steuerabzug {
flex-direction: column;
}
}

.not-deductible-section-fortbildung-steuerabzug {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.not-deductible-content-fortbildung-steuerabzug {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: flex-start;
}

.not-deductible-header-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
}

.not-deductible-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.not-deductible-intro-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.75;
}

.not-deductible-list-fortbildung-steuerabzug {
flex: 1 1 50%;
max-width: 50%;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.not-deductible-item-fortbildung-steuerabzug {
display: flex;
flex-direction: row;
gap: 1.25rem;
}

.not-deductible-image-fortbildung-steuerabzug {
display: none;
}

@media (max-width: 768px) {
.not-deductible-content-fortbildung-steuerabzug {
flex-direction: column;
}

.not-deductible-header-fortbildung-steuerabzug,
.not-deductible-list-fortbildung-steuerabzug {
flex: 1 1 100%;
max-width: 100%;
}
}

.practical-section-fortbildung-steuerabzug {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.practical-header-fortbildung-steuerabzug {
text-align: center;
margin-bottom: 2rem;
}

.practical-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}

.practical-intro-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.75;
max-width: 600px;
margin: 0 auto;
}

.practical-list-fortbildung-steuerabzug {
display: flex;
flex-direction: column;
gap: 2rem;
}

.practical-item-fortbildung-steuerabzug {
display: flex;
flex-direction: row;
gap: 2rem;
align-items: flex-start;
}

.practical-number-fortbildung-steuerabzug {
font-size: 2.5rem;
font-weight: 800;
color: #4f46e5;
flex-shrink: 0;
min-width: 70px;
}

.practical-item-content-fortbildung-steuerabzug {
flex: 1;
}

.practical-item-title-fortbildung-steuerabzug {
color: #0f172a;
font-size: clamp(1.05rem, 1.2vw, 1.25rem);
font-weight: 600;
margin-bottom: 0.75rem;
}

.practical-item-text-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1vw, 1.05rem);
line-height: 1.7;
}

@media (max-width: 768px) {
.practical-item-fortbildung-steuerabzug {
flex-direction: column;
gap: 1rem;
}

.practical-number-fortbildung-steuerabzug {
font-size: 2rem;
}
}

.conclusion-section-fortbildung-steuerabzug {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-content-fortbildung-steuerabzug {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
text-align: center;
}

.conclusion-paragraph-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.9rem, 1.1vw, 1.1rem);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.conclusion-highlight-fortbildung-steuerabzug {
background: #fef3c7;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-left: 4px solid #f59e0b;
border-radius: 8px;
margin-top: 2rem;
}

.highlight-paragraph-fortbildung-steuerabzug {
color: #92400e;
font-size: clamp(0.9rem, 1vw, 1.05rem);
line-height: 1.7;
}

.related-section-fortbildung-steuerabzug {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.related-title-fortbildung-steuerabzug {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
text-align: center;
margin-bottom: 1rem;
}

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

.related-card-fortbildung-steuerabzug {
flex: 1 1 calc(33.333% - 1.67rem);
max-width: 380px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
transition: all 0.3s ease;
text-decoration: none;
display: flex;
flex-direction: column;
}

.related-card-fortbildung-steuerabzug:hover {
transform: translateY(-6px);
box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.related-image-fortbildung-steuerabzug {
width: 100%;
height: 220px;
overflow: hidden;
}

.related-image-fortbildung-steuerabzug img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

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

.related-card-title-fortbildung-steuerabzug {
color: #0f172a;
font-size: clamp(1rem, 1.1vw, 1.2rem);
font-weight: 600;
line-height: 1.4;
}

.related-card-description-fortbildung-steuerabzug {
color: #64748b;
font-size: clamp(0.85rem, 1vw, 0.95rem);
line-height: 1.6;
flex: 1;
}

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

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

.disclaimer-section-fortbildung-steuerabzug {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.disclaimer-content-fortbildung-steuerabzug {
max-width: 900px;
margin: 0 auto;
}

.disclaimer-box-fortbildung-steuerabzug {
background: #ffffff;
border-left: 4px solid #6366f1;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: 8px;
box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.disclaimer-title-fortbildung-steuerabzug {
color: #0f172a;
font-size: clamp(1.1rem, 1.2vw, 1.35rem);
font-weight: 600;
margin-bottom: 1rem;
}

.disclaimer-text-fortbildung-steuerabzug {
color: #475569;
font-size: clamp(0.85rem, 1vw, 1rem);
line-height: 1.75;
}

@media (max-width: 768px) {
.hero-section-fortbildung-steuerabzug,
.intro-section-fortbildung-steuerabzug,
.definition-section-fortbildung-steuerabzug,
.deductible-section-fortbildung-steuerabzug,
.not-deductible-section-fortbildung-steuerabzug,
.practical-section-fortbildung-steuerabzug,
.conclusion-section-fortbildung-steuerabzug,
.related-section-fortbildung-steuerabzug,
.disclaimer-section-fortbildung-steuerabzug {
padding: clamp(2rem, 6vw, 4rem) 0;
}
}

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

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

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

.tax-expertise-narrative-about {
  background: #0a0f1e;
  color: #ffffff;
  font-family: var(--font-primary);
}

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

.hero-foundation-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-about {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 2rem auto 0;
  object-fit: cover;
}

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

.stat-box-about {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(148, 163, 184, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.stat-number-about {
  color: #f59e0b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.foundation-section-about {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.foundation-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.foundation-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.foundation-story-about p {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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

.story-image-about {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .foundation-story-about {
    flex: 1 1 45%;
  }

  .story-image-about {
    max-height: 450px;
  }
}

.methodology-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methodology-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

.methodology-intro-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

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

.process-step-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(148, 163, 184, 0.08);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .process-step-about {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
  }
}

.step-number-about {
  color: #f59e0b;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.services-section-about {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.services-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.services-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-subtitle-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

.services-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.service-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  transition: all var(--transition-base);
}

.service-card-about:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(15, 23, 42, 0.8);
}

.card-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1.5rem;
}

.card-title-about {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text-about {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.approach-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

@media (min-width: 768px) {
  .approach-split-about {
    flex-direction: row;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

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

.approach-text-about p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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

.approach-visual-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .approach-visual-about {
    max-height: 450px;
  }
}

.featured-quote-about {
  background: rgba(148, 163, 184, 0.08);
  border-left: 4px solid #f59e0b;
  padding: 2.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 700px;
}

.quote-text-about {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-about {
  color: #94a3b8;
  font-size: 0.9rem;
  font-style: normal;
}

.disclaimer-section-about {
  background: #0d1526;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  color: #f59e0b;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  margin: 0;
}

.disclaimer-text-about {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-visual-about,
  .story-image-about,
  .approach-visual-about {
    margin: 1rem 0;
  }

  .process-step-about {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-foundation-about,
  .foundation-section-about,
  .methodology-section-about,
  .services-section-about,
  .approach-section-about,
  .disclaimer-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  max-width: 600px;
}

.portfolio-cards {
  background-color: var(--color-bg-primary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cards__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.portfolio-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.portfolio-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.portfolio-card__tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-lg);
}

.portfolio-card__detail {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-cards {
    padding: var(--space-5xl) var(--space-lg);
  }

  .portfolio-cards__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4xl);
  }

  .portfolio-card__image {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-5xl) var(--space-lg);
  }

  .portfolio-cards {
    padding: var(--space-5xl) var(--space-lg);
  }

  .portfolio-cards__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4xl);
  }

  .portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card:nth-child(even) {
    direction: rtl;
  }

  .portfolio-card:nth-child(even) > * {
    direction: ltr;
  }

  .portfolio-card__image {
    height: 100%;
    min-height: 340px;
  }

  .portfolio-card__content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-secondary);
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-2xl);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-5xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-5xl) var(--space-lg);
  }

  .portfolio-cta__button {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--text-lg);
  }
}

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

.faq-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 2vw, var(--text-lg));
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 600px;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-5xl) var(--space-2xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.faq-item__trigger:hover {
  background-color: var(--color-bg-hover);
}

.faq-item__question {
  font-size: clamp(var(--text-sm), 2vw, var(--text-base));
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: left;
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
}

.faq-item__icon {
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  animation: slideDown var(--transition-base) ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-item__answer p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-xl);
  }

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

  .faq-item__trigger {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-item__answer {
    padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-5xl) var(--space-2xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-secondary);
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-xl), 4vw, var(--text-2xl));
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 2vw, var(--text-base));
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-height-normal);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
  border: none;
  box-shadow: var(--shadow-sm);
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-5xl) var(--space-2xl);
  }
}

.faq-visual {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.faq-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-visual--1 {
  width: 1px;
  height: 1px;
}

.faq-visual--2 {
  width: 1px;
  height: 1px;
}

.faq-visual--3 {
  width: 1px;
  height: 1px;
}

.tax-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.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-4xl) var(--space-md);
}

.tax-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.tax-docs .last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
  font-style: italic;
}

.tax-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.tax-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.tax-docs ul,
.tax-docs ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-2xl);
}

.tax-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.tax-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.tax-docs .section {
  margin-bottom: var(--space-2xl);
}

.tax-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
  border-radius: var(--radius-md);
}

.tax-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.tax-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.tax-docs .contact-section p strong {
  color: var(--color-text-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .tax-docs .content {
    padding: var(--space-5xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .tax-docs .content {
    padding: var(--space-5xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}

.thank-you-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
  width: 100%;
}

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-2xl);
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-success);
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.thank-you-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.thank-you-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
}

.thank-you-next-steps {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.next-steps-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-tight);
}

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

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
}

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

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-sm);
}

.step-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.thank-you-closing {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:active {
  transform: translateY(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-you-page {
    padding: var(--space-xl) var(--space-lg);
  }

  .thank-you-section {
    padding: var(--space-5xl) var(--space-2xl);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-2xl);
  }

  .thank-you-next-steps {
    padding: var(--space-2xl) var(--space-xl);
  }

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

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-2xl) var(--space-xl);
  }

  .thank-you-section {
    padding: var(--space-5xl) var(--space-2xl);
  }

  .success-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-3xl);
  }

  .thank-you-content {
    max-width: 700px;
  }

  .thank-you-title {
    margin-bottom: var(--space-lg);
  }

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

  .thank-you-next-steps {
    padding: var(--space-3xl) var(--space-2xl);
    margin-bottom: var(--space-3xl);
  }

  .next-steps-title {
    margin-bottom: var(--space-2xl);
  }

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

  .thank-you-closing {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-2xl);
  }

  .thank-you-section {
    padding: var(--space-5xl) var(--space-3xl);
  }

  .success-icon {
    width: 140px;
    height: 140px;
    margin-bottom: var(--space-3xl);
  }

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-xl);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), transparent);
  opacity: 0.4;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-message {
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  line-height: var(--line-height-normal);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-md);
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-normal);
}

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

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: var(--line-height-normal);
}

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

.btn-home:active {
  transform: translateY(0px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl);
  }

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

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

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

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

  .error-description {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl);
  }

  .container {
    padding: 0;
  }

  .error-wrapper {
    gap: var(--space-4xl);
    margin-top: var(--space-2xl);
  }

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

  .error-message {
    padding: 0;
  }

  .suggestions-list li {
    padding: var(--space-md) 0;
    padding-left: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

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

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

.contact-feedback-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-feedback-hero {
  background-color: var(--color-bg-tertiary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.contact-feedback-hero-content {
  max-width: 100%;
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: 5rem 2rem;
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 5rem 2rem;
  }
}

.contact-feedback-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .contact-feedback-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-grid {
    gap: 4rem;
  }
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-feedback-form-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-form-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }
}

.contact-feedback-form-header {
  margin-bottom: 2rem;
}

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

.contact-feedback-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-feedback-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

.contact-feedback-required {
  color: var(--color-error);
}

.contact-feedback-input,
.contact-feedback-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-feedback-input:invalid:not(:placeholder-shown),
.contact-feedback-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

.contact-feedback-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-feedback-form-privacy {
  margin-top: 0.5rem;
}

.contact-feedback-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-feedback-privacy-link:hover,
.contact-feedback-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 700;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  width: 100%;
  text-align: center;
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  box-sizing: border-box;
}

.contact-feedback-submit:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-feedback-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

.contact-feedback-submit:active {
  transform: translateY(0);
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-feedback-info-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-info-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }
}

.contact-feedback-info-header {
  margin-bottom: 2rem;
}

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

.contact-feedback-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-feedback-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-feedback-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-feedback-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-feedback-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-feedback-info-link:hover,
.contact-feedback-info-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-info-cta {
  background-color: var(--color-bg-tertiary);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 768px) {
  .contact-feedback-info-cta {
    padding: 2rem;
  }
}

.contact-feedback-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-feedback-cta-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-feedback-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--color-success);
  color: var(--color-bg-tertiary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .contact-feedback-grid {
    flex-direction: column;
  }

  .contact-feedback-form-wrapper,
  .contact-feedback-info-wrapper {
    flex: 1 1 100%;
  }
}