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

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-light: #ecf8ff;
  
  
  --font-primary: 'Source Sans Pro', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.12);
  --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.15);
  
  
  --border-color: #cbd5e1;
  --border-color-light: #e2e8f0;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

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

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

h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color-light);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-bold { font-weight: var(--font-weight-bold); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-normal { font-weight: var(--font-weight-regular); }

.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.border { border: 1px solid var(--border-color); }
.border-light { border: 1px solid var(--border-color-light); }
.border-t { border-top: 1px solid var(--border-color-light); }
.border-b { border-bottom: 1px solid var(--border-color-light); }

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

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

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

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

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

@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 slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

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

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

.animate-pulse {
  animation: pulse var(--transition-slow) ease-in-out infinite;
}

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

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

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

  .btn,
  .card {
    box-shadow: none;
  }

  a {
    text-decoration: underline;
  }
}
* {
  box-sizing: border-box;
}

.header-benefits-deck {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--border-color-light);
  position: static;
  z-index: 100;
}

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

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

.header-benefits-deck-brand:hover {
  opacity: 0.8;
}

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

.header-benefits-deck-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-benefits-deck-desktop-nav {
  display: none;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  margin: 0 2rem;
}

.header-benefits-deck-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.header-benefits-deck-nav-link:hover {
  color: var(--color-primary);
}

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

.header-benefits-deck-nav-link:hover::after {
  width: 100%;
}

.header-benefits-deck-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-benefits-deck-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-benefits-deck-mobile-toggle:hover {
  opacity: 0.7;
}

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

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

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

.header-benefits-deck-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color-light);
}

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

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

.header-benefits-deck-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
}

.header-benefits-deck-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.header-benefits-deck-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 1.75rem;
}

.header-benefits-deck-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

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

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

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

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

  .header-benefits-deck-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-benefits-deck-container {
    padding: 0 1rem;
  }

  .header-benefits-deck-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-benefits-deck-logo-text {
    font-size: 1.125rem;
  }
}

    .benefits-hub {
  width: 100%;
}

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

.hero-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
}

.hero-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

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

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

.about-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  align-self: center;
  width: fit-content;
}

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

.about-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.about-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.about-card-icon-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #4f46e5;
  height: auto;
}

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

.about-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

.benefits-section-index {
  background: #ffffff;
  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;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

.benefits-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.benefits-item-number-index {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  min-width: 60px;
  line-height: 1;
}

.benefits-item-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.benefits-item-title-index {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.benefits-item-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-item-index {
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .benefits-item-number-index {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

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

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

.featured-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

.featured-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.featured-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.featured-card-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

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

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.featured-card-link-index {
  display: inline-block;
  color: #4f46e5;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

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

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

.featured-cta-button-index {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #4f46e5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.featured-cta-button-index:hover {
  background: #4338ca;
  box-shadow: 0 10px 15px rgba(79, 70, 229, 0.3);
  transform: translateY(-2px);
}

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

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item-index {
  flex: 1 1 300px;
  max-width: 420px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-item-question-index {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.faq-item-answer-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

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

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

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

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

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

.trust-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.trust-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.trust-card-icon-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #4f46e5;
}

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

.trust-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

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

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

.cta-box-index {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.cta-text-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.7;
}

.cta-box-index .btn {
  align-self: center;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

.cookie-banner-text-index {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 250px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-btn-accept-index {
  background: #4f46e5;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .hero-section-index,
  .about-section-index,
  .benefits-section-index,
  .featured-section-index,
  .faq-section-index,
  .trust-section-index,
  .cta-section-index {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero-section-index,
  .about-section-index,
  .benefits-section-index,
  .featured-section-index,
  .faq-section-index,
  .trust-section-index,
  .cta-section-index {
    padding: clamp(1.5rem, 5vw, 2.5rem) 0;
  }

  .benefits-item-number-index {
    min-width: 50px;
  }
}

html {
  scroll-padding-top: 0;
}

body {
  overflow-x: hidden;
}

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

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

.footer-nav-links a {
  color: #cbd5e1;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-base), text-shadow var(--transition-base);
  display: inline-block;
}

.footer-nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-contact {
  display: block;
}

.footer-contact h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

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

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

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

.footer-legal-links a {
  color: #cbd5e1;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-base), text-shadow var(--transition-base);
  display: inline-block;
}

.footer-legal-links a:hover {
  color: #94d5ff;
  text-shadow: 0 0 8px rgba(148, 213, 255, 0.3);
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(203, 213, 225, 0.2);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright p {
  color: #94a3b8;
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  margin: 0;
  text-align: center;
  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, 6vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 300px;
    min-width: 280px;
  }

  .footer-nav {
    flex: 1 1 200px;
  }

  .footer-contact {
    flex: 1 1 280px;
  }

  .footer-legal {
    flex: 1 1 200px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 8vw, 5rem);
  }

  .footer-about {
    flex: 1 1 320px;
  }

  .footer-nav {
    flex: 0 1 180px;
  }

  .footer-contact {
    flex: 0 1 300px;
  }

  .footer-legal {
    flex: 0 1 200px;
  }
}
    

.category-page-employee-benefits-taxation {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-employee-benefits-taxation {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-header-employee-benefits-taxation {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-employee-benefits-taxation {
  color: #0f172a;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-employee-benefits-taxation {
  color: #4f46e5;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-description-employee-benefits-taxation {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

.posts-title-employee-benefits-taxation {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.posts-subtitle-employee-benefits-taxation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

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

.card-employee-benefits-taxation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  flex: 1 1 clamp(300px, 45vw, 380px);
  max-width: 420px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-employee-benefits-taxation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card-image-wrapper-employee-benefits-taxation {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: -1.5rem -1.5rem 0 -1.5rem;
}

.card-image-wrapper-employee-benefits-taxation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title-employee-benefits-taxation {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.card-description-employee-benefits-taxation {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-employee-benefits-taxation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 1.5vw, 1.25rem);
  border-top: 1px solid #e2e8f0;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
}

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

.card-reading-time-employee-benefits-taxation i,
.card-level-employee-benefits-taxation i,
.card-date-employee-benefits-taxation i {
  color: #4f46e5;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.card-link-employee-benefits-taxation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: auto;
}

.card-link-employee-benefits-taxation:hover {
  color: #4338ca;
  gap: 0.75rem;
}

.card-link-employee-benefits-taxation::after {
  content: "";
  transition: transform var(--transition-base);
}

.card-link-employee-benefits-taxation:hover::after {
  transform: translateX(4px);
}

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

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

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

.insights-title-employee-benefits-taxation {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin: 0;
}

.insights-quote-employee-benefits-taxation {
  background: #ffffff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.insights-quote-text-employee-benefits-taxation {
  color: #1e293b;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 1.5vw, 1.25rem) 0;
  font-style: italic;
}

.insights-quote-author-employee-benefits-taxation {
  color: #64748b;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  margin: 0;
  font-weight: 600;
}

.insights-context-employee-benefits-taxation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.insights-text-employee-benefits-taxation {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.categories-section-employee-benefits-taxation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

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

.categories-title-employee-benefits-taxation {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.categories-subtitle-employee-benefits-taxation {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  margin: 0;
}

.categories-tags-employee-benefits-taxation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 1000px;
  margin: 0 auto;
}

.tag-employee-benefits-taxation {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  border-radius: var(--radius-full);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 600;
  border: 1px solid #c7d2fe;
  transition: all var(--transition-base);
  cursor: default;
}

.tag-employee-benefits-taxation:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateY(-2px);
}

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

  .posts-section-employee-benefits-taxation {
    padding: 2rem 0;
  }

  .insights-section-employee-benefits-taxation {
    padding: 2rem 0;
  }

  .categories-section-employee-benefits-taxation {
    padding: 2rem 0;
  }

  .card-employee-benefits-taxation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .posts-grid-employee-benefits-taxation {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .card-meta-employee-benefits-taxation {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .card-employee-benefits-taxation {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .posts-grid-employee-benefits-taxation {
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-employee-benefits-taxation {
    padding: 5rem 0;
  }

  .posts-section-employee-benefits-taxation {
    padding: 5rem 0;
  }

  .insights-section-employee-benefits-taxation {
    padding: 5rem 0;
  }

  .categories-section-employee-benefits-taxation {
    padding: 5rem 0;
  }
}

.main-sachbezuege-versteuern {
  width: 100%;
}

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

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

.hero-text-wrapper-sachbezuege-versteuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-sachbezuege-versteuern {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-sachbezuege-versteuern {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-meta-sachbezuege-versteuern {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

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

.meta-divider-sachbezuege-versteuern {
  color: #cbd5e1;
}

.hero-image-wrapper-sachbezuege-versteuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-sachbezuege-versteuern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

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

.breadcrumbs-sachbezuege-versteuern a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease-in-out;
}

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

.breadcrumbs-sachbezuege-versteuern span {
  color: #cbd5e1;
}

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

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

.intro-text-sachbezuege-versteuern {
  flex: 1 1 60%;
  max-width: 60%;
}

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

.intro-paragraph-sachbezuege-versteuern {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-highlight-sachbezuege-versteuern {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-sachbezuege-versteuern {
  background: #f1f5f9;
  border-left: 4px solid #4f46e5;
  padding: 2rem;
  border-radius: 8px;
}

.highlight-title-sachbezuege-versteuern {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-weight: 700;
}

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

.highlight-item-sachbezuege-versteuern {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-sachbezuege-versteuern:before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

.content-section-one-sachbezuege-versteuern,
.content-section-two-sachbezuege-versteuern,
.content-section-three-sachbezuege-versteuern,
.content-section-four-sachbezuege-versteuern {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-two-sachbezuege-versteuern {
  background: #f8fafc;
}

.content-section-four-sachbezuege-versteuern {
  background: #f8fafc;
}

.content-wrapper-one-sachbezuege-versteuern,
.content-wrapper-two-sachbezuege-versteuern,
.content-wrapper-three-sachbezuege-versteuern,
.content-wrapper-four-sachbezuege-versteuern {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-sachbezuege-versteuern,
.content-text-two-sachbezuege-versteuern,
.content-text-three-sachbezuege-versteuern,
.content-text-four-sachbezuege-versteuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-sachbezuege-versteuern,
.content-image-two-sachbezuege-versteuern,
.content-image-three-sachbezuege-versteuern,
.content-image-four-sachbezuege-versteuern {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-sachbezuege-versteuern,
.content-title-two-sachbezuege-versteuern,
.content-title-three-sachbezuege-versteuern,
.content-title-four-sachbezuege-versteuern {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
  font-weight: 700;
}

.content-paragraph-one-sachbezuege-versteuern,
.content-paragraph-two-sachbezuege-versteuern,
.content-paragraph-three-sachbezuege-versteuern,
.content-paragraph-four-sachbezuege-versteuern {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

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

.quote-section-sachbezuege-versteuern {
  background: #4f46e5;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-sachbezuege-versteuern {
  border: none;
  padding: clamp(2rem, 4vw, 3rem);
  background: transparent;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-text-sachbezuege-versteuern {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  font-family: 'Lora', serif;
}

.quote-author-sachbezuege-versteuern {
  font-size: 1rem;
  color: #e0e7ff;
  font-style: normal;
  font-weight: 500;
}

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

.summary-content-sachbezuege-versteuern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-title-sachbezuege-versteuern {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  text-align: center;
}

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

.summary-card-sachbezuege-versteuern {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s ease-in-out;
}

.summary-card-sachbezuege-versteuern:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.summary-card-title-sachbezuege-versteuern {
  font-size: 1.125rem;
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0;
}

.summary-card-text-sachbezuege-versteuern {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

.summary-closing-sachbezuege-versteuern {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

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

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

.disclaimer-title-sachbezuege-versteuern {
  font-size: 1.25rem;
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0;
}

.disclaimer-text-sachbezuege-versteuern {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.8;
}

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

.related-content-sachbezuege-versteuern {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

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

.related-card-sachbezuege-versteuern {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08);
}

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

.related-card-image-sachbezuege-versteuern {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

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

.related-card-content-sachbezuege-versteuern {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-sachbezuege-versteuern {
  font-size: 1.125rem;
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0;
}

.related-card-text-sachbezuege-versteuern {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero-content-sachbezuege-versteuern,
  .intro-content-sachbezuege-versteuern,
  .content-wrapper-one-sachbezuege-versteuern,
  .content-wrapper-two-sachbezuege-versteuern,
  .content-wrapper-three-sachbezuege-versteuern,
  .content-wrapper-four-sachbezuege-versteuern {
    flex-direction: column;
  }

  .hero-text-wrapper-sachbezuege-versteuern,
  .intro-text-sachbezuege-versteuern,
  .intro-highlight-sachbezuege-versteuern,
  .content-text-one-sachbezuege-versteuern,
  .content-text-two-sachbezuege-versteuern,
  .content-text-three-sachbezuege-versteuern,
  .content-text-four-sachbezuege-versteuern,
  .content-image-one-sachbezuege-versteuern,
  .content-image-two-sachbezuege-versteuern,
  .content-image-three-sachbezuege-versteuern,
  .content-image-four-sachbezuege-versteuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-sachbezuege-versteuern,
  .intro-section-sachbezuege-versteuern,
  .content-section-one-sachbezuege-versteuern,
  .content-section-two-sachbezuege-versteuern,
  .content-section-three-sachbezuege-versteuern,
  .content-section-four-sachbezuege-versteuern,
  .quote-section-sachbezuege-versteuern,
  .summary-section-sachbezuege-versteuern,
  .disclaimer-section-sachbezuege-versteuern,
  .related-section-sachbezuege-versteuern {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .breadcrumbs-sachbezuege-versteuern {
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .related-card-sachbezuege-versteuern {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.main-sozialversicherung-arbeitgeberleistungen {
  background: var(--color-bg-primary);
}

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

.breadcrumbs-sozialversicherung-arbeitgeberleistungen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-sm);
}

.breadcrumbs-sozialversicherung-arbeitgeberleistungen a {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

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

.breadcrumbs-sozialversicherung-arbeitgeberleistungen span {
  color: var(--color-text-muted);
}

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

.hero-text-block-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-sozialversicherung-arbeitgeberleistungen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.meta-item-sozialversicherung-arbeitgeberleistungen {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.meta-item-sozialversicherung-arbeitgeberleistungen i {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
}

.hero-image-sozialversicherung-arbeitgeberleistungen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-block-sozialversicherung-arbeitgeberleistungen,
  .hero-image-block-sozialversicherung-arbeitgeberleistungen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-sozialversicherung-arbeitgeberleistungen {
    gap: var(--space-md);
  }
}

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

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

.intro-text-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.intro-paragraph-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

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

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

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

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

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

.content-text-one-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.content-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.highlight-box-one-sozialversicherung-arbeitgeberleistungen {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.highlight-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  margin: 0;
}

.content-image-sozialversicherung-arbeitgeberleistungen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.content-image-two-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.benefits-list-sozialversicherung-arbeitgeberleistungen {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.list-item-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.list-item-sozialversicherung-arbeitgeberleistungen:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--font-size-lg);
}

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

  .content-image-two-sozialversicherung-arbeitgeberleistungen,
  .content-text-two-sozialversicherung-arbeitgeberleistungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-text-three-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.quote-block-sozialversicherung-arbeitgeberleistungen {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.quote-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  font-style: italic;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.8;
}

.quote-cite-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  display: block;
  margin-top: var(--space-sm);
}

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

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

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

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

.content-image-four-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-four-sozialversicherung-arbeitgeberleistungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.checklist-box-sozialversicherung-arbeitgeberleistungen {
  background: var(--color-primary-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  border: 1px solid var(--color-primary);
}

.checklist-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-semibold);
}

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

.checklist-item-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.checklist-item-sozialversicherung-arbeitgeberleistungen:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

  .content-image-four-sozialversicherung-arbeitgeberleistungen,
  .content-text-four-sozialversicherung-arbeitgeberleistungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-sozialversicherung-arbeitgeberleistungen {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-sozialversicherung-arbeitgeberleistungen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.conclusion-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  text-align: center;
}

.cta-box-sozialversicherung-arbeitgeberleistungen {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.cta-title-sozialversicherung-arbeitgeberleistungen {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  margin-bottom: var(--space-md);
}

.cta-text-sozialversicherung-arbeitgeberleistungen {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
}

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

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

.related-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-sm);
}

.related-subtitle-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  margin: 0;
}

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

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

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

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

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

.related-card-sozialversicherung-arbeitgeberleistungen:hover .related-card-image-sozialversicherung-arbeitgeberleistungen img {
  transform: scale(1.05);
}

.related-card-body-sozialversicherung-arbeitgeberleistungen {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.related-card-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  margin: 0;
  line-height: 1.4;
}

.related-card-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-body-sozialversicherung-arbeitgeberleistungen .btn {
  align-self: flex-start;
}

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

.disclaimer-section-sozialversicherung-arbeitgeberleistungen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color-light);
}

.disclaimer-content-sozialversicherung-arbeitgeberleistungen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  margin-bottom: var(--space-md);
}

.disclaimer-text-sozialversicherung-arbeitgeberleistungen {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-sozialversicherung-arbeitgeberleistungen,
  .intro-section-sozialversicherung-arbeitgeberleistungen,
  .content-section-one-sozialversicherung-arbeitgeberleistungen,
  .content-section-two-sozialversicherung-arbeitgeberleistungen,
  .content-section-three-sozialversicherung-arbeitgeberleistungen,
  .content-section-four-sozialversicherung-arbeitgeberleistungen,
  .conclusion-section-sozialversicherung-arbeitgeberleistungen,
  .related-section-sozialversicherung-arbeitgeberleistungen,
  .disclaimer-section-sozialversicherung-arbeitgeberleistungen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-meta-sozialversicherung-arbeitgeberleistungen {
    gap: var(--space-md);
    font-size: var(--font-size-xs);
  }

  .meta-item-sozialversicherung-arbeitgeberleistungen i {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .hero-title-sozialversicherung-arbeitgeberleistungen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }

  .intro-title-sozialversicherung-arbeitgeberleistungen,
  .content-title-one-sozialversicherung-arbeitgeberleistungen,
  .content-title-two-sozialversicherung-arbeitgeberleistungen,
  .content-title-three-sozialversicherung-arbeitgeberleistungen,
  .content-title-four-sozialversicherung-arbeitgeberleistungen {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }

  .breadcrumbs-sozialversicherung-arbeitgeberleistungen {
    font-size: var(--font-size-xs);
    gap: var(--space-xs);
  }

  .list-item-sozialversicherung-arbeitgeberleistungen {
    padding-left: var(--space-md);
  }
}

.main-geldwerte-vorteile-besteuerung {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-geldwerte-vorteile-besteuerung {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-geldwerte-vorteile-besteuerung a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.breadcrumbs-geldwerte-vorteile-besteuerung a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-geldwerte-vorteile-besteuerung span {
  color: var(--color-text-secondary);
}

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

.hero-text-wrapper-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-medium);
}

.hero-meta-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

.meta-item-geldwerte-vorteile-besteuerung i {
  color: var(--color-primary);
  font-size: 1.1em;
}

.hero-image-wrapper-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

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

  .hero-text-wrapper-geldwerte-vorteile-besteuerung,
  .hero-image-wrapper-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-geldwerte-vorteile-besteuerung {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.intro-section-geldwerte-vorteile-besteuerung {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.intro-image-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-geldwerte-vorteile-besteuerung {
    flex-direction: column;
  }

  .intro-text-column-geldwerte-vorteile-besteuerung,
  .intro-image-column-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.definition-section-geldwerte-vorteile-besteuerung {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.definition-text-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.definition-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.definition-list-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-geldwerte-vorteile-besteuerung {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.list-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.list-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.definition-image-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .definition-content-geldwerte-vorteile-besteuerung {
    flex-direction: column;
  }

  .definition-text-column-geldwerte-vorteile-besteuerung,
  .definition-image-column-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.calculation-section-geldwerte-vorteile-besteuerung {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.calculation-content-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.calculation-image-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  display: block;
}

.calculation-text-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.calculation-highlight-geldwerte-vorteile-besteuerung {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .calculation-content-geldwerte-vorteile-besteuerung {
    flex-direction: column;
  }

  .calculation-image-column-geldwerte-vorteile-besteuerung,
  .calculation-text-column-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.treatment-section-geldwerte-vorteile-besteuerung {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.treatment-content-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.treatment-text-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.treatment-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.treatment-image-column-geldwerte-vorteile-besteuerung {
  flex: 1 1 50%;
  max-width: 50%;
}

.treatment-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .treatment-content-geldwerte-vorteile-besteuerung {
    flex-direction: column;
  }

  .treatment-text-column-geldwerte-vorteile-besteuerung,
  .treatment-image-column-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-geldwerte-vorteile-besteuerung {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-header-geldwerte-vorteile-besteuerung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practical-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.practical-subtitle-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.practical-cards-geldwerte-vorteile-besteuerung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practical-card-geldwerte-vorteile-besteuerung {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
}

.card-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .practical-card-geldwerte-vorteile-besteuerung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-geldwerte-vorteile-besteuerung {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-geldwerte-vorteile-besteuerung {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: left;
}

.conclusion-highlight-box-geldwerte-vorteile-besteuerung {
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.highlight-box-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

.related-section-geldwerte-vorteile-besteuerung {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color-light);
}

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

.related-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

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

.related-card-geldwerte-vorteile-besteuerung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

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

.related-card-image-geldwerte-vorteile-besteuerung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-geldwerte-vorteile-besteuerung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-geldwerte-vorteile-besteuerung:hover .related-card-image-geldwerte-vorteile-besteuerung img {
  transform: scale(1.05);
}

.related-card-body-geldwerte-vorteile-besteuerung {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-geldwerte-vorteile-besteuerung {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
}

.related-card-text-geldwerte-vorteile-besteuerung {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

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

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

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

  .intro-section-geldwerte-vorteile-besteuerung,
  .definition-section-geldwerte-vorteile-besteuerung,
  .calculation-section-geldwerte-vorteile-besteuerung,
  .treatment-section-geldwerte-vorteile-besteuerung,
  .practical-section-geldwerte-vorteile-besteuerung,
  .conclusion-section-geldwerte-vorteile-besteuerung,
  .related-section-geldwerte-vorteile-besteuerung {
    padding: 2rem 0;
  }

  .hero-meta-geldwerte-vorteile-besteuerung {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

.breadcrumbs-steuerfreibetraege-verguenstigungen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.breadcrumbs-steuerfreibetraege-verguenstigungen span {
  color: var(--color-text-secondary);
}

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

.hero-text-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

.meta-item-steuerfreibetraege-verguenstigungen i {
  color: var(--color-primary);
}

.hero-img-steuerfreibetraege-verguenstigungen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

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

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

.intro-text-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.intro-description-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-img-steuerfreibetraege-verguenstigungen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

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

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

.content-text-one-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-text-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.highlight-box-steuerfreibetraege-verguenstigungen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

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

.highlight-list-steuerfreibetraege-verguenstigungen li {
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.highlight-list-steuerfreibetraege-verguenstigungen li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.content-img-steuerfreibetraege-verguenstigungen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

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

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

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

.content-text-two-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.quote-section-steuerfreibetraege-verguenstigungen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
}

.quote-text-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.975rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.8;
}

.quote-author-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  display: block;
  font-style: normal;
  font-weight: 500;
}

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

  .content-image-two-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-text-two-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.benefits-header-steuerfreibetraege-verguenstigungen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.benefits-subtitle-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.benefit-card-steuerfreibetraege-verguenstigungen {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
  text-align: center;
  transition: all var(--transition-base);
}

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

.card-icon-steuerfreibetraege-verguenstigungen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.card-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .benefits-grid-steuerfreibetraege-verguenstigungen {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

.practice-text-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-steuerfreibetraege-verguenstigungen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-description-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.practice-steps-steuerfreibetraege-verguenstigungen {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.step-item-steuerfreibetraege-verguenstigungen {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--border-color-light);
}

.step-item-steuerfreibetraege-verguenstigungen:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

.step-content-steuerfreibetraege-verguenstigungen {
  flex: 1;
}

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

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

.practice-note-steuerfreibetraege-verguenstigungen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.practice-img-steuerfreibetraege-verguenstigungen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .practice-text-steuerfreibetraege-verguenstigungen,
  .practice-image-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-steuerfreibetraege-verguenstigungen {
  display: flex;
  flex-direction: column;
}

.conclusion-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-grid-steuerfreibetraege-verguenstigungen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-card-steuerfreibetraege-verguenstigungen {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
}

.conclusion-card-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

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

.conclusion-cta-steuerfreibetraege-verguenstigungen {
  background: var(--color-primary-light);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

@media (max-width: 768px) {
  .conclusion-grid-steuerfreibetraege-verguenstigungen {
    flex-direction: column;
    align-items: stretch;
  }

  .conclusion-card-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.disclaimer-content-steuerfreibetraege-verguenstigungen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

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

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

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

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

.related-subtitle-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-steuerfreibetraege-verguenstigungen {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-light);
  transition: all var(--transition-base);
}

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

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

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

.related-content-steuerfreibetraege-verguenstigungen {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-steuerfreibetraege-verguenstigungen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

.related-card-text-steuerfreibetraege-verguenstigungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.related-link-steuerfreibetraege-verguenstigungen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-decoration: none;
  transition: color var(--transition-base);
}

.related-link-steuerfreibetraege-verguenstigungen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.related-link-steuerfreibetraege-verguenstigungen:after {
  content: "";
  transition: transform var(--transition-base);
}

.related-link-steuerfreibetraege-verguenstigungen:hover:after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-grid-steuerfreibetraege-verguenstigungen {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-steuerfreibetraege-verguenstigungen,
  .intro-section-steuerfreibetraege-verguenstigungen,
  .content-section-one-steuerfreibetraege-verguenstigungen,
  .content-section-two-steuerfreibetraege-verguenstigungen,
  .benefits-section-steuerfreibetraege-verguenstigungen,
  .practice-section-steuerfreibetraege-verguenstigungen,
  .conclusion-section-steuerfreibetraege-verguenstigungen,
  .disclaimer-section-steuerfreibetraege-verguenstigungen,
  .related-section-steuerfreibetraege-verguenstigungen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .breadcrumbs-steuerfreibetraege-verguenstigungen {
    font-size: 0.7rem;
  }

  .benefit-card-steuerfreibetraege-verguenstigungen {
    flex: 1 1 100%;
  }
}

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

.steuerberatung-expertise-about {
  width: 100%;
}

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

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

.hero-taxation-about .container {
  display: block !important;
}

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

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

.hero-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.6;
}

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

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

.stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #4f46e5;
}

.stat-label-about {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.foundation-story-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundation-story-about .container {
  display: block !important;
}

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.foundation-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.foundation-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.foundation-text-about p {
  margin-bottom: 1.25rem;
  color: #475569;
}

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

.story-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

.expertise-pillars-about {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-pillars-about .container {
  display: block !important;
}

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

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

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.expertise-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

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

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card-about:hover {
  transform: translateY(-4px);
  background: #334155;
}

.pillar-icon-about {
  font-size: 2.25rem;
  color: #4f46e5;
  height: 3rem;
  display: flex;
  align-items: center;
}

.pillar-title-about {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.pillar-text-about {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.approach-methodology-about {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-methodology-about .container {
  display: block !important;
}

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

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

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

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

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

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  min-width: 4rem;
  text-align: right;
}

.step-content-about {
  flex: 1;
  padding-top: 0.25rem;
}

.step-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-text-about {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

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

.values-commitment-about {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.values-commitment-about .container {
  display: block !important;
}

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

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

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.values-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.values-description-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.values-description-about p {
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.values-description-about p:last-child {
  margin-bottom: 0;
}

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

.quote-section-about .container {
  display: block !important;
}

.featured-quote-about {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: #f1f5f9;
  border-left: 5px solid #4f46e5;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.quote-author-about {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

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

.disclaimer-section-about .container {
  display: block !important;
}

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

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #4f46e5;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.disclaimer-text-about {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

.disclaimer-text-about p {
  margin-bottom: 0.75rem;
  color: #475569;
}

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

@media (max-width: 768px) {
  .hero-stats-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-number-about {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .stat-label-about {
    font-size: 0.75rem;
  }

  .process-step-about {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number-about {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: left;
    min-width: auto;
  }

  .step-content-about {
    padding-top: 0;
  }

  .pillar-card-about {
    flex: 1 1 100%;
  }

  .values-description-about,
  .foundation-text-about {
    padding: 0 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .pillars-cards-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .pillar-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .hero-content-about {
    align-items: center;
  }

  .pillars-cards-about {
    gap: 2rem;
  }

  .pillar-card-about {
    flex: 1 1 calc(33.333% - 1.35rem);
  }

  .process-step-about {
    gap: 2.5rem;
  }
}

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

.portfolio-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

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

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

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

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

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

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

  .portfolio-projects-container {
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

.portfolio-card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-sm) 0;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  margin: var(--space-sm) 0 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color-light);
}

.portfolio-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-top: 1px solid var(--border-color-light);
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

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

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

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

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

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

  .services-hero-title {
    font-size: clamp(2.25rem, 5vw + 0.5rem, 3.5rem);
  }
}

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

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

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .services-content {
    padding: 4rem var(--space-md);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-list li {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
}

.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
}

.services-cta {
  background-color: var(--color-secondary-light);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

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

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem var(--space-md);
  }

  .services-cta-title {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  }
}

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

  .services-cta-title {
    font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  }
}

.benefit-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

.benefit-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  overflow: hidden;
}

.benefit-docs .content {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.benefit-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.benefit-docs .last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.benefit-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  line-height: 1.4;
}

.benefit-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
}

.benefit-docs ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.benefit-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.benefit-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
  overflow: hidden;
}

.benefit-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.benefit-docs .contact-section p {
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0;
}

.benefit-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.benefit-docs main {
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .benefit-docs main {
    padding: var(--space-3xl) 0;
  }
  
  .benefit-docs .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .benefit-docs main {
    padding: var(--space-4xl) 0;
  }
  
  .benefit-docs .container {
    padding: 0 var(--space-lg);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  animation: slideInUp 0.6s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  color: var(--color-secondary);
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: checkAnimation 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.thank-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.3px;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.45rem, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.3px;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: 0.5px;
}

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

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), var(--shadow-lg);
}

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

@keyframes checkAnimation {
  0% {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dasharray: 166;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

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

  .checkmark {
    width: 100px;
    height: 100px;
  }

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .checkmark {
    width: 120px;
    height: 120px;
  }

  .thank-wrapper {
    padding: var(--space-xl) 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

  .checkmark {
    width: 140px;
    height: 140px;
  }

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

  .btn-primary {
    padding: calc(var(--space-md) + 2px) calc(var(--space-2xl) + 4px);
    font-size: 1.05rem;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-4xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

main {
  width: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.error-section {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  animation: slideUp 0.6s ease-out;
}

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

.error-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.error-code-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0.1;
  z-index: 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  letter-spacing: -0.05em;
  line-height: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.error-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  color: var(--color-secondary);
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.error-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.error-description {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  font-family: var(--font-primary);
}

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

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

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

.error-suggestions {
  background: var(--color-bg-tertiary);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  animation: slideUp 0.6s ease-out 0.2s both;
}

.suggestions-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-align: left;
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.suggestions-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.suggestion-icon {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.suggestion-text {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
  }

  .error-visual {
    width: 240px;
    height: 240px;
  }

  .error-suggestions {
    padding: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-xl);
  }

  .error-wrapper {
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
  }

  .error-visual {
    width: 280px;
    height: 280px;
    margin-bottom: var(--space-lg);
  }

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

  .suggestions-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .suggestions-list li {
    flex: 0 1 calc(50% - var(--space-sm));
    justify-content: center;
    text-align: center;
  }

  .error-content-wrapper {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-2xl);
  }

  .error-wrapper {
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
  }

  .error-visual {
    width: 300px;
    height: 300px;
  }

  .error-code {
    font-size: clamp(4rem, 12vw, 5.5rem);
  }

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

  .suggestions-list li {
    flex: 0 1 calc(25% - var(--space-lg));
  }
}

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

@media (prefers-color-scheme: dark) {
  .error-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .error-code-container {
    background: #1e293b;
  }

  .error-suggestions {
    background: #1e293b;
    border-color: #334155;
  }
}

.contact-talk-to-us {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-talk-to-us-hero {
  background-color: var(--color-bg-tertiary);
  padding: 3rem var(--space-sm);
  border-bottom: 1px solid var(--border-color-light);
  overflow: hidden;
}

.contact-talk-to-us-hero-content {
  max-width: 800px;
}

.contact-talk-to-us-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.contact-talk-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-talk-to-us-hero {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-talk-to-us-hero {
    padding: 5rem var(--space-lg);
  }
}

.contact-talk-to-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.contact-talk-to-us-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-talk-to-us-main {
    padding: 4rem var(--space-md);
  }

  .contact-talk-to-us-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-talk-to-us-main {
    padding: 5rem var(--space-lg);
  }

  .contact-talk-to-us-main-grid {
    gap: 5rem;
  }
}

.contact-talk-to-us-form-wrapper {
  background-color: var(--color-bg-tertiary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
  box-shadow: var(--shadow-sm);
}

.contact-talk-to-us-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.3;
}

.contact-talk-to-us-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-talk-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-talk-to-us-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.contact-talk-to-us-input,
.contact-talk-to-us-textarea {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-talk-to-us-input::placeholder,
.contact-talk-to-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-talk-to-us-input:focus,
.contact-talk-to-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-talk-to-us-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-talk-to-us-privacy-notice {
  margin: var(--space-md) 0 0 0;
}

.contact-talk-to-us-privacy-notice p {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.contact-talk-to-us-privacy-notice a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-talk-to-us-privacy-notice a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-talk-to-us-submit {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-bg-tertiary);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  margin-top: var(--space-sm);
}

.contact-talk-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-talk-to-us-submit:active {
  transform: translateY(0);
}

.contact-talk-to-us-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-talk-to-us-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.contact-talk-to-us-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-talk-to-us-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-talk-to-us-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-talk-to-us-info-content {
  flex: 1;
}

.contact-talk-to-us-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.3;
}

.contact-talk-to-us-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-talk-to-us-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-talk-to-us-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-talk-to-us-info-details {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-talk-to-us-info-details h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.contact-talk-to-us-info-details p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .contact-talk-to-us-form-wrapper {
    padding: 1.5rem;
  }

  .contact-talk-to-us-form-wrapper h2 {
    margin-bottom: var(--space-md);
  }

  .contact-talk-to-us-info-wrapper h2 {
    margin-bottom: var(--space-md);
  }

  .contact-talk-to-us-info-item {
    gap: var(--space-md);
  }

  .contact-talk-to-us-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
}