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

:root {
  --color-bg-primary: #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-primary-light: #dbeafe;
  --color-primary-dark: #1e40af;

  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;

  --color-accent: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  --font-primary: 'Poppins', 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;
  --radius-2xl: 24px;

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

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  --letter-spacing-tight: -0.015em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
}

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

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

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

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: var(--font-size-5xl);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-md);
}

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

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

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

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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);
  font-weight: 500;
}

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

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

button, .btn {
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-border);
}

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

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-error {
  background: #fee2e2;
  color: #991b1b;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

code {
  background: var(--color-bg-secondary);
  color: var(--color-primary-dark);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header-schutz-professional {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  width: 100%;
  z-index: 100;
}

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

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

.header-schutz-professional-brand:hover {
  opacity: 0.85;
}

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

.header-schutz-professional-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: var(--letter-spacing-tight);
}

.header-schutz-professional-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  margin: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.header-schutz-professional-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

.header-schutz-professional-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base), opacity var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-schutz-professional-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-schutz-professional-mobile-toggle:hover {
  opacity: 0.7;
}

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

.header-schutz-professional-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  border-left: 1px solid var(--color-border-light);
}

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

.header-schutz-professional-mobile-header {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  justify-content: flex-end;
}

.header-schutz-professional-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: opacity var(--transition-base);
}

.header-schutz-professional-mobile-close:hover {
  opacity: 0.7;
}

.header-schutz-professional-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  overflow-y: auto;
}

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .header-schutz-professional-container {
    height: 60px;
  }

  .header-schutz-professional-mobile-menu {
    padding-top: 60px;
  }
}

    .bu-versicherung-hub {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: var(--letter-spacing-tight);
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

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

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

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

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

.btn-primary-index {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.btn-secondary-index {
  background: transparent;
  color: var(--color-primary);
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.hero-image-block-index {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

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

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

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

  .hero-buttons-index {
    flex-direction: column;
  }

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }
}

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

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

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

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

.about-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

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

.about-paragraph-index {
  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;
}

.about-key-points-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.key-point-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.key-point-index i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-image-index {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

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

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

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

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

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

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

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.feature-card-index {
  flex: 1 1 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 var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.card-icon-index {
  font-size: 2rem;
  color: var(--color-primary);
}

.card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 350px;
  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: row;
  gap: 1.5rem;
  align-items: flex-start;
  border: 1px solid var(--color-border-light);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.step-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .process-step-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  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: 1.5rem;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

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

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonial-author-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

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

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

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

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

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

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

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.benefit-item-index:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.benefit-icon-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-description-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.blog-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

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

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

.blog-image-index {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.card-img-index {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

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

.blog-card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-card-description-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
}

.blog-card-link-index {
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
}

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

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

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}

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

.cta-box-index .btn-primary-index:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

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

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  flex: 1 1 auto;
  min-width: 250px;
  line-height: var(--line-height-relaxed);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex-shrink: 0;
}

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

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

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

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

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

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
  }

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

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

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

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

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

  .benefits-list-index {
    flex-direction: column;
  }

  .benefit-item-index {
    flex-direction: column;
  }
}

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

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

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

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

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

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

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

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  font-family: var(--font-primary);
}

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

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

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: var(--letter-spacing-normal);
}

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

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-family: var(--font-primary);
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .footer-content {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-sections {
    gap: clamp(1.5rem, 3vw, 1.75rem);
  }

  .footer-nav h4,
  .footer-contact h4,
  .footer-legal h4,
  .footer-about h3 {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }
}
    

.category-page-disability-insurance {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

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

.hero-header-disability-insurance {
  text-align: center;
}

.hero-title-disability-insurance {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.hero-subtitle-disability-insurance {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: var(--line-height-snug);
  margin: 0;
  padding: 0;
}

.hero-text-disability-insurance {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  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;
}

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

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

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

.posts-title-disability-insurance {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

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

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

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

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

.card-title-disability-insurance {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.card-description-disability-insurance {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.card-meta-disability-insurance {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted);
}

.card-time-disability-insurance,
.card-level-disability-insurance,
.card-date-disability-insurance {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.card-time-disability-insurance i,
.card-level-disability-insurance i,
.card-date-disability-insurance i {
  color: var(--color-accent);
}

.card-link-disability-insurance {
  align-self: flex-start;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base) ease;
  padding: 0;
  margin: 0;
}

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

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

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

.concepts-title-disability-insurance {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.concepts-list-disability-insurance {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.concept-item-disability-insurance {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.concept-heading-disability-insurance {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.concept-text-disability-insurance {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

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

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

.details-title-disability-insurance {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.details-grid-disability-insurance {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.detail-block-disability-insurance {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.detail-block-title-disability-insurance {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

.detail-block-text-disability-insurance {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

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

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

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

  .details-section-disability-insurance {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .concepts-list-disability-insurance {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

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

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

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

  .details-section-disability-insurance {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .concepts-list-disability-insurance {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .detail-block-disability-insurance {
    flex: 1 1 300px;
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .concepts-list-disability-insurance {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-grid-disability-insurance {
    justify-content: space-between;
  }

  .detail-block-disability-insurance {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.main-gesundheitsfragen-ausfuellen {
    width: 100%;
    overflow: hidden;
  }

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

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

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

  .hero-text-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

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

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

  .breadcrumbs-gesundheitsfragen-ausfuellen span {
    color: var(--color-text-secondary);
  }

  .hero-tag-gesundheitsfragen-ausfuellen {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(var(--color-accent), 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    margin-bottom: 1rem;
    font-weight: 500;
  }

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

  .hero-lead-gesundheitsfragen-ausfuellen {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

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

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

  .meta-item-gesundheitsfragen-ausfuellen i {
    color: var(--color-accent);
  }

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

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

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

  .intro-text-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .why-section-gesundheitsfragen-ausfuellen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .why-text-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .why-image-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .why-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .why-img-gesundheitsfragen-ausfuellen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

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

  .tips-header-gesundheitsfragen-ausfuellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .tips-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .tips-card-gesundheitsfragen-ausfuellen {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .tips-card-gesundheitsfragen-ausfuellen:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .card-number-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
  }

  .card-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-primary);
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .common-section-gesundheitsfragen-ausfuellen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .common-text-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .common-image-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .common-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .common-list-gesundheitsfragen-ausfuellen {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-item-gesundheitsfragen-ausfuellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    padding-left: 1.5rem;
    position: relative;
  }

  .list-item-gesundheitsfragen-ausfuellen:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }

  .common-img-gesundheitsfragen-ausfuellen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .guarantee-section-gesundheitsfragen-ausfuellen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

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

  .guarantee-text-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .guarantee-image-gesundheitsfragen-ausfuellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .guarantee-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .guarantee-img-gesundheitsfragen-ausfuellen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .final-section-gesundheitsfragen-ausfuellen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

  .final-header-gesundheitsfragen-ausfuellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .final-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .final-box-gesundheitsfragen-ausfuellen {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    max-width: 340px;
    background: var(--color-bg-secondary);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .box-icon-gesundheitsfragen-ausfuellen {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-accent);
  }

  .box-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-primary);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .box-text-gesundheitsfragen-ausfuellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  .disclaimer-section-gesundheitsfragen-ausfuellen {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .disclaimer-header-gesundheitsfragen-ausfuellen {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .disclaimer-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--color-text-primary);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

  .related-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--color-text-primary);
    font-weight: 800;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .related-card-gesundheitsfragen-ausfuellen {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }

  .related-card-gesundheitsfragen-ausfuellen:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

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

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

  .related-body-gesundheitsfragen-ausfuellen {
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .related-card-title-gesundheitsfragen-ausfuellen {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-primary);
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-text-gesundheitsfragen-ausfuellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .hero-content-gesundheitsfragen-ausfuellen,
    .intro-content-gesundheitsfragen-ausfuellen,
    .why-content-gesundheitsfragen-ausfuellen,
    .common-content-gesundheitsfragen-ausfuellen,
    .guarantee-content-gesundheitsfragen-ausfuellen {
      flex-direction: column;
    }

    .hero-text-gesundheitsfragen-ausfuellen,
    .hero-image-gesundheitsfragen-ausfuellen,
    .intro-text-gesundheitsfragen-ausfuellen,
    .intro-image-gesundheitsfragen-ausfuellen,
    .why-text-gesundheitsfragen-ausfuellen,
    .why-image-gesundheitsfragen-ausfuellen,
    .common-text-gesundheitsfragen-ausfuellen,
    .common-image-gesundheitsfragen-ausfuellen,
    .guarantee-text-gesundheitsfragen-ausfuellen,
    .guarantee-image-gesundheitsfragen-ausfuellen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .tips-cards-gesundheitsfragen-ausfuellen {
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .tips-card-gesundheitsfragen-ausfuellen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .final-boxes-gesundheitsfragen-ausfuellen {
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .final-box-gesundheitsfragen-ausfuellen {
      flex: 1 1 100%;
      max-width: 100%;
    }

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

    .related-card-gesundheitsfragen-ausfuellen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  @media (min-width: 769px) and (max-width: 1023px) {
    .tips-card-gesundheitsfragen-ausfuellen {
      flex: 1 1 calc(50% - 1rem);
      max-width: 100%;
    }

    .final-box-gesundheitsfragen-ausfuellen {
      flex: 1 1 calc(50% - 1rem);
      max-width: 100%;
    }

    .related-card-gesundheitsfragen-ausfuellen {
      flex: 1 1 calc(50% - 1rem);
      max-width: 100%;
    }
  }

.main-bu-versicherung-auswahlkriterien {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-meta-bu-versicherung-auswahlkriterien {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-divider-bu-versicherung-auswahlkriterien {
  color: var(--color-border-light);
}

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

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

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

  .hero-img-bu-versicherung-auswahlkriterien {
    max-height: 350px;
  }
}

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

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

.intro-text-bu-versicherung-auswahlkriterien {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-highlight-bu-versicherung-auswahlkriterien {
  flex: 1 1 40%;
  max-width: 40%;
}

.intro-paragraph-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-bu-versicherung-auswahlkriterien:last-child {
  margin-bottom: 0;
}

.highlight-box-bu-versicherung-auswahlkriterien {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

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

.highlight-list-bu-versicherung-auswahlkriterien {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-bu-versicherung-auswahlkriterien {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: var(--line-height-snug);
}

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

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

  .intro-text-bu-versicherung-auswahlkriterien,
  .intro-highlight-bu-versicherung-auswahlkriterien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.content-paragraph-bu-versicherung-auswahlkriterien strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

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

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

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

  .content-wrapper-reverse-bu-versicherung-auswahlkriterien {
    flex-direction: column;
  }

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

  .content-img-bu-versicherung-auswahlkriterien {
    max-height: 300px;
  }
}

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

.features-header-bu-versicherung-auswahlkriterien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-subtitle-bu-versicherung-auswahlkriterien {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.feature-text-bu-versicherung-auswahlkriterien {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.features-cards-bu-versicherung-auswahlkriterien {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-card-bu-versicherung-auswahlkriterien {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon-bu-versicherung-auswahlkriterien {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-accent);
}

.card-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.card-text-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
  margin: 0;
}

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

  .feature-text-bu-versicherung-auswahlkriterien,
  .features-cards-bu-versicherung-auswahlkriterien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.criteria-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.criteria-intro-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.criteria-steps-bu-versicherung-auswahlkriterien {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.step-number-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.step-details-bu-versicherung-auswahlkriterien {
  flex: 1;
}

.step-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
}

.step-text-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.insights-text-bu-versicherung-auswahlkriterien {
  flex: 1 1 55%;
  max-width: 55%;
}

.insights-image-bu-versicherung-auswahlkriterien {
  flex: 1 1 45%;
  max-width: 45%;
}

.insights-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.insights-list-bu-versicherung-auswahlkriterien {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.insights-item-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
  padding-left: 1.75rem;
  position: relative;
}

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

.insights-img-bu-versicherung-auswahlkriterien {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

  .insights-img-bu-versicherung-auswahlkriterien {
    max-height: 300px;
  }
}

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

.quote-content-bu-versicherung-auswahlkriterien {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.featured-quote-bu-versicherung-auswahlkriterien {
  max-width: 700px;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 600;
}

.quote-author-bu-versicherung-auswahlkriterien {
  display: block;
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
  text-align: left;
}

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

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

.conclusion-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.conclusion-points-bu-versicherung-auswahlkriterien {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-point-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
}

.conclusion-point-bu-versicherung-auswahlkriterien:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.conclusion-point-bu-versicherung-auswahlkriterien strong {
  color: var(--color-text-primary);
}

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

.disclaimer-content-bu-versicherung-auswahlkriterien {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
}

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

.disclaimer-text-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
  margin: 0;
}

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

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

.related-title-bu-versicherung-auswahlkriterien {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-bu-versicherung-auswahlkriterien {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.related-card-bu-versicherung-auswahlkriterien:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.related-img-bu-versicherung-auswahlkriterien {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-bu-versicherung-auswahlkriterien:hover .related-img-bu-versicherung-auswahlkriterien {
  transform: scale(1.05);
}

.related-text-bu-versicherung-auswahlkriterien {
  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-versicherung-auswahlkriterien {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-bu-versicherung-auswahlkriterien {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
  margin: 0;
  flex: 1;
}

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

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

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

  .related-card-bu-versicherung-auswahlkriterien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-verweisung-klauseln-erklaert {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-verweisung-klauseln-erklaert a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.breadcrumbs-verweisung-klauseln-erklaert span {
  color: var(--color-text-secondary);
}

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

.hero-subtitle-verweisung-klauseln-erklaert {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.meta-item-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
}

.meta-item-verweisung-klauseln-erklaert i {
  color: var(--color-accent);
}

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

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

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

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

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

.intro-text-block-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-text-verweisung-klauseln-erklaert {
  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);
}

.intro-img-verweisung-klauseln-erklaert {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

  .intro-text-block-verweisung-klauseln-erklaert,
  .intro-image-verweisung-klauseln-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.abstract-section-verweisung-klauseln-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.abstract-text-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.abstract-image-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.abstract-text-verweisung-klauseln-erklaert {
  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);
}

.highlight-box-verweisung-klauseln-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.abstract-img-verweisung-klauseln-erklaert {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .abstract-content-verweisung-klauseln-erklaert {
    flex-direction: column;
  }

  .abstract-text-verweisung-klauseln-erklaert,
  .abstract-image-verweisung-klauseln-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.concrete-image-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.concrete-text-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.concrete-text-verweisung-klauseln-erklaert {
  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);
}

.concrete-img-verweisung-klauseln-erklaert {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

  .concrete-image-verweisung-klauseln-erklaert,
  .concrete-text-verweisung-klauseln-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.comparison-section-verweisung-klauseln-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.comparison-title-verweisung-klauseln-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.comparison-card-verweisung-klauseln-erklaert {
  flex: 1 1 calc(50% - 1rem);
  max-width: 500px;
  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: 1.25rem;
  transition: all 0.3s ease;
}

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

.comparison-card-abstract-verweisung-klauseln-erklaert {
  border-top: 4px solid var(--color-accent);
}

.comparison-card-concrete-verweisung-klauseln-erklaert {
  border-top: 4px solid #ef4444;
}

.comparison-card-title-verweisung-klauseln-erklaert {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.comparison-list-verweisung-klauseln-erklaert {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-list-item-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.comparison-list-item-verweisung-klauseln-erklaert i {
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.1em;
}

.comparison-card-abstract-verweisung-klauseln-erklaert .comparison-list-item-verweisung-klauseln-erklaert i {
  color: #10b981;
}

.comparison-card-concrete-verweisung-klauseln-erklaert .comparison-list-item-verweisung-klauseln-erklaert i {
  color: #ef4444;
}

@media (max-width: 768px) {
  .comparison-card-verweisung-klauseln-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-verweisung-klauseln-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.practical-text-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-verweisung-klauseln-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practical-text-verweisung-klauseln-erklaert {
  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);
}

.practical-steps-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.step-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-verweisung-klauseln-erklaert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.step-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  padding-top: 0.5rem;
}

.practical-img-verweisung-klauseln-erklaert {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .practical-content-verweisung-klauseln-erklaert {
    flex-direction: column;
  }

  .practical-text-verweisung-klauseln-erklaert,
  .practical-image-verweisung-klauseln-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-title-verweisung-klauseln-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-highlight-verweisung-klauseln-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  text-align: left;
}

.conclusion-highlight-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.disclaimer-section-verweisung-klauseln-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-verweisung-klauseln-erklaert {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-box-verweisung-klauseln-erklaert {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-verweisung-klauseln-erklaert {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-verweisung-klauseln-erklaert i {
  color: #f59e0b;
}

.disclaimer-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.related-title-verweisung-klauseln-erklaert {
  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-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-verweisung-klauseln-erklaert {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-verweisung-klauseln-erklaert:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-verweisung-klauseln-erklaert {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-card-verweisung-klauseln-erklaert:hover .related-img-verweisung-klauseln-erklaert {
  transform: scale(1.05);
}

.related-card-content-verweisung-klauseln-erklaert {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-verweisung-klauseln-erklaert {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-verweisung-klauseln-erklaert {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.related-card-link-verweisung-klauseln-erklaert {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-verweisung-klauseln-erklaert:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

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

  .conclusion-content-verweisung-klauseln-erklaert {
    text-align: left;
  }

  .conclusion-highlight-verweisung-klauseln-erklaert {
    text-align: center;
  }
}

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

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

html {
  scroll-behavior: smooth;
}

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

.main-nachversicherungsgarantie-optionen {
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.hero-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

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

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

.breadcrumbs-nachversicherungsgarantie-optionen span {
  color: var(--color-text-muted);
}

.hero-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nachversicherungsgarantie-optionen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.meta-item-nachversicherungsgarantie-optionen i {
  color: var(--color-primary);
  font-size: 1rem;
}

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

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

  .hero-meta-nachversicherungsgarantie-optionen {
    gap: 1rem;
  }
}

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

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

.intro-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.intro-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-description-nachversicherungsgarantie-optionen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.benefits-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-wrapper-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.benefits-intro-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-list-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-nachversicherungsgarantie-optionen {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.benefit-item-nachversicherungsgarantie-optionen:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefit-title-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-text-nachversicherungsgarantie-optionen {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .benefits-wrapper-nachversicherungsgarantie-optionen {
    flex-direction: column;
  }

  .benefits-text-nachversicherungsgarantie-optionen,
  .benefits-image-nachversicherungsgarantie-optionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.understanding-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.understanding-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.understanding-intro-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.understanding-description-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.understanding-text-nachversicherungsgarantie-optionen > p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .understanding-content-nachversicherungsgarantie-optionen {
    flex-direction: column;
  }

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

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

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

.strategy-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-wrapper-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.strategy-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.strategy-intro-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-steps-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-nachversicherungsgarantie-optionen {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.step-content-nachversicherungsgarantie-optionen {
  flex: 1;
}

.step-title-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-nachversicherungsgarantie-optionen {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .strategy-wrapper-nachversicherungsgarantie-optionen {
    flex-direction: column;
  }

  .strategy-text-nachversicherungsgarantie-optionen,
  .strategy-image-nachversicherungsgarantie-optionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.questions-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.questions-wrapper-nachversicherungsgarantie-optionen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.question-card-nachversicherungsgarantie-optionen {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.question-title-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.question-text-nachversicherungsgarantie-optionen {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.conclusion-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-wrapper-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-nachversicherungsgarantie-optionen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.conclusion-intro-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-description-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nachversicherungsgarantie-optionen > p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-highlight-nachversicherungsgarantie-optionen {
  padding: 1.5rem;
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .conclusion-wrapper-nachversicherungsgarantie-optionen {
    flex-direction: column;
  }

  .conclusion-text-nachversicherungsgarantie-optionen,
  .conclusion-image-nachversicherungsgarantie-optionen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.disclaimer-box-nachversicherungsgarantie-optionen {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-title-nachversicherungsgarantie-optionen i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-nachversicherungsgarantie-optionen {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-nachversicherungsgarantie-optionen {
  font-family: var(--font-heading);
  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: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-nachversicherungsgarantie-optionen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

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

.related-image-nachversicherungsgarantie-optionen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

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

.related-text-nachversicherungsgarantie-optionen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
}

.related-article-title-nachversicherungsgarantie-optionen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-article-desc-nachversicherungsgarantie-optionen {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

.related-link-nachversicherungsgarantie-optionen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  width: fit-content;
}

.related-link-nachversicherungsgarantie-optionen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
  transform: translateX(2px);
}

@media (max-width: 768px) {
  .related-cards-nachversicherungsgarantie-optionen {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .questions-wrapper-nachversicherungsgarantie-optionen {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6, 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;
}

.insurance-protection-about {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-text-block-about {
  max-width: 700px;
  text-align: center;
}

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

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

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

.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(2.5rem, 5vw, 3.5rem);
}

.expertise-header-about {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1.25rem);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.section-description-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(4rem, 8vw, 5rem);
  text-align: center;
}

.step-content-about {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-about {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.step-text-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.commitment-header-about {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

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

.value-item-about {
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2rem);
}

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

.value-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.featured-quote-about {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: clamp(1rem, 3vw, 2rem) auto;
}

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

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

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.disclaimer-icon-about {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-about {
    text-align: left;
  }

  .value-item-about {
    text-align: left;
  }

  .disclaimer-header-about {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .expertise-cards-about {
    justify-content: space-between;
  }

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

@media (min-width: 1024px) {
  .hero-content-about {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text-block-about {
    flex: 1 1 50%;
    text-align: left;
  }

  .hero-visual-about {
    flex: 1 1 45%;
    max-width: none;
  }
}

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

.faq-hero {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-xl) 0;
  }

  .faq-hero__container {
    padding: 0 var(--space-lg);
  }

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

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

  .faq-hero__image {
    margin-top: var(--space-xl);
    max-height: 350px;
  }
}

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

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

  .faq-hero__image {
    margin-top: var(--space-2xl);
    max-height: 400px;
  }
}

.faq-content {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-card);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

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

.faq-item__trigger {
  width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-base);
  font-family: var(--font-primary);
}

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

.faq-item__question {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--line-height-snug);
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  display: block;
  animation: slideDown var(--transition-base) ease-out;
}

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

.faq-item__content p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-xl) 0;
  }

  .faq-content__container {
    padding: 0 var(--space-lg);
  }

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

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

  .faq-item__content {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

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

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

.faq-cta {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

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

.faq-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-xl) 0;
  }

  .faq-cta__container {
    padding: 0 var(--space-lg);
  }

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

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

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

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

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

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

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

.services-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-hero__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-hero__subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: 400;
}

.services-hero__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .services-hero__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .services-hero__image {
    height: 400px;
    order: 2;
  }

  .services-hero__content {
    order: 1;
  }
}

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

  .services-hero__image {
    height: 450px;
  }
}

.services-cards-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.services-card {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.services-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.services-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.services-card__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-card__description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  line-height: var(--line-height-normal);
  margin: 0;
  flex-grow: 1;
}

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

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cards-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

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

.services-cta-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
}

.services-cta__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-cta__text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
}

.services-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  width: fit-content;
  border: 2px solid var(--color-primary);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.services-cta__button:active {
  transform: translateX(2px);
}

.services-cta-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .services-cta-image {
    height: 350px;
    order: 2;
  }

  .services-cta-content {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .services-cta-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-cta-image {
    height: 400px;
  }

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs main {
  width: 100%;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.legal-docs .update-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: var(--line-height-snug);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
  border-radius: var(--radius-md);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs h1 {
    margin-bottom: var(--space-md);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
  }

  .legal-docs .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0;
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon svg {
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  color: var(--color-success);
  stroke-width: 1.5;
}

.thank-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.thank-body {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.thank-body p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.thank-closing {
  font-weight: 500;
  color: var(--color-primary);
  margin-top: var(--space-lg);
}

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

.thank-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  margin-bottom: var(--space-md);
}

.thank-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-success);
}

.btn-return {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  letter-spacing: var(--letter-spacing-normal);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.btn-return:active {
  transform: translateY(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .thank-page {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  
  .thank-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .thank-body {
    text-align: center;
  }
  
  .thank-list li {
    text-align: center;
    padding: var(--space-sm) 0;
  }
  
  .thank-list li::before {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    min-height: 100vh;
  }
  
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.error-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-2xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  display: block;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-decoration {
  position: absolute;
  width: clamp(80px, 20vw, 200px);
  height: clamp(80px, 20vw, 200px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-normal);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 500;
  line-height: var(--line-height-relaxed);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-height-relaxed);
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-md);
  text-align: left;
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-normal);
}

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

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-suggestions {
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
  }

  .btn {
    padding: var(--space-lg) var(--space-2xl);
    margin-top: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-code-wrapper {
    margin-bottom: var(--space-3xl);
  }

  .error-message h1 {
    margin-bottom: var(--space-lg);
  }

  .error-suggestions {
    max-width: 600px;
    margin: var(--space-3xl) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

.contact-help {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.contact-help-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-help-hero-content {
  text-align: center;
}

.contact-help-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-help-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-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-help-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-help-main-content {
  width: 100%;
}

.contact-help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

.contact-help-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-form-header {
  margin-bottom: var(--space-2xl);
}

.contact-help-form-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-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-help-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-help-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

.contact-help-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-normal);
}

.contact-help-input,
.contact-help-textarea {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  transition: var(--transition-base);
  line-height: var(--line-height-normal);
}

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

.contact-help-input:focus,
.contact-help-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  background-color: var(--color-bg-primary);
}

.contact-help-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-help-form-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-help-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-help-checkbox-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: var(--line-height-snug);
}

.contact-help-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.contact-help-privacy-link:hover,
.contact-help-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-help-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  margin-top: var(--space-md);
}

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

.contact-help-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-help-submit:active {
  transform: translateY(0);
}

.contact-help-info-header {
  margin-bottom: var(--space-2xl);
}

.contact-help-info-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-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-help-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-help-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-help-info-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-help-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-help-info-content {
  flex: 1;
  min-width: 0;
}

.contact-help-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-help-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  line-height: var(--line-height-normal);
}

.contact-help-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.contact-help-info-link:hover,
.contact-help-info-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-help-info-item-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-help-info-highlight {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg) var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-help-info-highlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-help-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-help-info-list-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
}

.contact-help-info-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-success);
  font-weight: 700;
}

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

  .contact-help-main {
    padding: var(--space-3xl) 0;
  }

  .contact-help-grid {
    gap: var(--space-3xl);
  }

  .contact-help-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: 4rem 0;
  }

  .contact-help-main {
    padding: 4rem 0;
  }

  .contact-help-grid {
    gap: 4rem;
  }

  .contact-help-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 40%;
  }
}

@media (min-width: 1200px) {
  .contact-help-hero {
    padding: 5rem 0;
  }

  .contact-help-main {
    padding: 5rem 0;
  }

  .contact-help-grid {
    gap: 5rem;
  }
}
.header-schutz-professional-mobile-close,.header-schutz-professional-mobile-toggle{
  width: 34px;
}

.header-schutz-professional-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;
}
