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

:root {
  
  
  
  --color-bg-dark-hero: #0a0f1e;
  --color-bg-dark-accent: #1e293b;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  
  
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-light: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-warning: #f59e0b;
  --color-accent-danger: #ef4444;
  
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

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

p {
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

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

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

.section-dark-hero {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-dark);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.section-dark-hero h1 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

.section-dark-hero p {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  max-width: 600px;
}

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

.section-light-primary {
  background: var(--color-bg-light-primary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-lg);
}

.section-light-primary h2 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

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

.section-light-secondary {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.section-dark-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark);
  padding: var(--space-3xl) var(--space-lg);
}

.section-dark-accent h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

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

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

.card {
  background: var(--color-bg-light-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark);
}

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

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

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

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

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

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

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-text-dark);
}

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

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

.badge-dark {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.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(2, 1fr);
  }
}

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

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

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

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

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

.feature-box {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
}

.feature-box h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

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

.feature-box-dark {
  border-left-color: var(--color-primary-light);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.feature-box-dark h3 {
  color: var(--color-text-dark);
}

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

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}

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

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

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-in-out;
}

.animate-slide-up {
  animation: slideUp var(--transition-base) ease-out;
}

.animate-slide-down {
  animation: slideDown var(--transition-base) ease-out;
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 3rem;
    --space-2xl: 2.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .section-dark-hero,
  .section-light-primary,
  .section-light-secondary,
  .section-dark-accent {
    padding: var(--space-2xl) var(--space-md);
  }

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

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  .section-dark-hero,
  .section-light-primary,
  .section-light-secondary,
  .section-dark-accent {
    padding: var(--space-xl) var(--space-sm);
  }

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

  .btn {
    width: 100%;
  }
}

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

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-dark-hero);
    color: var(--color-text-dark);
  }
}

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

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

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

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

th {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-light);
  font-weight: 600;
  padding: var(--space-md);
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

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

tr:hover {
  background: var(--color-bg-light-secondary);
}

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

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

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

.list-unstyled li {
  padding-left: var(--space-lg);
  position: relative;
}

.list-unstyled li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}
.header-lohn-vault {
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 100;
}

.header-lohn-vault-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: clamp(70px, 12vw, 90px);
}

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

.header-lohn-vault-brand:hover {
  opacity: 0.85;
}

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

.header-lohn-vault-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.header-lohn-vault-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
}

.header-lohn-vault-nav-link {
  color: var(--color-text-light);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.header-lohn-vault-nav-link:hover {
  color: var(--color-primary);
}

.header-lohn-vault-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.header-lohn-vault-nav-link:hover::after {
  width: 100%;
}

.header-lohn-vault-cta-button {
  display: none;
  padding: clamp(0.6rem, 1vw, 0.85rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 1rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

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

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

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

.header-lohn-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-light-primary);
  flex-direction: column;
  padding: clamp(1rem, 3vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  z-index: 99;
  overflow-y: auto;
}

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

.header-lohn-vault-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.header-lohn-vault-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--color-text-light);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-lohn-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header-lohn-vault-mobile-link {
  color: var(--color-text-light);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-lohn-vault-mobile-link:hover {
  color: var(--color-primary);
}

.header-lohn-vault-mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  margin-top: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-lohn-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-lohn-vault-container {
    height: clamp(75px, 12vw, 95px);
  }

  .header-lohn-vault-desktop-nav {
    display: flex;
  }

  .header-lohn-vault-cta-button {
    display: block;
  }

  .header-lohn-vault-mobile-toggle {
    display: none;
  }

  .header-lohn-vault-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-lohn-vault-logo-text {
    font-size: 1.125rem;
  }

  .header-lohn-vault-logo-img {
    width: 40px;
    height: 40px;
  }
}

    .payroll-hub {
  width: 100%;
  background: #ffffff;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2847 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

.hero-title-index {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

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

.btn-primary-index {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary-index:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary-index {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-index:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #2563eb;
}

.card-icon-index {
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #2563eb;
}

.card-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.card-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.blog-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.blog-subtitle-index {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card-index:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.blog-card-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.blog-card-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-link-index {
  font-size: 0.9375rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
}

.blog-card-index:hover .blog-card-link-index {
  color: #1d4ed8;
}

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

.btn-outline-index {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline-index:hover {
  background: #2563eb;
  color: #ffffff;
}

.how-it-works-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.process-step-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
}

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

.step-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.step-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefits-subtitle-index {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.benefit-box-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-box-index:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.benefit-icon-index {
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.benefit-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.benefit-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.testimonial-author-index {
  font-size: 0.875rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

.cta-section-index {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cta-text-index {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

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

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

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  min-width: 250px;
}

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

.cookie-btn-accept {
  padding: 0.625rem 1.25rem;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

  .btn-primary-index,
  .btn-secondary-index,
  .btn-outline-index {
    width: 100%;
  }

  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-index {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .process-step-index {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cta-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons-index a {
    width: 100%;
  }

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

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

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

@media (max-width: 480px) {
  .hero-title-index {
    font-size: 1.75rem;
  }

  .features-title-index,
  .blog-title-index,
  .process-title-index,
  .benefits-title-index,
  .testimonials-title-index,
  .cta-title-index {
    font-size: 1.5rem;
  }

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

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

  .process-step-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .container {
    padding: 0 1rem;
  }

  .hero-stats-index {
    border-top: none;
    padding-top: 0;
  }

  .cookie-banner-text {
    font-size: 0.8125rem;
  }
}

    .footer {
  background: var(--color-bg-dark-accent);
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--color-text-dark-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, 3rem);
}

.footer-about {
  display: block;
}

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: 0.5px;
}

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

.footer-nav a,
.footer-legal a {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-text-dark);
  border-bottom-color: var(--color-primary-light);
}

.footer-contact {
  display: block;
}

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

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

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

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

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

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

  .footer-nav,
  .footer-legal {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 200px;
  }

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

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

@media (min-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(3rem, 6vw, 4.5rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 0 1 22%;
    min-width: 260px;
  }

  .footer-nav {
    flex: 0 1 18%;
    min-width: 160px;
  }

  .footer-contact {
    flex: 0 1 22%;
    min-width: 260px;
  }

  .footer-legal {
    flex: 0 1 18%;
    min-width: 160px;
  }

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

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

.category-page-payroll-accounting-germany {
  width: 100%;
  overflow: hidden;
}

.hero-section-payroll-accounting-germany {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-payroll-accounting-germany {
  flex: 1 1 50%;
  min-width: 300px;
}

.hero-title-payroll-accounting-germany {
  color: var(--color-text-dark);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-payroll-accounting-germany {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 550px;
}

.hero-visual-payroll-accounting-germany {
  flex: 1 1 50%;
  min-width: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-visual-payroll-accounting-germany img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 450px;
  display: block;
}

.posts-section-payroll-accounting-germany {
  background: var(--color-bg-light-primary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-payroll-accounting-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-payroll-accounting-germany {
  color: var(--color-text-light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.02em;
}

.posts-subtitle-payroll-accounting-germany {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

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

.card-payroll-accounting-germany {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-light-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

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

.card-image-payroll-accounting-germany {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-image-payroll-accounting-germany img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title-payroll-accounting-germany {
  color: var(--color-text-light);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin-top: 1rem;
}

.card-description-payroll-accounting-germany {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.card-meta-payroll-accounting-germany {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.card-reading-time-payroll-accounting-germany,
.card-level-payroll-accounting-germany,
.card-date-payroll-accounting-germany {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-payroll-accounting-germany i,
.card-level-payroll-accounting-germany i,
.card-date-payroll-accounting-germany i {
  font-size: 0.85rem;
  color: var(--color-primary);
}

.card-link-payroll-accounting-germany {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  display: inline-block;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

.insights-header-payroll-accounting-germany {
  text-align: center;
}

.insights-title-payroll-accounting-germany {
  color: var(--color-text-light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.insights-grid-payroll-accounting-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.insight-card-payroll-accounting-germany {
  flex: 1 1 clamp(240px, 100%, 300px);
  background: var(--color-bg-light-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.insight-card-payroll-accounting-germany:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.insight-number-payroll-accounting-germany {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.insight-text-payroll-accounting-germany {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.checklist-section-payroll-accounting-germany {
  background: var(--color-bg-light-primary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-header-payroll-accounting-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.checklist-title-payroll-accounting-germany {
  color: var(--color-text-light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.02em;
}

.checklist-subtitle-payroll-accounting-germany {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.checklist-items-payroll-accounting-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item-payroll-accounting-germany {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  transition: all var(--transition-base);
}

.checklist-item-payroll-accounting-germany:hover {
  box-shadow: var(--shadow-sm);
}

.checklist-item-payroll-accounting-germany i {
  color: var(--color-secondary);
  font-size: clamp(1.5rem, 2vw, 2rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-text-payroll-accounting-germany {
  flex: 1;
  text-align: left;
}

.checklist-item-title-payroll-accounting-germany {
  color: var(--color-text-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.checklist-item-desc-payroll-accounting-germany {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

  .hero-text-payroll-accounting-germany,
  .hero-visual-payroll-accounting-germany {
    flex: 1 1 100%;
  }

  .posts-grid-payroll-accounting-germany {
    flex-direction: column;
  }

  .card-payroll-accounting-germany {
    flex: 1 1 100%;
  }

  .insights-grid-payroll-accounting-germany {
    flex-direction: column;
  }

  .insight-card-payroll-accounting-germany {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-payroll-accounting-germany,
  .posts-section-payroll-accounting-germany,
  .insights-section-payroll-accounting-germany,
  .checklist-section-payroll-accounting-germany {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .card-meta-payroll-accounting-germany {
    gap: 0.75rem;
  }

  .checklist-item-payroll-accounting-germany {
    flex-direction: column;
    gap: 0.75rem;
  }

  .checklist-item-payroll-accounting-germany i {
    margin-top: 0;
  }
}

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

.breadcrumbs-grundlagen-gehaltsabrechnung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-grundlagen-gehaltsabrechnung a {
  color: #64748b;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-grundlagen-gehaltsabrechnung a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.breadcrumbs-grundlagen-gehaltsabrechnung span {
  color: #94a3b8;
}

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

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

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

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

.hero-description-grundlagen-gehaltsabrechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hero-meta-grundlagen-gehaltsabrechnung {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-grundlagen-gehaltsabrechnung {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

.hero-image-grundlagen-gehaltsabrechnung img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-title-grundlagen-gehaltsabrechnung {
    font-size: 1.75rem;
  }

  .hero-description-grundlagen-gehaltsabrechnung {
    font-size: 1rem;
  }
}

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

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

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

.intro-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-paragraph-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

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

.intro-image-grundlagen-gehaltsabrechnung img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.components-header-grundlagen-gehaltsabrechnung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.components-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.components-subtitle-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.component-card-grundlagen-gehaltsabrechnung {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.component-card-grundlagen-gehaltsabrechnung:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-icon-grundlagen-gehaltsabrechnung {
  font-size: 2.5rem;
  color: #2563eb;
  display: flex;
  justify-content: center;
}

.card-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.card-text-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

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

  .components-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }
}

.process-section-grundlagen-gehaltsabrechnung {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-title-grundlagen-gehaltsabrechnung {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-subtitle-grundlagen-gehaltsabrechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.step-number-grundlagen-gehaltsabrechnung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.step-content-grundlagen-gehaltsabrechnung {
  flex: 1;
}

.step-title-grundlagen-gehaltsabrechnung {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-grundlagen-gehaltsabrechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-grundlagen-gehaltsabrechnung {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-grundlagen-gehaltsabrechnung {
    text-align: left;
  }

  .process-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }
}

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

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

.details-text-grundlagen-gehaltsabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.details-intro-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.detail-item-grundlagen-gehaltsabrechnung {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.detail-item-grundlagen-gehaltsabrechnung:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-heading-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.detail-text-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.details-image-grundlagen-gehaltsabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-grundlagen-gehaltsabrechnung img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .details-wrapper-grundlagen-gehaltsabrechnung {
    flex-direction: column;
  }

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

  .details-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }
}

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

.highlight-content-grundlagen-gehaltsabrechnung {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-quote-grundlagen-gehaltsabrechnung {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 0;
}

.highlight-text-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.highlight-author-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: 0.9375rem;
  display: block;
  font-style: normal;
}

@media (max-width: 768px) {
  .highlight-text-grundlagen-gehaltsabrechnung {
    font-size: 1.125rem;
  }

  .highlight-quote-grundlagen-gehaltsabrechnung {
    padding: 1.5rem;
  }
}

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

.examples-header-grundlagen-gehaltsabrechnung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.examples-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.examples-subtitle-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.examples-wrapper-grundlagen-gehaltsabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.examples-text-grundlagen-gehaltsabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-intro-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.calculation-box-grundlagen-gehaltsabrechnung {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.calc-row-grundlagen-gehaltsabrechnung {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9375rem;
}

.calc-row-grundlagen-gehaltsabrechnung.calc-separator-grundlagen-gehaltsabrechnung {
  border-bottom: 2px solid #cbd5e1;
  font-weight: 600;
  padding: 1rem 0;
}

.calc-row-grundlagen-gehaltsabrechnung.calc-final-grundlagen-gehaltsabrechnung {
  border-bottom: none;
  border-top: 2px solid #2563eb;
  font-size: 1.125rem;
  padding: 1rem 0;
  color: #2563eb;
}

.calc-label-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-weight: 500;
}

.calc-value-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-weight: 600;
  text-align: right;
}

.examples-note-grundlagen-gehaltsabrechnung {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.examples-image-grundlagen-gehaltsabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-image-grundlagen-gehaltsabrechnung img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .examples-wrapper-grundlagen-gehaltsabrechnung {
    flex-direction: column;
  }

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

  .examples-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }

  .calc-row-grundlagen-gehaltsabrechnung {
    font-size: 0.875rem;
  }

  .calculation-box-grundlagen-gehaltsabrechnung {
    padding: 1rem;
  }
}

.cta-section-grundlagen-gehaltsabrechnung {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-grundlagen-gehaltsabrechnung {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-grundlagen-gehaltsabrechnung {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-grundlagen-gehaltsabrechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cta-button-grundlagen-gehaltsabrechnung {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 250ms ease;
  border: none;
  cursor: pointer;
}

.cta-button-grundlagen-gehaltsabrechnung:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
  .cta-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }

  .cta-button-grundlagen-gehaltsabrechnung {
    width: 100%;
  }
}

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

.disclaimer-content-grundlagen-gehaltsabrechnung {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

  .disclaimer-title-grundlagen-gehaltsabrechnung {
    font-size: 1rem;
  }

  .disclaimer-text-grundlagen-gehaltsabrechnung {
    font-size: 0.875rem;
  }
}

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

.related-header-grundlagen-gehaltsabrechnung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-grundlagen-gehaltsabrechnung {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-grundlagen-gehaltsabrechnung:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

.related-card-body-grundlagen-gehaltsabrechnung {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-grundlagen-gehaltsabrechnung {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-grundlagen-gehaltsabrechnung {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-grundlagen-gehaltsabrechnung {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 250ms ease;
  display: inline-block;
  margin-top: auto;
}

.related-link-grundlagen-gehaltsabrechnung:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-section-grundlagen-gehaltsabrechnung,
  .intro-section-grundlagen-gehaltsabrechnung,
  .components-section-grundlagen-gehaltsabrechnung,
  .process-section-grundlagen-gehaltsabrechnung,
  .details-section-grundlagen-gehaltsabrechnung,
  .highlight-section-grundlagen-gehaltsabrechnung,
  .examples-section-grundlagen-gehaltsabrechnung,
  .cta-section-grundlagen-gehaltsabrechnung,
  .disclaimer-section-grundlagen-gehaltsabrechnung,
  .related-section-grundlagen-gehaltsabrechnung {
    padding: 2rem 0;
  }

  .hero-title-grundlagen-gehaltsabrechnung {
    font-size: 1.5rem;
  }

  .intro-title-grundlagen-gehaltsabrechnung,
  .details-title-grundlagen-gehaltsabrechnung,
  .examples-title-grundlagen-gehaltsabrechnung,
  .components-title-grundlagen-gehaltsabrechnung,
  .process-title-grundlagen-gehaltsabrechnung,
  .related-title-grundlagen-gehaltsabrechnung {
    font-size: 1.375rem;
  }

  .process-step-grundlagen-gehaltsabrechnung {
    gap: 0.75rem;
  }

  .step-number-grundlagen-gehaltsabrechnung {
    font-size: 2rem;
    min-width: 60px;
  }

  .card-icon-grundlagen-gehaltsabrechnung {
    font-size: 2rem;
  }

  .related-image-grundlagen-gehaltsabrechnung {
    height: 160px;
  }
}

.main-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  background: #ffffff;
}

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

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

.breadcrumbs-sozialversicherungsbeitraege-berechnung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.breadcrumbs-sozialversicherungsbeitraege-berechnung a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-sozialversicherungsbeitraege-berechnung a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-sozialversicherungsbeitraege-berechnung span {
  color: #64748b;
}

.breadcrumbs-sozialversicherungsbeitraege-berechnung span:last-child {
  color: #cbd5e1;
}

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

.hero-text-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-sozialversicherungsbeitraege-berechnung {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-sozialversicherungsbeitraege-berechnung {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

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

.meta-item-sozialversicherungsbeitraege-berechnung {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 1rem);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

  .hero-meta-sozialversicherungsbeitraege-berechnung {
    gap: 0.75rem;
  }
}

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

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

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

.intro-text-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-image-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

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

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

.content-text-one-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insurance-box-sozialversicherungsbeitraege-berechnung {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.insurance-box-sozialversicherungsbeitraege-berechnung:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.insurance-title-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.insurance-text-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.content-image-one-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-sozialversicherungsbeitraege-berechnung {
    flex-direction: column;
  }

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

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

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

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

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

.content-img-two-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-two-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.step-box-sozialversicherungsbeitraege-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 8px;
  align-items: flex-start;
}

.step-number-sozialversicherungsbeitraege-berechnung {
  color: #2563eb;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-sozialversicherungsbeitraege-berechnung {
  flex: 1;
}

.step-text-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

  .content-image-two-sozialversicherungsbeitraege-berechnung,
  .content-text-two-sozialversicherungsbeitraege-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

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

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

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

.content-text-three-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-three-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-sozialversicherungsbeitraege-berechnung {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight-text-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.content-image-three-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

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

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

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

.content-img-four-sozialversicherungsbeitraege-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-four-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-four-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tip-box-sozialversicherungsbeitraege-berechnung {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.tip-title-sozialversicherungsbeitraege-berechnung {
  color: #92400e;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.tip-text-sozialversicherungsbeitraege-berechnung {
  color: #b45309;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

  .content-image-four-sozialversicherungsbeitraege-berechnung,
  .content-text-four-sozialversicherungsbeitraege-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.conclusion-section-sozialversicherungsbeitraege-berechnung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.conclusion-title-sozialversicherungsbeitraege-berechnung {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-sozialversicherungsbeitraege-berechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.conclusion-quote-sozialversicherungsbeitraege-berechnung {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 2rem) 0;
  font-style: italic;
}

.quote-text-sozialversicherungsbeitraege-berechnung {
  color: #f1f5f9;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.quote-author-sozialversicherungsbeitraege-berechnung {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 1rem);
  display: block;
  font-style: normal;
  font-weight: 500;
}

.conclusion-cta-sozialversicherungsbeitraege-berechnung {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .conclusion-content-sozialversicherungsbeitraege-berechnung {
    text-align: left;
  }
}

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

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

.disclaimer-content-sozialversicherungsbeitraege-berechnung {
  background: #ffffff;
  border-left: 4px solid #ef4444;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 900px;
}

.disclaimer-title-sozialversicherungsbeitraege-berechnung {
  color: #7f1d1d;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-sozialversicherungsbeitraege-berechnung {
  color: #374151;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

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

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

.related-title-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-sozialversicherungsbeitraege-berechnung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-sozialversicherungsbeitraege-berechnung:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

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

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

.related-card-title-sozialversicherungsbeitraege-berechnung {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-sozialversicherungsbeitraege-berechnung {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-sozialversicherungsbeitraege-berechnung {
  color: #2563eb;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-top: auto;
}

.related-card-link-sozialversicherungsbeitraege-berechnung:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

  .related-cards-sozialversicherungsbeitraege-berechnung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .related-card-sozialversicherungsbeitraege-berechnung {
    flex: 1 1 100%;
    min-width: auto;
  }

  .related-card-image-sozialversicherungsbeitraege-berechnung {
    height: 180px;
  }
}

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

.main-zeiterfassung-und-abrechnung {
  width: 100%;
  background: #ffffff;
}

.hero-section-zeiterfassung-und-abrechnung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-zeiterfassung-und-abrechnung {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.meta-item-zeiterfassung-und-abrechnung {
  color: #94a3b8;
}

.meta-separator-zeiterfassung-und-abrechnung {
  color: #475569;
}

.hero-image-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-zeiterfassung-und-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-zeiterfassung-und-abrechnung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-zeiterfassung-und-abrechnung a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-zeiterfassung-und-abrechnung a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-zeiterfassung-und-abrechnung span {
  color: #64748b;
}

.intro-section-zeiterfassung-und-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.intro-paragraph-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-zeiterfassung-und-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section-one-zeiterfassung-und-abrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.content-paragraph-one-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-zeiterfassung-und-abrechnung {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.highlight-text-zeiterfassung-und-abrechnung {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.highlight-text-zeiterfassung-und-abrechnung strong {
  color: #1e293b;
  font-weight: 600;
}

.content-image-one-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-zeiterfassung-und-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section-two-zeiterfassung-und-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-zeiterfassung-und-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-text-two-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.content-paragraph-two-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.method-list-zeiterfassung-und-abrechnung {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.method-item-zeiterfassung-und-abrechnung {
  padding: clamp(0.75rem, 1vw, 1rem) 0;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.method-item-zeiterfassung-und-abrechnung::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 1.25rem;
}

.method-item-zeiterfassung-und-abrechnung strong {
  color: #1e293b;
  font-weight: 600;
}

.process-section-zeiterfassung-und-abrechnung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-zeiterfassung-und-abrechnung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.process-subtitle-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.steps-container-zeiterfassung-und-abrechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-zeiterfassung-und-abrechnung {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card-zeiterfassung-und-abrechnung:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number-zeiterfassung-und-abrechnung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.step-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.step-text-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.best-practices-section-zeiterfassung-und-abrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-zeiterfassung-und-abrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.best-practices-text-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.best-practices-paragraph-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practices-list-zeiterfassung-und-abrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-item-zeiterfassung-und-abrechnung {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.practice-heading-zeiterfassung-und-abrechnung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.practice-text-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
}

.best-practices-image-zeiterfassung-und-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-img-zeiterfassung-und-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.conclusion-section-zeiterfassung-und-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-zeiterfassung-und-abrechnung {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.conclusion-text-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-quote-zeiterfassung-und-abrechnung {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.quote-text-zeiterfassung-und-abrechnung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
}

.disclaimer-section-zeiterfassung-und-abrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-zeiterfassung-und-abrechnung {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-zeiterfassung-und-abrechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
}

.related-section-zeiterfassung-und-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.related-card-zeiterfassung-und-abrechnung {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.related-card-image-zeiterfassung-und-abrechnung {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-img-zeiterfassung-und-abrechnung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-zeiterfassung-und-abrechnung:hover .related-img-zeiterfassung-und-abrechnung {
  transform: scale(1.05);
}

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

.related-card-title-zeiterfassung-und-abrechnung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-zeiterfassung-und-abrechnung {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-zeiterfassung-und-abrechnung {
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.related-card-link-zeiterfassung-und-abrechnung:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  .hero-content-zeiterfassung-und-abrechnung,
  .intro-content-zeiterfassung-und-abrechnung,
  .content-wrapper-one-zeiterfassung-und-abrechnung,
  .content-wrapper-two-zeiterfassung-und-abrechnung,
  .best-practices-content-zeiterfassung-und-abrechnung {
    flex-direction: column;
  }

  .hero-text-zeiterfassung-und-abrechnung,
  .hero-image-zeiterfassung-und-abrechnung,
  .intro-text-zeiterfassung-und-abrechnung,
  .intro-image-zeiterfassung-und-abrechnung,
  .content-text-one-zeiterfassung-und-abrechnung,
  .content-image-one-zeiterfassung-und-abrechnung,
  .content-text-two-zeiterfassung-und-abrechnung,
  .content-image-two-zeiterfassung-und-abrechnung,
  .best-practices-text-zeiterfassung-und-abrechnung,
  .best-practices-image-zeiterfassung-und-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-two-zeiterfassung-und-abrechnung {
    flex-direction: column-reverse;
  }

  .content-image-two-zeiterfassung-und-abrechnung {
    order: 0;
  }

  .step-card-zeiterfassung-und-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-zeiterfassung-und-abrechnung {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-zeiterfassung-und-abrechnung,
  .intro-section-zeiterfassung-und-abrechnung,
  .content-section-one-zeiterfassung-und-abrechnung,
  .content-section-two-zeiterfassung-und-abrechnung,
  .process-section-zeiterfassung-und-abrechnung,
  .best-practices-section-zeiterfassung-und-abrechnung,
  .conclusion-section-zeiterfassung-und-abrechnung,
  .disclaimer-section-zeiterfassung-und-abrechnung,
  .related-section-zeiterfassung-und-abrechnung {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .breadcrumbs-zeiterfassung-und-abrechnung {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .intro-title-zeiterfassung-und-abrechnung,
  .content-title-one-zeiterfassung-und-abrechnung,
  .content-title-two-zeiterfassung-und-abrechnung,
  .best-practices-title-zeiterfassung-und-abrechnung,
  .conclusion-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .process-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .related-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .related-card-zeiterfassung-und-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-image-zeiterfassung-und-abrechnung {
    height: 180px;
  }

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

  .hero-meta-zeiterfassung-und-abrechnung {
    gap: 0.5rem;
  }

  .method-item-zeiterfassung-und-abrechnung {
    padding-left: clamp(1.25rem, 1.5vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .hero-section-zeiterfassung-und-abrechnung,
  .intro-section-zeiterfassung-und-abrechnung,
  .content-section-one-zeiterfassung-und-abrechnung,
  .content-section-two-zeiterfassung-und-abrechnung,
  .process-section-zeiterfassung-und-abrechnung,
  .best-practices-section-zeiterfassung-und-abrechnung,
  .conclusion-section-zeiterfassung-und-abrechnung,
  .disclaimer-section-zeiterfassung-und-abrechnung,
  .related-section-zeiterfassung-und-abrechnung {
    padding: 1.5rem 0;
  }

  .hero-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .intro-title-zeiterfassung-und-abrechnung,
  .content-title-one-zeiterfassung-und-abrechnung,
  .content-title-two-zeiterfassung-und-abrechnung,
  .best-practices-title-zeiterfassung-und-abrechnung,
  .conclusion-title-zeiterfassung-und-abrechnung,
  .process-title-zeiterfassung-und-abrechnung,
  .related-title-zeiterfassung-und-abrechnung {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }

  .container {
    padding: 0 1rem;
  }

  .step-number-zeiterfassung-und-abrechnung {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }

  .related-card-image-zeiterfassung-und-abrechnung {
    height: 150px;
  }

  .breadcrumbs-zeiterfassung-und-abrechnung {
    margin-bottom: 1rem;
  }

  .hero-content-zeiterfassung-und-abrechnung,
  .intro-content-zeiterfassung-und-abrechnung,
  .content-wrapper-one-zeiterfassung-und-abrechnung,
  .content-wrapper-two-zeiterfassung-und-abrechnung,
  .best-practices-content-zeiterfassung-und-abrechnung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-dark-hero);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

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

.payroll-expertise-about {
  background: var(--color-bg-dark-hero);
}

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

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

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

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

.hero-header-payroll {
  text-align: center;
  max-width: 900px;
}

.hero-title-payroll {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -1px;
}

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

.hero-visual-payroll {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

.stat-item-payroll {
  text-align: center;
  flex: 0 1 auto;
}

.stat-number-payroll {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary-light);
  margin-bottom: 0.5rem;
}

.stat-label-payroll {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #94a3b8;
}

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

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

.section-header-payroll {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.section-tag-payroll {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 1vw, 1rem);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title-payroll {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle-payroll {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.foundation-blocks-payroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.foundation-block-payroll {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.foundation-block-payroll:hover {
  background: rgba(30, 41, 59, 1);
  border-color: rgba(59, 130, 246, 0.3);
}

.foundation-block-payroll h4 {
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.35rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.foundation-block-payroll p {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.expertise-header-payroll {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

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

.expertise-card-payroll {
  flex: 1 1 clamp(250px, 100%, 340px);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card-payroll:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 1);
  border-color: rgba(59, 130, 246, 0.4);
}

.card-icon-payroll {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.card-title-payroll {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: #ffffff;
  font-weight: 700;
}

.card-text-payroll {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

.approach-header-payroll {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.approach-intro-payroll {
  max-width: 850px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.approach-intro-payroll p {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.process-step-payroll {
  display: flex;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

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

.step-content-payroll {
  flex-grow: 1;
  padding-top: 0.5rem;
}

.step-title-payroll {
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.35rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-payroll {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.approach-visual-payroll {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

.story-section-payroll {
  background: var(--color-bg-dark-accent);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.story-header-payroll {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.story-blocks-payroll {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.story-block-payroll {
  background: rgba(15, 23, 42, 0.6);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary-light);
}

.story-block-payroll h4 {
  font-size: clamp(1.05rem, 1.8vw + 0.25rem, 1.3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.story-block-payroll p {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.story-visual-payroll {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.disclaimer-section-payroll {
  background: var(--color-bg-dark-hero);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.disclaimer-content-payroll h3 {
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.35rem);
  color: #cbd5e1;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-payroll {
  color: var(--color-primary-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-content-payroll p {
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-payroll {
    gap: 1.5rem;
  }

  .stat-item-payroll {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .process-step-payroll {
    gap: 1rem;
  }

  .step-number-payroll {
    min-width: 60px;
  }

  .expertise-card-payroll {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .stat-item-payroll {
    flex: 1 1 100%;
  }

  .process-step-payroll {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-number-payroll {
    margin-bottom: 0.5rem;
  }
}

.faq-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.faq-hero {
  background-color: var(--color-bg-dark-hero);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.faq-hero-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.faq-container {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-light-secondary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(37, 99, 235, 0.04);
}

.faq-question-text {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: rgba(37, 99, 235, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
}

.faq-answer p {
  font-family: var(--font-primary);
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.faq-cta-content {
  max-width: 700px;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--space-md) 0;
}

.faq-cta-text {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0 0 var(--space-lg) 0;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

.faq-cta-image {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .faq-hero-content {
    flex: 1;
    text-align: left;
  }

  .faq-hero-image {
    flex: 1;
    max-height: 350px;
  }

  .faq-container {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
    flex-direction: row;
    gap: var(--space-2xl);
    align-items: center;
  }

  .faq-cta-content {
    flex: 1;
    text-align: left;
  }

  .faq-cta-image {
    flex: 1;
    max-height: 320px;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-3xl);
  }

  .faq-hero-image {
    max-height: 400px;
  }

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

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

  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-3xl);
  }

  .faq-cta-image {
    max-height: 360px;
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-dark-hero);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }
}

.services-content {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: 4rem var(--space-lg);
  }
}

.service-card {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
}

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

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
  font-size: 1.75rem;
  transition: background-color var(--transition-base);
}

.service-card:hover .service-card-icon {
  background-color: var(--color-primary-hover);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.025rem);
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-card-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-topics li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.5;
}

.service-card-topics li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.services-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-lg);
  }
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.075rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  width: fit-content;
  box-shadow: var(--shadow-md);
}

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

.services-cta-button:active {
  transform: translateY(0);
}

.services-cta-image {
  display: none;
}

@media (min-width: 768px) {
  .services-cta-image {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  
  .services-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
  }
}

.legal-docs {
  background-color: var(--color-bg-light-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
  font-weight: 700;
}

.legal-docs .updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
  font-weight: 700;
}

.legal-docs h2:first-of-type {
  margin-top: var(--space-xl);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  text-align: justify;
}

.legal-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  list-style-position: outside;
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  list-style-type: disc;
}

.legal-docs strong {
  color: var(--color-text-light);
  font-weight: 700;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light);
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.legal-docs .contact-section strong {
  display: inline-block;
  min-width: 100px;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .legal-docs .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .content {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-xl);
  }

  .legal-docs .contact-section {
    padding: var(--space-2xl);
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-hero {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.thank-icon-wrapper {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

.thank-icon {
  width: 120px;
  height: 120px;
  background-color: var(--color-bg-light-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleInIcon var(--transition-slow) ease-out;
}

.icon-check {
  width: 60px;
  height: 60px;
  color: var(--color-secondary);
  stroke-width: 2;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.6;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.thank-next-steps {
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.steps-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

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

.step-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
  line-height: 1.7;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.step-item:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

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

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

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

@keyframes scaleInIcon {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-hero {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .icon-check {
    width: 70px;
    height: 70px;
  }

  .thank-next-steps {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
  }

  .thank-next-steps {
    padding: var(--space-2xl);
  }

  .thank-message {
    font-size: clamp(0.95rem, 1vw + 0.4rem, 1.15rem);
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-hero {
  width: 100%;
  background-color: var(--color-bg-dark-hero);
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.error-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.05;
  top: -200px;
  right: -200px;
  animation: float-slow 8s ease-in-out infinite;
}

.error-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -150px;
  left: -150px;
  animation: float-slow 10s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(30px) translateX(15px);
  }
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-code-container {
  position: relative;
  margin-bottom: var(--space-md);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  letter-spacing: -2px;
}

.error-decoration {
  width: 120px;
  height: 4px;
  background-color: var(--color-primary);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-md);
  animation: expand-width 1s ease-out 0.3s both;
}

@keyframes expand-width {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin: 0;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

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

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.8s ease-out 0.3s both;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  animation: fade-in-up 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left var(--transition-fast);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

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

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

@media (min-width: 768px) {
  .error-hero {
    padding: var(--space-xl) var(--space-lg);
  }

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

  .error-code-container {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .error-code-container {
    margin-bottom: var(--space-2xl);
  }

  .error-decoration {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .error-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }

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

  .btn-primary {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
}

.contact-page-contactus {
  width: 100%;
  background-color: var(--color-bg-light-primary);
}

.contact-page-hero {
  background-color: var(--color-bg-dark-hero);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-hero-content {
  text-align: center;
  padding: var(--space-xl) 0;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page-main {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.3px;
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-light);
  font-weight: 600;
  display: block;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-light-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: var(--color-bg-light-primary);
}

.contact-page-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-page-form-privacy {
  margin-top: var(--space-sm);
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.35rem, 0.9rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-light-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.contact-page-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-page-submit:active {
  transform: translateY(0);
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.3px;
}

.contact-page-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-page-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-page-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-info-additional {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.contact-page-additional-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.contact-page-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-page-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
}

.contact-page-day {
  color: var(--color-text-light);
  font-weight: 600;
}

.contact-page-time {
  color: var(--color-text-light-secondary);
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-hero-content {
    padding: var(--space-2xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-3xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-hero-content {
    padding: var(--space-3xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-3xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 auto;
    max-width: 500px;
  }

  .contact-page-info-wrapper {
    flex: 1 1 auto;
    max-width: 450px;
  }
}

@media (max-width: 767px) {
  .contact-page-info-item {
    gap: var(--space-md);
  }

  .contact-page-hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
}
.main-lohnsteuer-steuerfreibetraege {
  width: 100%;
  background: #ffffff;
}

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

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

.breadcrumbs-lohnsteuer-steuerfreibetraege {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.breadcrumbs-lohnsteuer-steuerfreibetraege a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-lohnsteuer-steuerfreibetraege a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-lohnsteuer-steuerfreibetraege span {
  color: #64748b;
}

.breadcrumbs-lohnsteuer-steuerfreibetraege span:last-child {
  color: #cbd5e1;
}

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

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

.hero-title-lohnsteuer-steuerfreibetraege {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.meta-item-lohnsteuer-steuerfreibetraege {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.meta-separator-lohnsteuer-steuerfreibetraege {
  color: #475569;
}

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

.hero-img-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

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

.intro-title-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.intro-img-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

.content-text-one-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-paragraph-lohnsteuer-steuerfreibetraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-highlight-lohnsteuer-steuerfreibetraege {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight-title-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.highlight-text-lohnsteuer-steuerfreibetraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.content-image-one-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

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

.content-img-two-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-two-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-paragraph-lohnsteuer-steuerfreibetraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.freibetrag-box-lohnsteuer-steuerfreibetraege {
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.freibetrag-text-lohnsteuer-steuerfreibetraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.content-text-three-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-subheading-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.content-image-three-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

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

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

.content-img-four-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-four-lohnsteuer-steuerfreibetraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-box-lohnsteuer-steuerfreibetraege {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.error-title-lohnsteuer-steuerfreibetraege {
  color: #92400e;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.error-text-lohnsteuer-steuerfreibetraege {
  color: #b45309;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.conclusion-title-lohnsteuer-steuerfreibetraege {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cards-lohnsteuer-steuerfreibetraege {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-card-lohnsteuer-steuerfreibetraege {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-card-lohnsteuer-steuerfreibetraege:hover {
  background: rgba(30, 41, 59, 1);
  border-color: rgba(59, 130, 246, 0.3);
}

.card-title-lohnsteuer-steuerfreibetraege {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

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

.conclusion-text-lohnsteuer-steuerfreibetraege {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

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

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

.related-title-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-lohnsteuer-steuerfreibetraege {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-lohnsteuer-steuerfreibetraege:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-image-lohnsteuer-steuerfreibetraege {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.related-card-title-lohnsteuer-steuerfreibetraege {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

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

.related-link-lohnsteuer-steuerfreibetraege {
  color: #2563eb;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-top: auto;
}

.related-link-lohnsteuer-steuerfreibetraege:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

.disclaimer-content-lohnsteuer-steuerfreibetraege {
  background: #ffffff;
  border-left: 4px solid #ef4444;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-lohnsteuer-steuerfreibetraege {
  color: #7f1d1d;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-lohnsteuer-steuerfreibetraege {
  color: #374151;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

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

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

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

  .hero-text-lohnsteuer-steuerfreibetraege,
  .hero-image-lohnsteuer-steuerfreibetraege,
  .intro-text-lohnsteuer-steuerfreibetraege,
  .intro-image-lohnsteuer-steuerfreibetraege,
  .content-text-one-lohnsteuer-steuerfreibetraege,
  .content-image-one-lohnsteuer-steuerfreibetraege,
  .content-text-two-lohnsteuer-steuerfreibetraege,
  .content-image-two-lohnsteuer-steuerfreibetraege,
  .content-text-three-lohnsteuer-steuerfreibetraege,
  .content-image-three-lohnsteuer-steuerfreibetraege,
  .content-text-four-lohnsteuer-steuerfreibetraege,
  .content-image-four-lohnsteuer-steuerfreibetraege {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .related-card-lohnsteuer-steuerfreibetraege {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-cards-lohnsteuer-steuerfreibetraege {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .related-card-lohnsteuer-steuerfreibetraege {
    flex: 1 1 100%;
    min-width: auto;
  }

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