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

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
  
  
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.02em;
}

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

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: 1rem;
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  transition: background var(--transition-base);
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

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

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

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

strong {
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(71, 85, 105, 0.1);
}

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

.card-sm {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

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

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

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

.btn-ghost:hover:not(:disabled) {
  background: var(--color-primary);
  color: #ffffff;
}

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

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

.btn-block {
  width: 100%;
  display: flex;
}

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

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

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

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

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

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

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

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

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

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

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

.flex-between {
  justify-content: space-between;
}

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.badge-primary {
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

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

.badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

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

.alert-primary {
  background: rgba(79, 70, 229, 0.05);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
}

.alert-success {
  background: rgba(16, 185, 129, 0.05);
  border-color: var(--color-success);
  color: var(--color-text-primary);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: var(--color-warning);
  color: var(--color-text-primary);
}

.alert-error {
  background: rgba(239, 68, 68, 0.05);
  border-color: var(--color-error);
  color: var(--color-text-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

thead {
  background: var(--color-bg-secondary);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-bg-secondary);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-bg-secondary);
  color: var(--color-text-secondary);
}

tbody tr:hover {
  background: var(--color-bg-primary);
}

hr {
  border: none;
  border-top: 1px solid var(--color-bg-secondary);
  margin: var(--space-lg) 0;
}

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

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

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

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

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

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

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

.text-xs {
  font-size: 0.75rem;
}

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

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

.font-bold {
  font-weight: var(--fw-bold);
}

.font-semibold {
  font-weight: var(--fw-semibold);
}

.font-medium {
  font-weight: var(--fw-medium);
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.m-0 {
  margin: 0;
}

.m-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 0.95rem;
  }
}

.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 (prefers-color-scheme: light) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}

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

  .btn,
  .hidden-print {
    display: none;
  }

  a {
    text-decoration: underline;
  }
}
.header-steuern-hub {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: static;
  z-index: 100;
  overflow: hidden;
}

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

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

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

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

.header-steuern-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: var(--ls-tight);
  white-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-steuern-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-steuern-hub-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: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-steuern-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.header-steuern-hub-mobile-toggle:hover {
  background: var(--color-bg-secondary);
}

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

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

.header-steuern-hub-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-bg-secondary);
}

.header-steuern-hub-mobile-close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1.25rem;
}

.header-steuern-hub-mobile-close:active {
  background: var(--color-bg-secondary);
}

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

.header-steuern-hub-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-steuern-hub-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-steuern-hub-mobile-cta:active {
  background: var(--color-primary-hover);
}

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

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

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

  .header-steuern-hub-cta-button {
    display: inline-flex;
  }

  .header-steuern-hub-container {
    height: clamp(4rem, 8vw, 5.5rem);
  }
}

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

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

.payroll-hub p,
.payroll-hub span,
.payroll-hub li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-text-block-index {
  max-width: 800px;
  width: 100%;
}

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-btn-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

  .hero-btn-index {
    width: 100%;
  }

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

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

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

.features-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
}

.features-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

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

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

.feature-card-index {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-icon-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.card-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin: 0;
  font-weight: 600;
}

.card-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: var(--lh-relaxed);
}

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

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

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.about-image-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.about-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.about-description-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.about-description-index:last-of-type {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item-index {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.benefit-item-index i {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

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

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

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

  .about-image-index {
    max-height: 300px;
  }
}

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

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

.process-header-index {
  text-align: center;
}

.process-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

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

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.process-step-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 85, 105, 0.1);
  box-shadow: var(--shadow-sm);
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 80px;
  display: flex;
  align-items: center;
}

.step-content-index {
  flex: 1;
}

.step-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.step-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: var(--lh-relaxed);
}

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

  .step-number-index {
    min-width: auto;
  }
}

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

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

.testimonials-header-index {
  text-align: center;
}

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

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

.testimonial-card-index {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-secondary);
}

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

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

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

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

.posts-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

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

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

.post-card-index {
  flex: 1 1 clamp(280px, 100%, 400px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

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

.post-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.post-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin: 0;
  font-weight: 600;
  line-height: var(--lh-tight);
}

.post-excerpt-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: var(--lh-relaxed);
  flex: 1;
}

.post-link-index {
  color: var(--color-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

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

.posts-cta-index {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.posts-btn-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

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

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

.faq-header-index {
  text-align: center;
}

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

.faq-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item-index {
  flex: 1 1 clamp(280px, 100%, 450px);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 85, 105, 0.1);
  box-shadow: var(--shadow-sm);
}

.faq-question-index {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
}

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

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

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

.stats-header-index {
  text-align: center;
}

.stats-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0;
}

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

.stat-box-index {
  flex: 1 1 clamp(200px, 100%, 280px);
  background: var(--color-bg-card);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 85, 105, 0.1);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.stat-number-large-index {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0;
}

.stat-description-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: var(--lh-relaxed);
}

.stats-description-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.stats-description-index p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
  line-height: var(--lh-relaxed);
}

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

.cta-content-index {
  display: flex;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 700px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.cta-description-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--lh-relaxed);
}

.cta-button-index {
  background: #ffffff;
  color: var(--color-primary);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.cta-button-index:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 0.95;
}

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

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

.cookie-banner-text-index {
  color: #f1f5f9;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  margin: 0;
  max-width: 600px;
  text-align: center;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

.cookie-btn-decline-index {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

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

@media (max-width: 768px) {
  .cookie-banner {
    gap: var(--space-sm);
    padding: 1rem;
  }

  .cookie-banner-text-index {
    order: 1;
    flex-basis: 100%;
  }

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

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

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

  .step-number-index {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .payroll-hub {
    font-size: 0.95rem;
  }

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

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

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
  color: var(--color-text-secondary);
  overflow: hidden;
}

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

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

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

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

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

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

.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
  min-width: 160px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: var(--ls-tight);
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-nav-list a,
.footer-legal-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.footer-contact p:first-of-type {
  margin-top: 0;
}

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

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

@media (max-width: 640px) {
  .footer-sections {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-contact p {
    margin: 0.375rem 0;
  }
}
    

.category-page-lohnsteuer {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.hero-section-lohnsteuer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.hero-subtitle-lohnsteuer {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero-intro-lohnsteuer {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #4f46e5;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.hero-text-lohnsteuer {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hero-text-lohnsteuer:last-child {
  margin-bottom: 0;
}

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

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

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

.posts-title-lohnsteuer {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-lohnsteuer {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.card-lohnsteuer {
  flex: 1 1 clamp(280px, 45vw, 380px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

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

.card-image-wrapper-lohnsteuer {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.card-lohnsteuer:hover .card-image-wrapper-lohnsteuer img {
  transform: scale(1.05);
}

.card-title-lohnsteuer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding: 0 1.5rem;
  padding-top: 1rem;
}

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

.card-meta-lohnsteuer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.card-reading-time-lohnsteuer,
.card-level-lohnsteuer,
.card-date-lohnsteuer {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-lohnsteuer i,
.card-level-lohnsteuer i,
.card-date-lohnsteuer i {
  color: #4f46e5;
}

.card-link-lohnsteuer {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: inline-block;
  transition: color var(--transition-fast);
}

.card-link-lohnsteuer:hover {
  color: #4338ca;
  text-decoration: underline;
}

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

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

.faqs-header-lohnsteuer {
  text-align: center;
}

.faqs-title-lohnsteuer {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.faqs-subtitle-lohnsteuer {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.faqs-list-lohnsteuer {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-lohnsteuer {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question-lohnsteuer {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  user-select: none;
  transition: all var(--transition-fast);
  background: #ffffff;
}

.faq-item-lohnsteuer[open] > .faq-question-lohnsteuer {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.faq-question-lohnsteuer:hover {
  background: #f8fafc;
}

.faq-question-lohnsteuer::marker {
  color: #4f46e5;
}

.faq-answer-lohnsteuer {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.75;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
}

.concepts-section-lohnsteuer {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.concepts-title-lohnsteuer {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.concepts-subtitle-lohnsteuer {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.concepts-text-lohnsteuer {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.concepts-paragraph-lohnsteuer {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.concepts-paragraph-lohnsteuer:last-child {
  margin-bottom: 0;
}

.concepts-paragraph-lohnsteuer strong {
  color: #4f46e5;
  font-weight: 700;
}

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

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

  .hero-intro-lohnsteuer {
    border-left-width: 3px;
  }

  .faq-question-lohnsteuer {
    padding: 1.25rem;
  }

  .faq-answer-lohnsteuer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .card-title-lohnsteuer {
    padding: 0 1.25rem;
    padding-top: 1rem;
  }

  .card-description-lohnsteuer {
    padding: 0 1.25rem;
  }

  .card-meta-lohnsteuer {
    padding: 0 1.25rem;
  }

  .card-link-lohnsteuer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .faq-question-lohnsteuer::marker {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-intro-lohnsteuer {
    border-left-width: 3px;
    padding: 1.25rem;
  }

  .card-image-wrapper-lohnsteuer {
    height: 180px;
  }

  .posts-grid-lohnsteuer {
    gap: 1rem;
  }

  .card-meta-lohnsteuer {
    gap: 1rem;
    font-size: 0.8rem;
  }
}

.main-lohnsteuer-grundlagen {
  background: #ffffff;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.hero-section-lohnsteuer-grundlagen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-lohnsteuer-grundlagen a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-lohnsteuer-grundlagen a:hover {
  color: #94a3b8;
}

.breadcrumbs-lohnsteuer-grundlagen span {
  color: #475569;
}

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

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

.hero-title-lohnsteuer-grundlagen {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

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

.hero-meta-lohnsteuer-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-divider-lohnsteuer-grundlagen {
  color: #475569;
}

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

.hero-img-lohnsteuer-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

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

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

  .hero-title-lohnsteuer-grundlagen {
    font-size: 2rem;
  }

  .hero-subtitle-lohnsteuer-grundlagen {
    font-size: 1rem;
  }
}

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

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

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

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

.intro-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.intro-paragraph-lohnsteuer-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

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

.intro-img-lohnsteuer-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: block;
  object-fit: cover;
}

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

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

  .intro-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }

  .intro-paragraph-lohnsteuer-grundlagen {
    font-size: 0.95rem;
  }
}

.mechanism-section-lohnsteuer-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.mechanism-image-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-img-lohnsteuer-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: block;
  object-fit: cover;
}

.mechanism-text-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.mechanism-paragraph-lohnsteuer-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.mechanism-paragraph-lohnsteuer-grundlagen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mechanism-content-lohnsteuer-grundlagen {
    flex-direction: column-reverse;
  }

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

  .mechanism-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }

  .mechanism-paragraph-lohnsteuer-grundlagen {
    font-size: 0.95rem;
  }
}

.factors-section-lohnsteuer-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.factors-text-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.factors-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.factors-paragraph-lohnsteuer-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.factors-paragraph-lohnsteuer-grundlagen:last-child {
  margin-bottom: 0;
}

.factors-image-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.factors-img-lohnsteuer-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: block;
  object-fit: cover;
}

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

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

  .factors-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }

  .factors-paragraph-lohnsteuer-grundlagen {
    font-size: 0.95rem;
  }
}

.understanding-section-lohnsteuer-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.understanding-image-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-img-lohnsteuer-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: block;
  object-fit: cover;
}

.understanding-text-lohnsteuer-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.understanding-paragraph-lohnsteuer-grundlagen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.understanding-paragraph-lohnsteuer-grundlagen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .understanding-content-lohnsteuer-grundlagen {
    flex-direction: column-reverse;
  }

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

  .understanding-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }

  .understanding-paragraph-lohnsteuer-grundlagen {
    font-size: 0.95rem;
  }
}

.key-insights-section-lohnsteuer-grundlagen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.key-insights-section-lohnsteuer-grundlagen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.key-insights-content-lohnsteuer-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.key-insights-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

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

.insight-card-lohnsteuer-grundlagen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(226, 232, 240, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.insight-card-lohnsteuer-grundlagen:hover {
  background: rgba(226, 232, 240, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-title-lohnsteuer-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  font-family: 'Lora', serif;
}

.card-text-lohnsteuer-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .insight-card-lohnsteuer-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .key-insights-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }
}

.quote-section-lohnsteuer-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-lohnsteuer-grundlagen {
  background: #f8fafc;
  border-left: 4px solid #4f46e5;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-lohnsteuer-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.quote-author-lohnsteuer-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  display: block;
}

@media (max-width: 768px) {
  .featured-quote-lohnsteuer-grundlagen {
    padding: 1.5rem;
  }

  .quote-text-lohnsteuer-grundlagen {
    font-size: 1.05rem;
  }
}

.disclaimer-section-lohnsteuer-grundlagen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-lohnsteuer-grundlagen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.disclaimer-title-lohnsteuer-grundlagen {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-family: 'Lora', serif;
}

.disclaimer-text-lohnsteuer-grundlagen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-lohnsteuer-grundlagen {
    padding: 1.5rem;
  }

  .disclaimer-title-lohnsteuer-grundlagen {
    font-size: 1.05rem;
  }

  .disclaimer-text-lohnsteuer-grundlagen {
    font-size: 0.9rem;
  }
}

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

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

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

.related-title-lohnsteuer-grundlagen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  font-family: 'Lora', serif;
}

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

.related-card-lohnsteuer-grundlagen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.related-card-lohnsteuer-grundlagen:hover {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.related-image-lohnsteuer-grundlagen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

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

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

.related-card-title-lohnsteuer-grundlagen {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  font-family: 'Lora', serif;
}

.related-card-text-lohnsteuer-grundlagen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-link-lohnsteuer-grundlagen {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  color: #4f46e5;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

  .related-title-lohnsteuer-grundlagen {
    font-size: 1.5rem;
  }

  .related-image-lohnsteuer-grundlagen {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card-lohnsteuer-grundlagen,
  .related-card-lohnsteuer-grundlagen {
    transition: none;
  }
}

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

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

.main-steuerklassen-freibetraege {
  width: 100%;
  background: #f8fafc;
}

.hero-section-steuerklassen-freibetraege {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-steuerklassen-freibetraege a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-steuerklassen-freibetraege a:hover {
  color: #cbd5e1;
  text-decoration: underline;
}

.breadcrumbs-steuerklassen-freibetraege span {
  color: #475569;
}

.breadcrumbs-steuerklassen-freibetraege span:last-child {
  color: #cbd5e1;
  font-weight: 600;
}

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

.hero-text-wrapper-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-steuerklassen-freibetraege {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-steuerklassen-freibetraege {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-steuerklassen-freibetraege i {
  color: #4f46e5;
}

.hero-image-steuerklassen-freibetraege {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

  .hero-title-steuerklassen-freibetraege {
    font-size: 1.75rem;
  }
}

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

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

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

.intro-text-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-steuerklassen-freibetraege {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

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

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

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

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

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

.steuerklassen-header-steuerklassen-freibetraege {
  text-align: center;
}

.steuerklassen-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.steuerklassen-card-steuerklassen-freibetraege {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.steuerklassen-card-steuerklassen-freibetraege:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.card-number-steuerklassen-freibetraege {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.card-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.card-text-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 640px) {
  .steuerklassen-card-steuerklassen-freibetraege {
    flex: 1 1 100%;
  }
}

.freibetrag-section-steuerklassen-freibetraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.freibetrag-text-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.freibetrag-image-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.freibetrag-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.freibetrag-paragraph-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.freibetrag-highlight-steuerklassen-freibetraege {
  background: #f0f4ff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-steuerklassen-freibetraege {
  color: #1e293b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.highlight-text-steuerklassen-freibetraege strong {
  color: #0f172a;
  font-weight: 700;
}

.freibetrag-img-steuerklassen-freibetraege {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

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

  .freibetrag-text-steuerklassen-freibetraege,
  .freibetrag-image-steuerklassen-freibetraege {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.praktisch-section-steuerklassen-freibetraege {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.praktisch-image-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-text-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.praktisch-paragraph-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.praktisch-img-steuerklassen-freibetraege {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

@media (max-width: 768px) {
  .praktisch-content-steuerklassen-freibetraege {
    flex-direction: column-reverse;
  }

  .praktisch-image-steuerklassen-freibetraege,
  .praktisch-text-steuerklassen-freibetraege {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.aenderung-section-steuerklassen-freibetraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.aenderung-text-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.aenderung-image-steuerklassen-freibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.aenderung-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.aenderung-paragraph-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.aenderung-img-steuerklassen-freibetraege {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

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

  .aenderung-text-steuerklassen-freibetraege,
  .aenderung-image-steuerklassen-freibetraege {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fazit-section-steuerklassen-freibetraege {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.fazit-title-steuerklassen-freibetraege {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fazit-paragraph-steuerklassen-freibetraege {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fazit-list-steuerklassen-freibetraege {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

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

.list-number-steuerklassen-freibetraege {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4f46e5;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.list-text-steuerklassen-freibetraege {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
  padding-top: 0.25rem;
}

.fazit-closing-steuerklassen-freibetraege {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid #334155;
}

@media (max-width: 768px) {
  .list-item-steuerklassen-freibetraege {
    gap: 1rem;
  }

  .list-number-steuerklassen-freibetraege {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

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

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

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

.related-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-steuerklassen-freibetraege {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  margin: 0;
}

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

.related-card-steuerklassen-freibetraege {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.related-card-steuerklassen-freibetraege:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.related-image-steuerklassen-freibetraege {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-steuerklassen-freibetraege {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-steuerklassen-freibetraege {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

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

.related-card-text-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-steuerklassen-freibetraege {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

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

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

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

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

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

.disclaimer-title-steuerklassen-freibetraege {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.disclaimer-text-steuerklassen-freibetraege {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-steuerklassen-freibetraege:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-steuerklassen-freibetraege {
    border-left-width: 3px;
  }
}

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

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

.main-arbeitgeber-meldepflichten {
  width: 100%;
  overflow: hidden;
}

.hero-section-arbeitgeber-meldepflichten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-arbeitgeber-meldepflichten {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-arbeitgeber-meldepflichten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-arbeitgeber-meldepflichten {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.meta-item-arbeitgeber-meldepflichten {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.meta-divider-arbeitgeber-meldepflichten {
  color: #cbd5e1;
}

.hero-img-arbeitgeber-meldepflichten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

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

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

  .hero-title-arbeitgeber-meldepflichten {
    font-size: 1.75rem;
  }
}

.breadcrumbs-arbeitgeber-meldepflichten {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-arbeitgeber-meldepflichten a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.breadcrumbs-arbeitgeber-meldepflichten span {
  color: #cbd5e1;
}

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

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

.intro-text-arbeitgeber-meldepflichten {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-highlight-arbeitgeber-meldepflichten {
  flex: 1 1 45%;
  max-width: 45%;
}

.intro-title-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-paragraph-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.highlight-title-arbeitgeber-meldepflichten {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.highlight-item-arbeitgeber-meldepflichten {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.highlight-item-arbeitgeber-meldepflichten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

  .intro-text-arbeitgeber-meldepflichten,
  .intro-highlight-arbeitgeber-meldepflichten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-text-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-paragraph-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-img-arbeitgeber-meldepflichten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

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

  .content-text-arbeitgeber-meldepflichten,
  .content-image-arbeitgeber-meldepflichten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-image-two-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-paragraph-two-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.payment-options-arbeitgeber-meldepflichten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.option-card-arbeitgeber-meldepflichten {
  background: #f1f5f9;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #06b6d4;
}

.option-title-arbeitgeber-meldepflichten {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.option-text-arbeitgeber-meldepflichten {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.content-img-two-arbeitgeber-meldepflichten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-two-arbeitgeber-meldepflichten {
    flex-direction: column;
  }

  .content-image-two-arbeitgeber-meldepflichten,
  .content-text-two-arbeitgeber-meldepflichten {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }
}

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

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

.content-text-three-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-paragraph-three-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-img-three-arbeitgeber-meldepflichten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-arbeitgeber-meldepflichten {
    flex-direction: column;
  }

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

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

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

.content-image-four-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-four-arbeitgeber-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-paragraph-four-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-img-four-arbeitgeber-meldepflichten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-four-arbeitgeber-meldepflichten {
    flex-direction: column;
  }

  .content-image-four-arbeitgeber-meldepflichten,
  .content-text-four-arbeitgeber-meldepflichten {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }
}

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

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

.conclusion-title-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.conclusion-boxes-arbeitgeber-meldepflichten {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.conclusion-box-arbeitgeber-meldepflichten {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .conclusion-box-arbeitgeber-meldepflichten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.box-title-arbeitgeber-meldepflichten {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.conclusion-item-arbeitgeber-meldepflichten {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.conclusion-item-arbeitgeber-meldepflichten::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  color: #4f46e5;
  font-weight: bold;
}

.conclusion-quote-arbeitgeber-meldepflichten {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #4f46e5;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 2rem) 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.quote-text-arbeitgeber-meldepflichten {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  margin: 0;
}

.quote-cite-arbeitgeber-meldepflichten {
  font-size: 0.95rem;
  color: #64748b;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.conclusion-final-arbeitgeber-meldepflichten {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.related-title-arbeitgeber-meldepflichten {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-subtitle-arbeitgeber-meldepflichten {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.related-card-arbeitgeber-meldepflichten {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-arbeitgeber-meldepflichten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

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

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

.related-card-image-arbeitgeber-meldepflichten {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-card-arbeitgeber-meldepflichten:hover .related-img-arbeitgeber-meldepflichten {
  transform: scale(1.05);
}

.related-card-text-arbeitgeber-meldepflichten {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-arbeitgeber-meldepflichten {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.related-card-desc-arbeitgeber-meldepflichten {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-arbeitgeber-meldepflichten {
  font-size: 0.95rem;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

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

.disclaimer-section-arbeitgeber-meldepflichten {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-arbeitgeber-meldepflichten {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-arbeitgeber-meldepflichten {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-arbeitgeber-meldepflichten {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

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

.hero-section-jahresabrechnung-steuererklarung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-jahresabrechnung-steuererklarung {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-meta-jahresabrechnung-steuererklarung {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: #64748b;
}

.meta-item-jahresabrechnung-steuererklarung {
  color: #64748b;
}

.meta-separator-jahresabrechnung-steuererklarung {
  color: #cbd5e1;
}

.breadcrumbs-jahresabrechnung-steuererklarung {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

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

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

.breadcrumbs-jahresabrechnung-steuererklarung span {
  color: #cbd5e1;
}

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

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

.intro-text-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-jahresabrechnung-steuererklarung {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.intro-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-jahresabrechnung-steuererklarung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.intro-paragraph-jahresabrechnung-steuererklarung:last-child {
  margin-bottom: 0;
}

.process-section-jahresabrechnung-steuererklarung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-intro-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

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

.step-card-jahresabrechnung-steuererklarung {
  flex: 1 1 calc(50% - 1rem);
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.step-number-jahresabrechnung-steuererklarung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.step-body-jahresabrechnung-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.step-text-jahresabrechnung-steuererklarung {
  font-size: 0.95rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.reasons-section-jahresabrechnung-steuererklarung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.reasons-wrapper-jahresabrechnung-steuererklarung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.reasons-text-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.reasons-image-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.reasons-img-jahresabrechnung-steuererklarung {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.reasons-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.reasons-paragraph-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.reasons-list-jahresabrechnung-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.reason-item-jahresabrechnung-steuererklarung {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #e2e8f0;
}

.reason-item-jahresabrechnung-steuererklarung:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reason-heading-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.reason-text-jahresabrechnung-steuererklarung {
  font-size: 0.95rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.declaration-section-jahresabrechnung-steuererklarung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.declaration-wrapper-jahresabrechnung-steuererklarung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.declaration-image-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.declaration-img-jahresabrechnung-steuererklarung {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.declaration-text-jahresabrechnung-steuererklarung {
  flex: 1 1 50%;
  max-width: 50%;
}

.declaration-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.declaration-paragraph-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.declaration-subtitle-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  line-height: var(--lh-tight);
}

.declaration-subtitle-jahresabrechnung-steuererklarung:first-of-type {
  margin-top: 0;
}

.declaration-list-jahresabrechnung-steuererklarung {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.list-item-jahresabrechnung-steuererklarung {
  font-size: 0.95rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.list-item-jahresabrechnung-steuererklarung:last-child {
  margin-bottom: 0;
}

.declaration-note-jahresabrechnung-steuererklarung {
  font-size: 0.95rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
  padding: var(--space-md);
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

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

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

.practical-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

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

.tip-card-jahresabrechnung-steuererklarung {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.tip-card-jahresabrechnung-steuererklarung:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tip-icon-jahresabrechnung-steuererklarung {
  font-size: 1.75rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.tip-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.tip-text-jahresabrechnung-steuererklarung {
  font-size: 0.95rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

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

.conclusion-content-jahresabrechnung-steuererklarung {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
}

.conclusion-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--lh-relaxed);
}

.conclusion-cta-jahresabrechnung-steuererklarung {
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.cta-text-jahresabrechnung-steuererklarung {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
  margin-bottom: 0;
}

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

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

.related-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-jahresabrechnung-steuererklarung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
}

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

.related-card-jahresabrechnung-steuererklarung {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.related-image-jahresabrechnung-steuererklarung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-jahresabrechnung-steuererklarung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-jahresabrechnung-steuererklarung {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.related-card-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.related-card-text-jahresabrechnung-steuererklarung {
  font-size: 0.9rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.related-card-link-jahresabrechnung-steuererklarung {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.disclaimer-section-jahresabrechnung-steuererklarung {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-jahresabrechnung-steuererklarung {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #ffffff;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

.disclaimer-title-jahresabrechnung-steuererklarung {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.disclaimer-text-jahresabrechnung-steuererklarung {
  font-size: 0.9rem;
  color: #475569;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-jahresabrechnung-steuererklarung,
  .intro-content-jahresabrechnung-steuererklarung,
  .reasons-wrapper-jahresabrechnung-steuererklarung,
  .declaration-wrapper-jahresabrechnung-steuererklarung {
    flex-direction: column;
  }

  .hero-text-jahresabrechnung-steuererklarung,
  .hero-image-jahresabrechnung-steuererklarung,
  .intro-text-jahresabrechnung-steuererklarung,
  .intro-image-jahresabrechnung-steuererklarung,
  .reasons-text-jahresabrechnung-steuererklarung,
  .reasons-image-jahresabrechnung-steuererklarung,
  .declaration-image-jahresabrechnung-steuererklarung,
  .declaration-text-jahresabrechnung-steuererklarung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-jahresabrechnung-steuererklarung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-card-jahresabrechnung-steuererklarung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-jahresabrechnung-steuererklarung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-jahresabrechnung-steuererklarung {
    font-size: 1.75rem;
  }

  .intro-title-jahresabrechnung-steuererklarung,
  .process-title-jahresabrechnung-steuererklarung,
  .reasons-title-jahresabrechnung-steuererklarung,
  .declaration-title-jahresabrechnung-steuererklarung,
  .practical-title-jahresabrechnung-steuererklarung,
  .conclusion-title-jahresabrechnung-steuererklarung,
  .related-title-jahresabrechnung-steuererklarung {
    font-size: 1.5rem;
  }

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

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

@media (max-width: 480px) {
  .breadcrumbs-jahresabrechnung-steuererklarung {
    font-size: 0.75rem;
    gap: var(--space-xs);
  }

  .hero-meta-jahresabrechnung-steuererklarung {
    font-size: 0.75rem;
  }

  .declaration-list-jahresabrechnung-steuererklarung {
    margin-left: var(--space-md);
  }

  .hero-section-jahresabrechnung-steuererklarung,
  .intro-section-jahresabrechnung-steuererklarung,
  .process-section-jahresabrechnung-steuererklarung,
  .reasons-section-jahresabrechnung-steuererklarung,
  .declaration-section-jahresabrechnung-steuererklarung,
  .practical-section-jahresabrechnung-steuererklarung,
  .conclusion-section-jahresabrechnung-steuererklarung,
  .related-section-jahresabrechnung-steuererklarung,
  .disclaimer-section-jahresabrechnung-steuererklarung {
    padding: 2rem 0;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  --transition-base: 250ms ease-in-out;
}

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

.lohnsteuer-foundation-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

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

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1rem 0;
}

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

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

.stat-number-about {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label-about {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

.section-title-about {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.section-subtitle-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  margin: 1rem 0 0 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.card-icon-about {
  color: var(--color-accent);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

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

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

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

.approach-intro-about {
  text-align: center;
  margin-bottom: 1rem;
}

.approach-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  max-width: 750px;
  margin: 1rem auto;
}

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

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

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

.step-content-about {
  flex: 1;
  padding-top: 0.25rem;
}

.step-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.step-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.foundation-values-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.value-block-about {
  flex: 1 1 280px;
  max-width: 340px;
}

.value-heading-about {
  color: var(--color-accent);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.value-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  line-height: 1.6;
}

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

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

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.quote-author-about {
  color: var(--color-accent);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
}

.story-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 2rem auto;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
}

.disclaimer-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.3;
}

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

.disclaimer-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.95rem);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: 2.5rem;
  }

  .expertise-cards-about,
  .foundation-values-about {
    flex-direction: column;
    align-items: center;
  }

  .expertise-card-about,
  .value-block-about {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .expertise-cards-about,
  .foundation-values-about {
    justify-content: center;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid var(--color-bg-secondary);
  overflow: hidden;
}

.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);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-relaxed);
  flex: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
}

.portfolio-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.portfolio-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: var(--fw-semibold);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-bg-tertiary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-lg);
}

.portfolio-cta-button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 5rem var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

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

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-bg-secondary);
}

.faq-question-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  text-align: left;
  line-height: var(--lh-normal);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: var(--color-bg-tertiary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: 4rem var(--space-md);
  }

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

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

@media (min-width: 1024px) {
  .faq-content {
    padding: 5rem var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-secondary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: 5rem var(--space-lg);
  }
}

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

.legal-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.legal-portal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-portal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.legal-portal .update-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: var(--fw-regular);
}

.legal-portal section {
  margin-bottom: var(--space-2xl);
}

.legal-portal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.legal-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.legal-portal ul {
  list-style: none;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.legal-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.legal-portal li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
}

.contact-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
}

.contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.contact-section strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

@media (max-width: 768px) {
  .legal-portal-content {
    padding: var(--space-xl) 0;
  }

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

  .legal-portal h1 {
    margin-bottom: var(--space-md);
  }

  .legal-portal h2 {
    margin-bottom: var(--space-md);
  }

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

@media (max-width: 480px) {
  .legal-portal-content {
    padding: var(--space-lg) 0;
  }

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

  .legal-portal h1 {
    margin-bottom: var(--space-sm);
  }

  .legal-portal section {
    margin-bottom: var(--space-lg);
  }

  .legal-portal h2 {
    margin-bottom: var(--space-sm);
  }

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

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  animation: slideUp 0.6s ease-out;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.success-icon {
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease-in-out infinite;
}

.success-icon svg {
  display: block;
  width: 80px;
  height: 80px;
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}

.thank-you-lead {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.thank-you-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.thank-you-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  background-color: var(--color-bg-secondary);
  transform: translateX(4px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: var(--color-success);
  color: var(--color-bg-tertiary);
  border-radius: 50%;
  font-size: 14px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.benefit-text {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
  text-align: left;
  line-height: var(--lh-normal);
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: var(--ls-normal);
  min-height: 48px;
}

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

.btn-return:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-xl) var(--space-md);
  }

  .thank-you-wrapper {
    padding: var(--space-2xl) var(--space-xl);
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

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

  .benefit-item {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-you-wrapper {
    padding: var(--space-3xl);
  }

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

  .thank-you-title {
    margin-bottom: var(--space-lg);
  }

  .thank-you-lead {
    margin-bottom: var(--space-lg);
  }

  .thank-you-description {
    margin-bottom: var(--space-xl);
  }

  .thank-you-benefits {
    margin-bottom: var(--space-2xl);
    gap: var(--space-md);
  }

  .benefit-item {
    padding: var(--space-md) var(--space-lg);
  }
}

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

  .thank-you-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-you-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .btn-return {
    padding: var(--space-md) var(--space-xl);
    min-height: 52px;
  }
}

@media (max-width: 639px) {
  .thank-you-wrapper {
    border-radius: var(--radius-md);
  }

  .success-icon svg {
    width: 70px;
    height: 70px;
  }
}

:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.02em;
}

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

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

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  width: 100%;
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  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: var(--fw-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: var(--space-sm) 0;
}

.error-suggestions {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.suggestions-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: var(--lh-tight);
  margin-top: var(--space-md);
}

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

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

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

  .error-suggestions {
    text-align: center;
    padding: var(--space-2xl);
  }

  .suggestions-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .suggestions-list li {
    flex: 0 1 calc(33.333% - var(--space-lg));
    padding-left: 0;
    padding-top: var(--space-lg);
    position: relative;
  }

  .suggestions-list li::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-2xl);
  }

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

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

.contact-page-hero {
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-page-hero-content {
  text-align: center;
  animation: fadeInDown 0.6s ease-out;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: var(--lh-tight);
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 6rem 1rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-main .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
  animation: fadeInLeft 0.6s ease-out 0.1s both;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
  animation: fadeInRight 0.6s ease-out 0.2s both;
}

@media (min-width: 1024px) {
  .contact-page-form-wrapper {
    flex: 1 1 45%;
    max-width: 500px;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
    max-width: 500px;
  }

  .contact-page-grid {
    justify-content: space-between;
  }
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: var(--lh-tight);
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  display: block;
}

.contact-page-input,
.contact-page-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: 1.5px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  line-height: var(--lh-normal);
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: var(--color-bg-tertiary);
}

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

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-form-privacy {
  padding: 1rem;
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

.contact-page-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-page-submit:disabled {
  background-color: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.contact-page-info-header {
  margin-bottom: 2rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: var(--lh-tight);
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
  transition: all var(--transition-base);
}

.contact-page-info-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-page-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-page-info-item:hover .contact-page-info-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: var(--lh-tight);
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  margin: 0.25rem 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-semibold);
}

.contact-page-info-detail {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0.25rem 0 0 0;
  line-height: var(--lh-normal);
}

.contact-page-info-expertise {
  padding: 2rem;
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
}

.contact-page-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  line-height: var(--lh-tight);
}

.contact-page-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-page-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
  line-height: var(--lh-normal);
}

.contact-page-expertise-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 6rem 1rem;
  }

  .contact-page-grid {
    gap: 4rem;
  }
}

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

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

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