/* ==== Rubik Schriftart einbinden ==== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/* ==== Globale Schriftanpassung ==== */
body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, textarea {
  font-family: 'Rubik', sans-serif !important;
}
/* Container für Call-to-Action-Bereich */
.finception-support-actions {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Einzelner CTA-Block */
.support-action {
  flex: 1 1 30%;
  min-width: 260px;
  text-align: center;
}

/* Button-Stil mit CI-Farben */
.support-button {
  display: inline-block;
  background-color: #6F5D98;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  white-space: normal;
}
.support-button:hover {
  background-color: #5B4B80;
}

/* Beschreibungstext */
.support-description {
  color: #FFFFFF;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive Verhalten */
@media (max-width: 900px) {
  .finception-support-actions {
    flex-direction: column;
    align-items: center;
  }
  .support-action {
    width: 100%;
    max-width: 500px;
  }
}
/* Menü-Links in weiß */
.Header__menuList li a {
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

/* Optional: Hover-Hintergrund für bessere Sichtbarkeit */
.Header__menuList li a:hover {
  background-color: #6F5D98;
  border-radius: 6px;
  color: #FFFFFF !important;
}
.finception-footer {
  background-color: #27262E;
  color: #FFFFFF;
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
}

.finception-footer a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 8px;
}

.finception-footer a:hover {
  text-decoration: underline;
}
