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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-bg-hover: #f8fafc;
  
  --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: #2563eb;
  --color-accent-light: #eff6ff;
  
  --color-success: #16a34a;
  --color-warning: #ea580c;
  --color-error: #dc2626;
  
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  --shadow-xs: 0 1px 1px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px 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;
}

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

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

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

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

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

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

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

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.01em;
}

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

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

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow 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);
}

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.badge-success {
  background: #dcfce7;
  color: #166534;
}

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-top {
  border-top: 1px solid var(--color-border);
}

.border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

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

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

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

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

@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;
  }
  
  .section-lg {
    padding: var(--space-3xl) 0;
  }
}
.header-rente-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  width: 100%;
  z-index: 1000;
}

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

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

.header-rente-portal-brand:hover {
  opacity: 0.85;
}

.header-rente-portal-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-rente-portal-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex: 1;
  justify-content: center;
}

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

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

.header-rente-portal-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.header-rente-portal-nav-link:hover::after {
  width: 100%;
}

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

.header-rente-portal-cta-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-rente-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
}

.header-rente-portal-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: var(--transition-fast);
}

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

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

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

.header-rente-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

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

.header-rente-portal-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 1001;
}

.header-rente-portal-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.header-rente-portal-mobile-close:hover {
  color: var(--color-accent);
}

.header-rente-portal-mobile-close svg {
  width: 24px;
  height: 24px;
}

.header-rente-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem);
  margin-top: 20px;
}

.header-rente-portal-mobile-link {
  padding: clamp(0.875rem, 2vw, 1.125rem) 0;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-fast);
  display: block;
}

.header-rente-portal-mobile-link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.header-rente-portal-mobile-cta {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
  margin: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  display: block;
}

.header-rente-portal-mobile-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

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

  .header-rente-portal-mobile-menu {
    display: none !important;
  }

  .header-rente-portal-desktop-nav {
    display: flex;
  }

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

  .header-rente-portal-container {
    padding: clamp(0.875rem, 2vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  }
}

@media (max-width: 767px) {
  .header-rente-portal-container {
    gap: 0.75rem;
  }

  .header-rente-portal-logo-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }
}

    .pension-hub {
  width: 100%;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

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

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

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

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

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

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.2;
}

.hero-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.btn-primary-index,
.btn-secondary-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  border: none;
}

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

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

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

.btn-secondary-index:hover {
  background: rgba(var(--color-primary-rgb), 0.05);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.about-text {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-image {
  flex: 1 1 45%;
  min-width: 280px;
}

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

.about-paragraph-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.7;
}

.about-highlight {
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-text-index {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.process-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

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

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

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

.step-number-index {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  min-width: clamp(60px, 10vw, 120px);
  text-align: center;
}

.step-content {
  flex: 1;
}

.step-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.step-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.articles-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

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

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

.article-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.article-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.article-image-index {
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

.article-body-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

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

.article-link-index {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base);
  align-self: flex-start;
}

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

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

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

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

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

.comparison-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

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

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.comparison-feature {
  flex: 1 1 150px;
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
}

.feature-name-index {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.comparison-item {
  flex: 1 1 200px;
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-label-index {
  color: var(--color-primary);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
  margin: 0;
}

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

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

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

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

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

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

.testimonials-grid {
  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, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-text-index {
  flex-grow: 1;
}

.quote-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}

.author-name-index {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 700;
  margin: 0;
}

.author-detail-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin: 0.25rem 0 0 0;
}

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

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

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

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

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

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

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

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

.faq-answer-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  margin: 0;
  line-height: 1.7;
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: clamp(2.5rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

.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: 768px) {
  .hero-ctas {
    flex-direction: column;
  }

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

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

  .comparison-feature,
  .comparison-item {
    flex: 1 1 100%;
  }

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

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

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

@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }

  .stat-item-index {
    flex: 1 1 45%;
  }

  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  margin-bottom: 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-border-light);
}

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-copyright p {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 100%;
  }

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

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

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

.category-page-ruerup-basisrente {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

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

.hero-subtitle-category {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-accent);
  margin: clamp(0.75rem, 2vw, 1.5rem) 0 0 0;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.posts-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.card-ruerup-basisrente {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  flex: 1 1 300px;
  max-width: 400px;
  transition: all var(--transition-base);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.card-ruerup-basisrente:hover {
  transform: translateY(-6px);
  background: var(--color-bg-card);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

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

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

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

.card-meta-category {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-muted);
}

.card-reading-time-category,
.card-level-category,
.card-date-category {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted);
}

.card-reading-time-category i,
.card-level-category i,
.card-date-category i {
  color: var(--color-accent);
  font-size: 0.9em;
}

.card-link-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  width: fit-content;
}

.card-link-category:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

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

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

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

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

.insight-quote-category {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
}

.insight-text-category {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-author-category {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-accent);
  margin: 0;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-context-category {
  max-width: 700px;
}

.insight-heading-category {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.checklist-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-subtitle-category {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-items-category {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 850px;
  margin: 0 auto;
}

.checklist-item-category {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.checklist-icon-category {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.checklist-text-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.checklist-item-description-category {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 767px) {
  .posts-grid-category {
    flex-direction: column;
  }

  .card-ruerup-basisrente {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .checklist-item-category {
    flex-direction: column;
    text-align: center;
  }

  .checklist-icon-category {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-category {
    justify-content: space-around;
  }

  .card-ruerup-basisrente {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .card-ruerup-basisrente {
    flex: 1 1 calc(25% - 2rem);
  }
}

.main-steuervorteile-ruerup-rente {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.breadcrumbs-steuervorteile-ruerup-rente a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.breadcrumbs-steuervorteile-ruerup-rente a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-steuervorteile-ruerup-rente span {
  color: var(--color-text-secondary);
}

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

.hero-text-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

.meta-item-steuervorteile-ruerup-rente {
  color: var(--color-text-muted);
}

.meta-separator-steuervorteile-ruerup-rente {
  color: var(--color-border-light);
}

.hero-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-steuervorteile-ruerup-rente img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 500px;
}

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

  .hero-text-steuervorteile-ruerup-rente,
  .hero-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-content-steuervorteile-ruerup-rente {
    flex-direction: column;
  }

  .intro-text-steuervorteile-ruerup-rente,
  .intro-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.benefit-content-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefit-text-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefit-title-steuervorteile-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-paragraph-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.benefit-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefit-image-steuervorteile-ruerup-rente img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .benefit-content-steuervorteile-ruerup-rente {
    flex-direction: column;
  }

  .benefit-text-steuervorteile-ruerup-rente,
  .benefit-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.calculation-text-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-title-steuervorteile-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.calculation-paragraph-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.calculation-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-image-steuervorteile-ruerup-rente img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .calculation-content-steuervorteile-ruerup-rente {
    flex-direction: column;
  }

  .calculation-text-steuervorteile-ruerup-rente,
  .calculation-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.highlight-content-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.highlight-box-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-title-steuervorteile-ruerup-rente {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-list-steuervorteile-ruerup-rente {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-relaxed);
  padding-left: 1.75rem;
  position: relative;
}

.highlight-item-steuervorteile-ruerup-rente::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.highlight-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-image-steuervorteile-ruerup-rente img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .highlight-content-steuervorteile-ruerup-rente {
    flex-direction: column;
  }

  .highlight-box-steuervorteile-ruerup-rente,
  .highlight-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.comparison-content-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.comparison-intro-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.comparison-cards-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.comparison-card-steuervorteile-ruerup-rente {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-title-steuervorteile-ruerup-rente {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.considerations-content-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.considerations-text-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.considerations-title-steuervorteile-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.considerations-paragraph-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.considerations-image-steuervorteile-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.considerations-image-steuervorteile-ruerup-rente img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .considerations-content-steuervorteile-ruerup-rente {
    flex-direction: column;
  }

  .considerations-text-steuervorteile-ruerup-rente,
  .considerations-image-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.conclusion-cta-steuervorteile-ruerup-rente {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(var(--color-primary-rgb), 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

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

.related-content-steuervorteile-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

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

.related-card-steuervorteile-ruerup-rente {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.related-image-steuervorteile-ruerup-rente {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}

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

.related-card-title-steuervorteile-ruerup-rente {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-link-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-block;
  margin-top: 0.5rem;
}

.related-link-steuervorteile-ruerup-rente:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.disclaimer-content-steuervorteile-ruerup-rente {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(var(--color-warning-rgb), 0.05);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-steuervorteile-ruerup-rente {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-steuervorteile-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-section-steuervorteile-ruerup-rente,
  .intro-section-steuervorteile-ruerup-rente,
  .benefit-section-steuervorteile-ruerup-rente,
  .calculation-section-steuervorteile-ruerup-rente,
  .considerations-section-steuervorteile-ruerup-rente,
  .conclusion-section-steuervorteile-ruerup-rente,
  .related-section-steuervorteile-ruerup-rente,
  .disclaimer-section-steuervorteile-ruerup-rente {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-steuervorteile-ruerup-rente {
    font-size: 0.75rem;
  }

  .hero-meta-steuervorteile-ruerup-rente {
    flex-direction: column;
    gap: 0.5rem;
  }

  .comparison-card-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
  }

  .related-card-steuervorteile-ruerup-rente {
    flex: 1 1 100%;
  }
}

.main-hoechstbeitraege-ruerup-rente {
  width: 100%;
}

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

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

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

.hero-text-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-hoechstbeitraege-ruerup-rente a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-hoechstbeitraege-ruerup-rente a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-hoechstbeitraege-ruerup-rente span {
  color: var(--color-text-secondary);
}

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

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

.hero-meta-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.meta-item-hoechstbeitraege-ruerup-rente i {
  color: var(--color-primary);
}

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

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

  .hero-text-hoechstbeitraege-ruerup-rente,
  .hero-image-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-hoechstbeitraege-ruerup-rente {
    gap: 1.5rem;
  }
}

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

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

.intro-text-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-paragraph-hoechstbeitraege-ruerup-rente:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .intro-content-hoechstbeitraege-ruerup-rente {
    flex-direction: column;
  }

  .intro-text-hoechstbeitraege-ruerup-rente,
  .intro-image-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.limits-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.limits-header-hoechstbeitraege-ruerup-rente {
  text-align: center;
}

.limits-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.limits-subtitle-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.limits-grid-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.limit-card-hoechstbeitraege-ruerup-rente {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-hoechstbeitraege-ruerup-rente {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
}

.card-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-amount-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-hoechstbeitraege-ruerup-rente {
  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;
}

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

.budget-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.budget-text-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.budget-image-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.budget-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.budget-paragraph-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.budget-list-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-icon-hoechstbeitraege-ruerup-rente {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-text-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-label-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-desc-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.budget-image-hoechstbeitraege-ruerup-rente img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .budget-content-hoechstbeitraege-ruerup-rente {
    flex-direction: column;
  }

  .budget-text-hoechstbeitraege-ruerup-rente,
  .budget-image-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.timing-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.timing-image-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-text-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timing-paragraph-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timing-box-hoechstbeitraege-ruerup-rente {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.timing-highlight-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timing-image-hoechstbeitraege-ruerup-rente img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .timing-content-hoechstbeitraege-ruerup-rente {
    flex-direction: column-reverse;
  }

  .timing-image-hoechstbeitraege-ruerup-rente,
  .timing-text-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.comparison-header-hoechstbeitraege-ruerup-rente {
  text-align: center;
}

.comparison-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-subtitle-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-table-hoechstbeitraege-ruerup-rente {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.comparison-row-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--color-border-light);
  padding: clamp(1rem, 2vw, 1.5rem);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.comparison-row-hoechstbeitraege-ruerup-rente:last-child {
  border-bottom: none;
}

.comparison-label-hoechstbeitraege-ruerup-rente {
  flex: 1 1 30%;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-item-hoechstbeitraege-ruerup-rente {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.comparison-type-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-value-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-note-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.875rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 1rem;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .comparison-row-hoechstbeitraege-ruerup-rente {
    flex-direction: column;
    gap: 0.75rem;
  }

  .comparison-label-hoechstbeitraege-ruerup-rente,
  .comparison-item-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
  }
}

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

.strategy-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-text-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-hoechstbeitraege-ruerup-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.strategy-boxes-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.strategy-box-hoechstbeitraege-ruerup-rente {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.box-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.box-text-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-image-hoechstbeitraege-ruerup-rente img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  max-height: 400px;
}

@media (max-width: 768px) {
  .strategy-content-hoechstbeitraege-ruerup-rente {
    flex-direction: column;
  }

  .strategy-text-hoechstbeitraege-ruerup-rente,
  .strategy-image-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.faq-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-list-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-hoechstbeitraege-ruerup-rente {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.faq-question-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  cursor: pointer;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-question-hoechstbeitraege-ruerup-rente:hover {
  color: var(--color-primary);
}

.faq-question-hoechstbeitraege-ruerup-rente::after {
  content: "";
  margin-left: auto;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.faq-item-hoechstbeitraege-ruerup-rente[open] .faq-question-hoechstbeitraege-ruerup-rente::after {
  transform: rotate(-180deg);
}

.faq-answer-hoechstbeitraege-ruerup-rente {
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0;
  border-top: 1px solid var(--color-border-light);
}

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

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

.conclusion-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.conclusion-box-hoechstbeitraege-ruerup-rente {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.conclusion-text-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-hoechstbeitraege-ruerup-rente:last-child {
  margin-bottom: 0;
}

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

.disclaimer-content-hoechstbeitraege-ruerup-rente {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-hoechstbeitraege-ruerup-rente {
  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-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.related-card-hoechstbeitraege-ruerup-rente {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.related-image-hoechstbeitraege-ruerup-rente {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.related-image-hoechstbeitraege-ruerup-rente img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
}

.related-card-hoechstbeitraege-ruerup-rente:hover .related-image-hoechstbeitraege-ruerup-rente img {
  transform: scale(1.05);
}

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

.related-card-title-hoechstbeitraege-ruerup-rente {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-hoechstbeitraege-ruerup-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .related-cards-hoechstbeitraege-ruerup-rente {
    flex-direction: column;
  }

  .related-card-hoechstbeitraege-ruerup-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.main-ruerup-vs-gesetzliche-rente {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-ruerup-vs-gesetzliche-rente {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-ruerup-vs-gesetzliche-rente a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-ruerup-vs-gesetzliche-rente a:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.breadcrumbs-ruerup-vs-gesetzliche-rente span {
  color: var(--color-text-secondary);
}

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

.hero-text-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
}

.hero-meta-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.meta-item-ruerup-vs-gesetzliche-rente {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-item-ruerup-vs-gesetzliche-rente i {
  color: var(--color-accent);
}

.hero-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
  }

  .hero-text-ruerup-vs-gesetzliche-rente,
  .hero-image-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-ruerup-vs-gesetzliche-rente {
    gap: 1rem;
  }
}

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

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

.intro-text-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.intro-paragraph-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.intro-paragraph-ruerup-vs-gesetzliche-rente:last-child {
  margin-bottom: 0;
}

.intro-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
  }

  .intro-text-ruerup-vs-gesetzliche-rente,
  .intro-image-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.comparison-section-ruerup-vs-gesetzliche-rente {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.comparison-text-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-image-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.comparison-paragraph-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.comparison-paragraph-ruerup-vs-gesetzliche-rente:last-child {
  margin-bottom: 0;
}

.comparison-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .comparison-content-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
  }

  .comparison-text-ruerup-vs-gesetzliche-rente,
  .comparison-image-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advantages-section-ruerup-vs-gesetzliche-rente {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advantages-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.advantages-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
}

.advantages-wrapper-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advantages-text-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.advantages-image-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
}

.advantages-subtitle-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.advantages-paragraph-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.advantages-paragraph-ruerup-vs-gesetzliche-rente:last-child {
  margin-bottom: 0;
}

.advantages-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .advantages-wrapper-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
  }

  .advantages-text-ruerup-vs-gesetzliche-rente,
  .advantages-image-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.flexibility-section-ruerup-vs-gesetzliche-rente {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.flexibility-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.flexibility-text-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
  order: 2;
}

.flexibility-image-ruerup-vs-gesetzliche-rente {
  flex: 1 1 50%;
  max-width: 50%;
  order: 1;
}

.flexibility-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.flexibility-paragraph-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.flexibility-paragraph-ruerup-vs-gesetzliche-rente:last-child {
  margin-bottom: 0;
}

.flexibility-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .flexibility-content-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
  }

  .flexibility-text-ruerup-vs-gesetzliche-rente,
  .flexibility-image-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.decision-section-ruerup-vs-gesetzliche-rente {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.decision-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.decision-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 2rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.decision-cards-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.decision-card-ruerup-vs-gesetzliche-rente {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.decision-card-ruerup-vs-gesetzliche-rente:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.decision-card-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.decision-card-title-ruerup-vs-gesetzliche-rente i {
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.decision-card-text-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .decision-card-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
  }
}

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

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

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

.conclusion-paragraph-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-paragraph-ruerup-vs-gesetzliche-rente:first-of-type {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

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

.disclaimer-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-box-ruerup-vs-gesetzliche-rente {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-accent);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-text-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.related-content-ruerup-vs-gesetzliche-rente {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

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

.related-card-ruerup-vs-gesetzliche-rente {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-ruerup-vs-gesetzliche-rente:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-img-ruerup-vs-gesetzliche-rente {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-ruerup-vs-gesetzliche-rente {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-ruerup-vs-gesetzliche-rente {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

.related-card-text-ruerup-vs-gesetzliche-rente {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.related-link-ruerup-vs-gesetzliche-rente {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-ruerup-vs-gesetzliche-rente:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-ruerup-vs-gesetzliche-rente {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-card-ruerup-vs-gesetzliche-rente {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-ruerup-vs-gesetzliche-rente {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-ruerup-vs-gesetzliche-rente {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

.main-lebenslange-rente-auszahlung {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.breadcrumbs-lebenslange-rente-auszahlung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-lebenslange-rente-auszahlung a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-lebenslange-rente-auszahlung a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-lebenslange-rente-auszahlung span {
  color: var(--color-text-muted);
}

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

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

.hero-text-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-lebenslange-rente-auszahlung i {
  color: var(--color-primary);
  font-size: 1.1em;
}

.hero-image-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.hero-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

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

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

.intro-text-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 280px;
}

.intro-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

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

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

.structure-header-lebenslange-rente-auszahlung {
  text-align: center;
}

.structure-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-subtitle-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.steps-wrapper-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.step-card-lebenslange-rente-auszahlung {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.step-card-lebenslange-rente-auszahlung:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(245, 158, 11, 0.05);
}

.step-number-lebenslange-rente-auszahlung {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

.factors-content-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.factors-text-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.factors-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.factors-intro-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.factors-list-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.factor-item-lebenslange-rente-auszahlung {
  padding-bottom: clamp(1.25rem, 2vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

.factor-item-lebenslange-rente-auszahlung:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.factor-name-lebenslange-rente-auszahlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.5rem, 1vw, 0.875rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.factor-desc-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.factors-image-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.factors-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

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

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

.dynamics-image-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.dynamics-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

.dynamics-text-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.dynamics-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dynamics-intro-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.dynamics-text-block-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.highlight-box-lebenslange-rente-auszahlung {
  padding: clamp(1.25rem, 2vw, 2rem);
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.highlight-text-lebenslange-rente-auszahlung strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

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

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

.hinterbliebene-text-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hinterbliebene-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hinterbliebene-intro-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.hinterbliebene-text-block-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.hinterbliebene-options-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.option-card-lebenslange-rente-auszahlung {
  padding: clamp(1.25rem, 2vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  border: 1px solid var(--color-border);
}

.option-title-lebenslange-rente-auszahlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.option-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.hinterbliebene-image-lebenslange-rente-auszahlung {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.hinterbliebene-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

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

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

.steuern-header-lebenslange-rente-auszahlung {
  text-align: center;
}

.steuern-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steuern-subtitle-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.tax-grid-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.tax-block-lebenslange-rente-auszahlung {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
}

.tax-label-lebenslange-rente-auszahlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tax-value-lebenslange-rente-auszahlung {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
}

.tax-desc-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.steuern-note-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.8;
  max-width: 900px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
}

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

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

.conclusion-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cards-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.conclusion-card-lebenslange-rente-auszahlung {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  transition: all 0.3s ease;
  text-align: center;
}

.conclusion-card-lebenslange-rente-auszahlung:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.card-icon-lebenslange-rente-auszahlung {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.card-title-lebenslange-rente-auszahlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-box-lebenslange-rente-auszahlung {
  background: linear-gradient(135deg, var(--color-primary), rgba(245, 158, 11, 0.7));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  color: #ffffff;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #ffffff;
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem) 0;
  line-height: 1.8;
}

.btn-primary-lebenslange-rente-auszahlung {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: all 0.3s ease;
}

.btn-primary-lebenslange-rente-auszahlung:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.disclaimer-section-lebenslange-rente-auszahlung {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-lebenslange-rente-auszahlung {
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

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

.related-title-lebenslange-rente-auszahlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-lebenslange-rente-auszahlung {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-lebenslange-rente-auszahlung:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.related-image-lebenslange-rente-auszahlung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-lebenslange-rente-auszahlung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-lebenslange-rente-auszahlung {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.related-article-title-lebenslange-rente-auszahlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-description-lebenslange-rente-auszahlung {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.related-link-lebenslange-rente-auszahlung {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-link-lebenslange-rente-auszahlung:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-lebenslange-rente-auszahlung,
  .intro-content-lebenslange-rente-auszahlung,
  .factors-content-lebenslange-rente-auszahlung,
  .dynamics-content-lebenslange-rente-auszahlung,
  .hinterbliebene-content-lebenslange-rente-auszahlung {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-lebenslange-rente-auszahlung,
  .hero-image-lebenslange-rente-auszahlung,
  .intro-text-lebenslange-rente-auszahlung,
  .intro-image-lebenslange-rente-auszahlung,
  .factors-text-lebenslange-rente-auszahlung,
  .factors-image-lebenslange-rente-auszahlung,
  .dynamics-image-lebenslange-rente-auszahlung,
  .dynamics-text-lebenslange-rente-auszahlung,
  .hinterbliebene-text-lebenslange-rente-auszahlung,
  .hinterbliebene-image-lebenslange-rente-auszahlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-lebenslange-rente-auszahlung,
  .intro-image-lebenslange-rente-auszahlung,
  .factors-image-lebenslange-rente-auszahlung,
  .dynamics-image-lebenslange-rente-auszahlung,
  .hinterbliebene-image-lebenslange-rente-auszahlung {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .hero-section-lebenslange-rente-auszahlung,
  .intro-section-lebenslange-rente-auszahlung,
  .structure-section-lebenslange-rente-auszahlung,
  .factors-section-lebenslange-rente-auszahlung,
  .dynamics-section-lebenslange-rente-auszahlung,
  .hinterbliebene-section-lebenslange-rente-auszahlung,
  .steuern-section-lebenslange-rente-auszahlung,
  .conclusion-section-lebenslange-rente-auszahlung,
  .disclaimer-section-lebenslange-rente-auszahlung,
  .related-section-lebenslange-rente-auszahlung {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .steps-wrapper-lebenslange-rente-auszahlung {
    flex-direction: column;
  }

  .step-card-lebenslange-rente-auszahlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tax-grid-lebenslange-rente-auszahlung {
    flex-direction: column;
  }

  .tax-block-lebenslange-rente-auszahlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-cards-lebenslange-rente-auszahlung {
    flex-direction: column;
  }

  .conclusion-card-lebenslange-rente-auszahlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-lebenslange-rente-auszahlung {
    flex-direction: column;
  }

  .related-card-lebenslange-rente-auszahlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-lebenslange-rente-auszahlung {
    font-size: clamp(0.7rem, 0.9vw + 0.3rem, 0.85rem);
  }
}

@media (max-width: 480px) {
  .meta-item-lebenslange-rente-auszahlung {
    gap: 0.35rem;
    font-size: 0.8rem;
  }

  .steps-wrapper-lebenslange-rente-auszahlung,
  .tax-grid-lebenslange-rente-auszahlung,
  .conclusion-cards-lebenslange-rente-auszahlung,
  .related-cards-lebenslange-rente-auszahlung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-card-lebenslange-rente-auszahlung,
  .tax-block-lebenslange-rente-auszahlung,
  .conclusion-card-lebenslange-rente-auszahlung,
  .related-card-lebenslange-rente-auszahlung {
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .option-card-lebenslange-rente-auszahlung {
    padding: clamp(1rem, 2vw, 1.25rem);
  }
}

.ruerup-advisory-about {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.heritage-header-about {
  text-align: center;
  max-width: 800px;
}

.heritage-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.heritage-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.heritage-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 750px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.expertise-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(var(--color-primary-rgb, 59, 130, 246), 0.1);
  color: var(--color-primary);
  border-radius: 25px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.specialization-card-about {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.specialization-card-about:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.spec-label-about {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.spec-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.spec-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (min-width: 768px) {
  .pillars-grid-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pillar-box-about {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 320px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  text-align: center;
}

@media (min-width: 768px) {
  .pillar-box-about {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.pillar-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pillar-name-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pillar-detail-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.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(2rem, 4vw, 3rem);
}

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

@media (min-width: 768px) {
  .commitment-split-about {
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

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

@media (min-width: 768px) {
  .commitment-text-about {
    flex: 1 1 45%;
  }
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.commitment-para-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.commitment-para-about:last-child {
  margin-bottom: 0;
}

.commitment-image-about {
  flex: 1 1 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (min-width: 768px) {
  .commitment-image-about {
    flex: 1 1 45%;
    min-height: 300px;
  }
}

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

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

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

.values-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.values-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.values-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (min-width: 768px) {
  .values-list-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.value-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  height: 1em;
  width: 1em;
}

.value-name-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.value-desc-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

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

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

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

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 767px) {
  .heritage-content-about,
  .expertise-content-about,
  .approach-content-about,
  .commitment-content-about,
  .values-content-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

@media (min-width: 1024px) {
  .heritage-section-about,
  .expertise-section-about,
  .approach-section-about,
  .commitment-section-about,
  .values-section-about,
  .disclaimer-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

h1, h2, h3, h4, h5, h6, p, span, a, li, blockquote, cite {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 2px solid var(--color-border-light);
}

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

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

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

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

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

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

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

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

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

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }
}

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

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

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

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

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

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

.portfolio-card-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-card-category {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-year {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-snug);
  font-weight: 700;
}

.portfolio-card-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta-text {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

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

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

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

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.faq-hero__image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

.faq-item__trigger {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--line-height-snug);
  transition: color var(--transition-fast);
  text-align: left;
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  font-size: 1.5rem;
  transition: transform var(--transition-base);
  margin-top: 0.125rem;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item__answer.is-open {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.faq-cta {
  background-color: var(--color-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.faq-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: white;
  line-height: var(--line-height-tight);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin: 0 0 2rem 0;
}

.faq-cta__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent);
  color: white;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.faq-cta__button:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 4rem 2rem;
  }

  .faq-hero__container {
    margin-bottom: 2.5rem;
  }

  .faq-content {
    padding: 4rem 2rem;
  }

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

  .faq-item__trigger {
    padding: 2rem;
    font-size: 1.125rem;
  }

  .faq-item__answer.is-open {
    padding: 0 2rem 2rem 2rem;
  }

  .faq-item__answer p {
    font-size: 1rem;
  }

  .faq-cta {
    padding: 5rem 2rem;
  }

  .faq-cta__container {
    max-width: 800px;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 5rem 2rem;
  }

  .faq-hero__container {
    margin-bottom: 3rem;
  }

  .faq-content {
    padding: 5rem 2rem;
  }

  .faq-cta {
    padding: 6rem 2rem;
  }

  .faq-cta__title {
    font-size: 2.25rem;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
}

.legal-docs .updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .section {
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  color: var(--color-success);
  flex-shrink: 0;
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  letter-spacing: -0.5px;
}

.lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: var(--line-height-snug);
  margin: 0;
}

.description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 520px;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  min-width: 200px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
  }
  
  .thank-icon {
    width: 140px;
    height: 140px;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .thank-content {
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.error-code-container {
  margin-bottom: var(--space-2xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-primary);
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-snug);
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-home {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-base) ease;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

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

.btn-home:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.error-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.decoration-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.decoration-2 {
  width: 250px;
  height: 250px;
  background-color: var(--color-secondary);
  bottom: -50px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

.decoration-3 {
  width: 200px;
  height: 200px;
  background-color: var(--color-accent);
  top: 50%;
  right: 10%;
  animation: float 7s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@media (max-width: 640px) {
  .error-section {
    padding: var(--space-md);
    min-height: 100vh;
  }

  .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
    margin-bottom: var(--space-lg);
  }

  .error-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .error-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: var(--space-md);
  }

  .error-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    margin-bottom: var(--space-xl);
  }

  .btn-home {
    padding: 0.9rem 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .decoration-1 {
    width: 200px;
    height: 200px;
  }

  .decoration-2 {
    width: 150px;
    height: 150px;
  }

  .decoration-3 {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .error-section {
    padding: var(--space-lg);
  }

  .error-code {
    font-size: clamp(6rem, 12vw, 9rem);
  }

  .error-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }

  .error-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  }

  .error-subtitle {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
  }

  .btn-home {
    padding: 1rem 2.25rem;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .error-code {
    font-size: clamp(8rem, 15vw, 12rem);
  }

  .error-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .error-description {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
  }

  .error-subtitle {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
  }

  .btn-home {
    padding: 1.1rem 2.75rem;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
  }

  .decoration-1 {
    width: 400px;
    height: 400px;
  }

  .decoration-2 {
    width: 350px;
    height: 350px;
  }

  .decoration-3 {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }

  .error-code {
    font-size: 12rem;
  }

  .error-title {
    font-size: 2.5rem;
  }

  .error-description {
    font-size: 1.125rem;
  }

  .error-subtitle {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-wrapper {
    animation: none;
  }

  .decoration-1,
  .decoration-2,
  .decoration-3 {
    animation: none;
  }

  .btn-home {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-code {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  }
}

.contact-reach-us {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-reach-us-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-reach-us-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-hero {
    padding: 5rem 2rem;
  }
}

.contact-reach-us-hero-content {
  text-align: center;
}

.contact-reach-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-reach-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-reach-us-main {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-main {
    padding: 5rem 2rem;
  }
}

.contact-reach-us-main-content {
  width: 100%;
}

.contact-reach-us-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-reach-us-grid {
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
  }
}

.contact-reach-us-form-wrapper {
  flex: 1 1 400px;
  width: 100%;
}

.contact-reach-us-form-header {
  margin-bottom: 2rem;
}

.contact-reach-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-reach-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-reach-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-reach-us-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-reach-us-input,
.contact-reach-us-textarea {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: var(--transition-base);
  box-sizing: border-box;
}

.contact-reach-us-input:focus,
.contact-reach-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-reach-us-input::placeholder,
.contact-reach-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-reach-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-reach-us-form-consent {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}

.contact-reach-us-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: var(--line-height-normal);
}

.contact-reach-us-checkbox {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-reach-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.contact-reach-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-submit {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: 1rem;
}

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

.contact-reach-us-submit:active {
  transform: translateY(0);
}

.contact-reach-us-info-wrapper {
  flex: 1 1 400px;
  width: 100%;
}

.contact-reach-us-info-header {
  margin-bottom: 2rem;
}

.contact-reach-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-reach-us-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-reach-us-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-reach-us-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-reach-us-info-content {
  flex: 1;
}

.contact-reach-us-info-item-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-info-item-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-normal);
}

.contact-reach-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.contact-reach-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-info-item-meta {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-reach-us-info-specialties {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-reach-us-specialties-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.25rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-specialties-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-reach-us-specialty-item {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: var(--line-height-normal);
}

.contact-reach-us-specialty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-reach-us-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .contact-reach-us-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-cta {
    padding: 5rem 2rem;
  }
}

.contact-reach-us-cta-content {
  text-align: center;
}

.contact-reach-us-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-snug);
}

.contact-reach-us-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 2rem 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-reach-us-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-reach-us-cta-button-primary {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  padding: 1rem 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-base);
}

.contact-reach-us-cta-button-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-reach-us-cta-button-primary:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .contact-reach-us-grid {
    flex-direction: column;
  }

  .contact-reach-us-form-wrapper,
  .contact-reach-us-info-wrapper {
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .contact-reach-us-hero,
  .contact-reach-us-main,
  .contact-reach-us-cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header-rente-portal-mobile-close,.header-rente-portal-mobile-toggle{
  width: 34px;
}

.header-rente-portal-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}
