@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: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;

  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent: #06b6d4;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  --font-primary: 'Source Sans Pro', sans-serif;
  --font-heading: 'Lora', serif;

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

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

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

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

h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

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

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

button, input[type="button"], input[type="submit"] {
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

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

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

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-disc {
  list-style: disc;
  margin-left: 1.5rem;
}

.list-disc li {
  margin-bottom: var(--space-sm);
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

.divider-light {
  background: #f1f5f9;
}

.input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.input:disabled {
  background: var(--color-bg-secondary);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

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

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

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

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

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

.alert-success {
  background: #dcfce7;
  border-color: var(--color-success);
  color: #166534;
}

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

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

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

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

@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

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

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

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

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

  .section {
    padding: var(--space-2xl) 0;
  }
}
.header-schutz-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.header-schutz-portal-brand:hover {
  opacity: 0.8;
}

.header-schutz-portal-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

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

.header-schutz-portal-desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  margin: 0 2rem;
}

.header-schutz-portal-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-schutz-portal-nav-link:hover {
  color: var(--color-accent);
}

.header-schutz-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-schutz-portal-cta-button:hover {
  background: var(--color-accent-hover);
}

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

.header-schutz-portal-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-schutz-portal-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.header-schutz-portal-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-schutz-portal-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.header-schutz-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
  padding-top: 70px;
}

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

.header-schutz-portal-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

.header-schutz-portal-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

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

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

.header-schutz-portal-mobile-link {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-base), background var(--transition-base);
}

.header-schutz-portal-mobile-link:hover {
  color: var(--color-accent);
  background: var(--color-bg-secondary);
}

.header-schutz-portal-mobile-cta {
  display: block;
  margin: 1.5rem clamp(1rem, 3vw, 2rem);
  padding: 1rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background var(--transition-base);
}

.header-schutz-portal-mobile-cta:hover {
  background: var(--color-accent-hover);
}

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

  .header-schutz-portal-cta-button {
    display: block;
  }

  .header-schutz-portal-mobile-toggle {
    display: none;
  }

  .header-schutz-portal-mobile-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-schutz-portal-desktop-nav {
    gap: 1.5rem;
    margin: 0 1rem;
  }

  .header-schutz-portal-nav-link {
    font-size: 0.9rem;
  }
}

    

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

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

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

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

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

.bu-protection-hub {
  width: 100%;
}

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

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

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

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-cta-group-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

.btn-secondary-index:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--color-primary-hover);
}

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

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

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

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

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

.features-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.card-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

.about-image-index {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

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

.testimonials-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.testimonial-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote-icon-index {
  color: var(--color-primary);
  font-size: 1.5rem;
  opacity: 0.5;
}

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

.testimonial-author-index {
  margin-top: 0.5rem;
}

.author-name-index {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.author-role-index {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin: 0.25rem 0 0 0;
}

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

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

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

.posts-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.post-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.post-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin: 0;
}

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

.post-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

.posts-cta-index {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

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

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

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

.faq-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
}

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

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

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

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

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

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

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

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

.stat-card-index {
  flex: 1 1 250px;
  max-width: 350px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.stat-label-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-final-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

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

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

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

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

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

.resource-item-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-item-index:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.resource-icon-index {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin: 0 auto;
}

.resource-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin: 0;
}

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

.resource-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: center;
}

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

.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: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn-accept-index {
  padding: 0.65rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-decline-index {
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

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

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

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

  .about-content-index {
    flex-direction: column;
  }

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

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

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

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

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

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

  .resource-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

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

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

  .btn {
    width: 100%;
  }

  .faq-items-index {
    gap: 1rem;
  }

  .faq-item-index {
    padding: 1.25rem;
  }

  .cta-final-box-index {
    padding: 1.5rem;
  }

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

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

@media (min-width: 1024px) {
  .hero-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .about-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .testimonials-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .posts-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .faq-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .stats-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .cta-final-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .resources-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

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

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

.footer-about {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--color-border);
}

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

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

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

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

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

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

.footer-nav a,
.footer-legal a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base) ease;
  line-height: var(--line-height-normal);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

.footer-contact-info strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-template-areas:
      "about about"
      "nav contact"
      "legal legal"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
    padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
  }

  .footer-nav {
    grid-area: nav;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-legal {
    grid-area: legal;
    padding-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-copyright {
    grid-area: copyright;
    padding-top: clamp(1.5rem, 2.5vw, 2rem);
  }
}

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

  .footer-about {
    grid-area: about;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding-right: clamp(1rem, 2vw, 1.5rem);
    padding-bottom: 0;
  }

  .footer-nav {
    grid-area: nav;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-legal {
    grid-area: legal;
    padding-top: 0;
    border-top: none;
  }

  .footer-copyright {
    grid-area: copyright;
    padding-top: clamp(1.5rem, 2.5vw, 2rem);
    padding-bottom: 0;
    border-top: 1px solid var(--color-border);
  }
}
    

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

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

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

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

.hero-title-category {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-category {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-intro-category {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-category {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.posts-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-category {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.card-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-category {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.card-meta-item-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
}

.card-meta-item-category i {
  color: var(--color-accent);
}

.card-link-category {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base) ease;
  display: inline-block;
}

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

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

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

.key-concepts-header-category {
  text-align: center;
}

.key-concepts-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.key-concepts-intro-category {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.concept-item-category {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.concept-number-category {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.concept-heading-category {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-text-category {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.income-protection-header-category {
  text-align: center;
}

.income-protection-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.income-protection-body-category {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.income-protection-text-category {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (min-width: 768px) {
  .hero-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .key-concepts-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .income-protection-section-category {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .card-berufsunfaehigkeitsschutz {
    flex: 1 1 350px;
  }

  .concept-item-category {
    flex: 1 1 280px;
  }
}

@media (min-width: 1024px) {
  .hero-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

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

  .key-concepts-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .income-protection-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-grid-category {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .card-berufsunfaehigkeitsschutz {
    flex: 1 1 380px;
  }

  .key-concepts-grid-category {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .concept-item-category {
    flex: 1 1 300px;
    max-width: 100%;
  }
}

.main-bu-qualitaetskriterien-bewerten {
    width: 100%;
  }

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

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

  .breadcrumbs-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.75rem, 1vw, 0.9rem);
  }

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

  .breadcrumbs-bu-qualitaetskriterien-bewerten a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
  }

  .breadcrumbs-bu-qualitaetskriterien-bewerten span {
    color: var(--color-text-secondary);
  }

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

  .hero-text-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.95rem, 1.2vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: var(--line-height-relaxed);
  }

  .hero-meta-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .meta-item-bu-qualitaetskriterien-bewerten {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: var(--color-text-secondary);
  }

  .meta-item-bu-qualitaetskriterien-bewerten i {
    color: var(--color-accent);
  }

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

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

    .hero-text-bu-qualitaetskriterien-bewerten,
    .hero-image-bu-qualitaetskriterien-bewerten {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .breadcrumbs-bu-qualitaetskriterien-bewerten {
      font-size: 0.75rem;
    }
  }

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

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

  .intro-text-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro-paragraph-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

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

  @media (max-width: 768px) {
    .intro-content-bu-qualitaetskriterien-bewerten {
      flex-direction: column;
    }

    .intro-text-bu-qualitaetskriterien-bewerten,
    .intro-image-bu-qualitaetskriterien-bewerten {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

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

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

  .definition-image-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .definition-text-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .definition-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .definition-paragraph-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .definition-image-bu-qualitaetskriterien-bewerten img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 768px) {
    .definition-content-bu-qualitaetskriterien-bewerten {
      flex-direction: column;
    }

    .definition-image-bu-qualitaetskriterien-bewerten,
    .definition-text-bu-qualitaetskriterien-bewerten {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

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

  .leistung-content-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .leistung-text-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .leistung-image-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .leistung-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .leistung-paragraph-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .highlight-box-bu-qualitaetskriterien-bewerten {
    background: var(--color-bg-tertiary);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .highlight-text-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-primary);
    margin: 0;
  }

  .leistung-image-bu-qualitaetskriterien-bewerten img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 768px) {
    .leistung-content-bu-qualitaetskriterien-bewerten {
      flex-direction: column;
    }

    .leistung-text-bu-qualitaetskriterien-bewerten,
    .leistung-image-bu-qualitaetskriterien-bewerten {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

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

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

  .features-header-bu-qualitaetskriterien-bewerten {
    text-align: center;
  }

  .features-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .features-grid-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .feature-card-bu-qualitaetskriterien-bewerten {
    flex: 1 1 calc(33.333% - clamp(1.5rem, 3vw, 2rem));
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  .feature-card-bu-qualitaetskriterien-bewerten:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .feature-icon-bu-qualitaetskriterien-bewerten {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-accent);
  }

  .feature-card-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature-card-text-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  @media (max-width: 1024px) {
    .feature-card-bu-qualitaetskriterien-bewerten {
      flex: 1 1 calc(50% - clamp(1.5rem, 3vw, 2rem));
    }
  }

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

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

  .comparison-content-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .comparison-text-bu-qualitaetskriterien-bewerten {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .comparison-image-bu-qualitaetskriterien-beweren {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .comparison-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .comparison-paragraph-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .comparison-image-bu-qualitaetskriterien-beweren img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 768px) {
    .comparison-content-bu-qualitaetskriterien-bewerten {
      flex-direction: column;
    }

    .comparison-text-bu-qualitaetskriterien-bewerten,
    .comparison-image-bu-qualitaetskriterien-beweren {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

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

  .checklist-content-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .checklist-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .checklist-subtitle-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .checklist-items-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .checklist-item-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

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

  .checklist-item-text-bu-qualitaetskriterien-bewerten {
    flex: 1;
  }

  .checklist-item-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .checklist-item-desc-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

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

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

  .cta-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta-text-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
  }

  .cta-button-bu-qualitaetskriterien-bewerten {
    display: inline-block;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: fit-content;
    align-self: center;
  }

  .cta-button-bu-qualitaetskriterien-bewerten:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
  }

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

  .disclaimer-content-bu-qualitaetskriterien-bewerten {
    background: var(--color-bg-tertiary);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 4px solid var(--color-info);
    border-radius: var(--radius-md);
    max-width: 800px;
  }

  .disclaimer-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-primary);
    margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-text-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

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

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

  .related-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    text-align: center;
    margin: 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-grid-bu-qualitaetskriterien-bewerten {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .related-card-bu-qualitaetskriterien-bewerten {
    flex: 1 1 calc(33.333% - clamp(1.5rem, 3vw, 2rem));
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .related-card-bu-qualitaetskriterien-bewerten:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .related-image-bu-qualitaetskriterien-bewerten {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-image-bu-qualitaetskriterien-bewerten img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

  .related-card-title-bu-qualitaetskriterien-bewerten {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-primary);
    margin: 0;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-desc-bu-qualitaetskriterien-bewerten {
    font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
    flex: 1;
  }

  .related-link-bu-qualitaetskriterien-bewerten {
    display: inline-block;
    color: var(--color-accent);
    text-decoration: none;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
  }

  .related-link-bu-qualitaetskriterien-bewerten:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
  }

  @media (max-width: 1024px) {
    .related-card-bu-qualitaetskriterien-bewerten {
      flex: 1 1 calc(50% - clamp(1.5rem, 3vw, 2rem));
    }
  }

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

  @media (max-width: 768px) {
    .hero-section-bu-qualitaetskriterien-bewerten {
      padding: clamp(2rem, 5vw, 4rem) 0;
    }

    .intro-section-bu-qualitaetskriterien-bewerten,
    .definition-section-bu-qualitaetskriterien-bewerten,
    .leistung-section-bu-qualitaetskriterien-bewerten,
    .features-section-bu-qualitaetskriterien-bewerten,
    .comparison-section-bu-qualitaetskriterien-bewerten,
    .checklist-section-bu-qualitaetskriterien-bewerten,
    .cta-section-bu-qualitaetskriterien-bewerten,
    .disclaimer-section-bu-qualitaetskriterien-bewerten,
    .related-section-bu-qualitaetskriterien-bewerten {
      padding: clamp(2rem, 5vw, 4rem) 0;
    }
  }

.main-gesundheitsangaben-bu-versicherung {
    width: 100%;
  }

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

  .hero-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

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

  .breadcrumbs-gesundheitsangaben-bu-versicherung a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-base);
  }

  .breadcrumbs-gesundheitsangaben-bu-versicherung a:hover {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .breadcrumbs-gesundheitsangaben-bu-versicherung span {
    color: var(--color-text-secondary);
  }

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

  .hero-text-block-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-block-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

  .meta-item-gesundheitsangaben-bu-versicherung i {
    color: var(--color-accent);
  }

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

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

    .hero-text-block-gesundheitsangaben-bu-versicherung,
    .hero-image-block-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .hero-meta-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  .intro-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

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

  .intro-paragraph-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
  }

  .intro-highlight-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: column;
  }

  .highlight-box-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
  }

  .highlight-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .highlight-list-gesundheitsangaben-bu-versicherung {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .highlight-item-gesundheitsangaben-bu-versicherung {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    padding-left: 1.5rem;
    position: relative;
    line-height: var(--line-height-normal);
  }

  .highlight-item-gesundheitsangaben-bu-versicherung::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }

  .content-section-one-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .content-text-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-image-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .content-paragraph-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .content-paragraph-gesundheitsangaben-bu-versicherung:last-child {
    margin-bottom: 0;
  }

  .content-image-item-gesundheitsangaben-bu-versicherung {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .content-wrapper-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
    }

    .content-text-gesundheitsangaben-bu-versicherung,
    .content-image-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .content-section-two-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .content-image-left-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-text-right-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

    .content-image-left-gesundheitsangaben-bu-versicherung,
    .content-text-right-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .process-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .process-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .process-grid-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .process-card-gesundheitsangaben-bu-versicherung {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: 500px;
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 2vw, 2rem);
    align-items: flex-start;
  }

  .process-number-gesundheitsangaben-bu-versicherung {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    flex-shrink: 0;
    min-width: 60px;
  }

  .process-info-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .process-card-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
  }

  .process-card-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
  }

  @media (max-width: 768px) {
    .process-grid-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
    }

    .process-card-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .tips-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .tips-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tips-cards-wrapper-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .tips-card-gesundheitsangaben-bu-versicherung {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: 450px;
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .tips-card-gesundheitsangaben-bu-versicherung:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .tips-card-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
  }

  .tips-card-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
  }

  @media (max-width: 768px) {
    .tips-cards-wrapper-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
    }

    .tips-card-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .quote-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

  .quote-content-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .featured-quote-gesundheitsangaben-bu-versicherung {
    padding: clamp(2rem, 4vw, 3.5rem);
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0;
  }

  .quote-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .quote-author-gesundheitsangaben-bu-versicherung {
    display: block;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--color-text-secondary);
    font-style: normal;
  }

  .detail-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

  .detail-wrapper-gesundheitsangaben-bu-versicherung {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .detail-text-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .detail-image-gesundheitsangaben-bu-versicherung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .detail-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .detail-paragraph-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .detail-paragraph-gesundheitsangaben-bu-versicherung:last-child {
    margin-bottom: 0;
  }

  .detail-image-item-gesundheitsangaben-bu-versicherung {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .detail-wrapper-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
    }

    .detail-text-gesundheitsangaben-bu-versicherung,
    .detail-image-gesundheitsangaben-bu-versicherung {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .conclusion-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .conclusion-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    text-align: center;
  }

  .conclusion-cta-gesundheitsangaben-bu-versicherung {
    display: flex;
    justify-content: center;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .btn-primary-gesundheitsangaben-bu-versicherung {
    display: inline-block;
    padding: clamp(0.875rem, 1vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-weight: 600;
    transition: all var(--transition-base);
    text-align: center;
  }

  .btn-primary-gesundheitsangaben-bu-versicherung:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }

  .disclaimer-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-gesundheitsangaben-bu-versicherung {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg-primary);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-info);
  }

  .disclaimer-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .disclaimer-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.875rem, 0.95vw, 1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
  }

  .related-section-gesundheitsangaben-bu-versicherung {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .related-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .related-card-gesundheitsangaben-bu-versicherung {
    flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.667rem));
    max-width: 380px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .related-card-gesundheitsangaben-bu-versicherung:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .related-card-image-gesundheitsangaben-bu-versicherung {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-image-item-gesundheitsangaben-bu-versicherung {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-card-content-gesundheitsangaben-bu-versicherung {
    padding: clamp(1.25rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .related-card-title-gesundheitsangaben-bu-versicherung {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
  }

  .related-card-text-gesundheitsangaben-bu-versicherung {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
    flex: 1;
  }

  .related-card-link-gesundheitsangaben-bu-versicherung {
    display: inline-block;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 1rem);
    transition: color var(--transition-base);
  }

  .related-card-link-gesundheitsangaben-bu-versicherung:hover {
    color: var(--color-primary);
    text-decoration: underline;
  }

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

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

  @media (max-width: 640px) {
    .hero-meta-gesundheitsangaben-bu-versicherung {
      flex-direction: column;
    }

    .breadcrumbs-gesundheitsangaben-bu-versicherung {
      font-size: 0.75rem;
    }
  }

.main-abstrakte-konkrete-verweisung {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-abstrakte-konkrete-verweisung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.breadcrumbs-abstrakte-konkrete-verweisung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-abstrakte-konkrete-verweisung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

.hero-text-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-abstrakte-konkrete-verweisung {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-abstrakte-konkrete-verweisung {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

.meta-item-abstrakte-konkrete-verweisung {
  color: var(--color-text-secondary);
}

.meta-separator-abstrakte-konkrete-verweisung {
  color: var(--color-border);
}

.hero-image-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-abstrakte-konkrete-verweisung,
  .hero-image-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-abstrakte-konkrete-verweisung img {
    max-height: 300px;
  }
}

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

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

.intro-text-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-abstrakte-konkrete-verweisung img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-abstrakte-konkrete-verweisung {
    flex-direction: column;
  }

  .intro-text-abstrakte-konkrete-verweisung,
  .intro-image-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-abstrakte-konkrete-verweisung img {
    max-height: 300px;
  }
}

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

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

.definition-text-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.definition-paragraph-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.definition-image-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-image-abstrakte-konkrete-verweisung img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .definition-content-abstrakte-konkrete-verweisung {
    flex-direction: column;
  }

  .definition-text-abstrakte-konkrete-verweisung,
  .definition-image-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .definition-image-abstrakte-konkrete-verweisung img {
    max-height: 300px;
  }
}

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

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

.concrete-text-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
  order: 2;
}

.concrete-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concrete-paragraph-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concrete-image-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
  order: 1;
}

.concrete-image-abstrakte-konkrete-verweisung img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .concrete-content-abstrakte-konkrete-verweisung {
    flex-direction: column;
  }

  .concrete-text-abstrakte-konkrete-verweisung,
  .concrete-image-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .concrete-image-abstrakte-konkrete-verweisung img {
    max-height: 300px;
  }
}

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

.implications-header-abstrakte-konkrete-verweisung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.implications-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implications-subtitle-abstrakte-konkrete-verweisung {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.implications-content-abstrakte-konkrete-verweisung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implications-text-abstrakte-konkrete-verweisung {
  flex: 1 1 60%;
  max-width: 60%;
}

.implications-paragraph-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implications-highlight-abstrakte-konkrete-verweisung {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-abstrakte-konkrete-verweisung {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.highlight-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-text-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .implications-content-abstrakte-konkrete-verweisung {
    flex-direction: column;
  }

  .implications-text-abstrakte-konkrete-verweisung,
  .implications-highlight-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.selection-text-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.selection-paragraph-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.selection-image-abstrakte-konkrete-verweisung {
  flex: 1 1 50%;
  max-width: 50%;
}

.selection-image-abstrakte-konkrete-verweisung img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .selection-content-abstrakte-konkrete-verweisung {
    flex-direction: column;
  }

  .selection-text-abstrakte-konkrete-verweisung,
  .selection-image-abstrakte-konkrete-verweisung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .selection-image-abstrakte-konkrete-verweisung img {
    max-height: 300px;
  }
}

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

.disclaimer-content-abstrakte-konkrete-verweisung {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.disclaimer-box-abstrakte-konkrete-verweisung {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-info);
}

.disclaimer-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-abstrakte-konkrete-verweisung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-abstrakte-konkrete-verweisung {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.related-image-abstrakte-konkrete-verweisung {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-image-abstrakte-konkrete-verweisung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-abstrakte-konkrete-verweisung {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-abstrakte-konkrete-verweisung {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-abstrakte-konkrete-verweisung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-abstrakte-konkrete-verweisung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
  display: inline-block;
  align-self: flex-start;
}

.related-link-abstrakte-konkrete-verweisung:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

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

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

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

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

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

p {
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.main-nachversicherung-erhoehungsklauseln {
  display: block;
  width: 100%;
}

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

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

.hero-text-wrapper-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-nachversicherung-erhoehungsklauseln a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.breadcrumbs-nachversicherung-erhoehungsklauseln span {
  color: var(--color-text-secondary);
}

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

.hero-lead-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

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

.meta-item-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.hero-image-wrapper-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.intro-text-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.mechanism-image-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.mechanism-text-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.mechanism-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mechanism-highlight-nachversicherung-erhoehungsklauseln {
  background: var(--color-bg-secondary);
  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-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

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

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

.events-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.events-subtitle-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

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

.event-card-nachversicherung-erhoehungsklauseln {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.event-card-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.event-card-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.guarantees-text-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.guarantees-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.guarantees-image-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.comparison-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.comparison-intro-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.comparison-table-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-row-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
}

.comparison-row-nachversicherung-erhoehungsklauseln:last-child {
  border-bottom: none;
}

.comparison-cell-header-nachversicherung-erhoehungsklauseln {
  flex: 1 1 33.33%;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  border-right: 1px solid var(--color-border);
}

.comparison-cell-header-nachversicherung-erhoehungsklauseln:last-child {
  border-right: none;
}

.comparison-cell-nachversicherung-erhoehungsklauseln {
  flex: 1 1 33.33%;
  padding: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-normal);
  border-right: 1px solid var(--color-border);
}

.comparison-cell-nachversicherung-erhoehungsklauseln:last-child {
  border-right: none;
}

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

.practical-content-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practical-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.practical-step-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

.step-number-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-nachversicherung-erhoehungsklauseln {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.step-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.step-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.practical-image-column-nachversicherung-erhoehungsklauseln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.warning-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.warning-box-nachversicherung-erhoehungsklauseln {
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-warning);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-md);
}

.warning-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

.conclusion-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.cta-box-nachversicherung-erhoehungsklauseln {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.cta-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-nachversicherung-erhoehungsklauseln {
  display: inline-block;
  padding: clamp(0.75rem, 1vw + 0.5rem, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.cta-link-nachversicherung-erhoehungsklauseln:hover {
  background: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
}

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

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

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

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

.related-card-nachversicherung-erhoehungsklauseln {
  flex: 1 1 calc(33.33% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

.related-card-image-nachversicherung-erhoehungsklauseln {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.related-card-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  flex-grow: 1;
}

.related-link-nachversicherung-erhoehungsklauseln {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  transition: color var(--transition-base);
}

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

.disclaimer-section-nachversicherung-erhoehungsklauseln {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.disclaimer-content-nachversicherung-erhoehungsklauseln {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nachversicherung-erhoehungsklauseln {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.6rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.disclaimer-text-nachversicherung-erhoehungsklauseln {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

  .intro-content-nachversicherung-erhoehungsklauseln {
    flex-direction: column;
  }

  .intro-text-column-nachversicherung-erhoehungsklauseln,
  .intro-image-column-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mechanism-content-nachversicherung-erhoehungsklauseln {
    flex-direction: column;
  }

  .mechanism-image-column-nachversicherung-erhoehungsklauseln,
  .mechanism-text-column-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .event-card-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .guarantees-content-nachversicherung-erhoehungsklauseln {
    flex-direction: column;
  }

  .guarantees-text-column-nachversicherung-erhoehungsklauseln,
  .guarantees-image-column-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-content-nachversicherung-erhoehungsklauseln {
    flex-direction: column;
  }

  .practical-text-column-nachversicherung-erhoehungsklauseln,
  .practical-image-column-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-nachversicherung-erhoehungsklauseln {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1023px) {
  .event-card-nachversicherung-erhoehungsklauseln {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

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

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

.bu-insurance-excellence-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  max-width: 700px;
}

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

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

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

.expertise-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.expertise-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  max-width: 750px;
  margin: 0 auto;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-bg-tertiary);
}

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

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

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

.foundation-text-about {
  max-width: 850px;
}

.foundation-text-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

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

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

.step-item-about {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.step-item-about:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-number-about {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

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

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

.step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

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

.commitment-header-about {
  text-align: center;
}

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

.commitment-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.value-item-about {
  background: var(--color-bg-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  transition: all var(--transition-base);
}

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

.value-label-about {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.value-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  font-style: italic;
  margin-top: 2rem;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

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

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

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.disclaimer-text-about strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .expertise-cards-about {
    justify-content: space-between;
  }

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

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

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

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

  .foundation-image-about {
    flex: 1 1 45%;
    max-width: 100%;
  }

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

@media (max-width: 767px) {
  .step-item-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: 1.5rem;
  }
}

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

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 2px solid var(--color-border);
}

.faq-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

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

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

  .faq-hero-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
  }
}

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

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

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.faq-question:hover {
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
}

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

.faq-question-text {
  flex: 1;
  line-height: var(--line-height-normal);
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: var(--space-lg);
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

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

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

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

  .faq-answer p {
    padding: var(--space-lg) var(--space-xl);
  }
}

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

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 2px solid var(--color-border);
}

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

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

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

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

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

.faq-cta-button:active {
  transform: translateY(0);
}

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

  .faq-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }
}

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

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

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

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

.services-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: 400;
}

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

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.services-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.services-card-icon i {
  font-size: 28px;
  color: var(--color-primary);
}

.services-card:hover .services-card-icon {
  background-color: var(--color-primary);
}

.services-card:hover .services-card-icon i {
  color: var(--color-bg-card);
}

.services-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.services-card-text {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: 400;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.services-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.2rem);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 400;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

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

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .services-content {
    padding: 4rem var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: 4rem var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-hub {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-hub main {
  width: 100%;
}

.legal-hub .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.legal-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-hub .updated {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-hub ul {
  list-style-position: inside;
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.legal-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-hub strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-hub .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.legal-hub .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.legal-hub .contact-section p {
  margin-bottom: var(--space-sm);
}

.legal-hub .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-hub .container {
    padding: 0 var(--space-lg);
  }

  .legal-hub .content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-hub .container {
    padding: 0 var(--space-xl);
  }

  .legal-hub .content {
    padding: var(--space-3xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.success-icon {
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.success-icon svg {
  color: var(--color-success);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.thank-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.5px;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 500;
}

.confirmation-box {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-success);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.confirmation-box p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin: 0;
}

.next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: var(--space-lg) 0;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-base) ease;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
  cursor: pointer;
  border: none;
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .success-icon {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-3xl);
  }
}

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

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-3xl);
  }
}

.error-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .error-visual {
    height: 280px;
    margin-bottom: var(--space-xl);
  }
}

.error-code-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  animation: floatError 3s ease-in-out infinite;
  line-height: 1;
}

@keyframes floatError {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: rotateDecoration 20s linear infinite;
}

@media (min-width: 768px) {
  .error-decoration {
    width: 280px;
    height: 280px;
  }
}

@keyframes rotateDecoration {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .error-message {
    gap: var(--space-lg);
  }
}

.error-message h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
  font-weight: 500;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-md);
}

.error-suggestions {
  background-color: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .error-suggestions {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
  }
}

.suggestions-label {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 0.95vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
  padding-left: var(--space-md);
  position: relative;
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .btn {
    padding: var(--space-lg) var(--space-2xl);
    margin-top: var(--space-lg);
  }
}

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

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

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

@media (max-width: 480px) {
  .error-visual {
    height: 150px;
  }

  .error-decoration {
    width: 150px;
    height: 150px;
  }

  .error-suggestions {
    padding: var(--space-md);
  }

  .btn {
    width: 100%;
  }
}

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

.contact-lets-talk-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  text-align: center;
}

.contact-lets-talk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-lets-talk-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: 6rem 2rem;
  }
}

.contact-lets-talk-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.contact-lets-talk-main-content {
  width: 100%;
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: 5rem 2rem;
  }

  .contact-lets-talk-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 40%;
  }
}

.contact-lets-talk-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-lets-talk-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: var(--transition-base);
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
}

.contact-lets-talk-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-lets-talk-privacy-note {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-lets-talk-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-lets-talk-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-lets-talk-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-lets-talk-submit:active {
  transform: translateY(0);
}

.contact-lets-talk-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-tight);
}

.contact-lets-talk-info-block {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.contact-lets-talk-info-block:last-of-type {
  margin-bottom: var(--space-lg);
  padding-bottom: 0;
  border-bottom: none;
}

.contact-lets-talk-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-lets-talk-info-content {
  flex: 1;
}

.contact-lets-talk-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-lets-talk-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-normal);
}

.contact-lets-talk-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-lets-talk-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-info-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-lets-talk-expertise {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.contact-lets-talk-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.contact-lets-talk-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-lets-talk-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  position: relative;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-expertise-item:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-grid {
    gap: var(--space-3xl);
  }
}
.header-schutz-portal-mobile-close,.header-schutz-portal-mobile-toggle{
  width: 34px;
}

.header-schutz-portal-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}
