body {
    font-family: 'Open Sans', sans-serif;
    background: #fbfdff; /* leichtes Blau-Grau als reiner Farbton, OHNE Verlauf */
    color: #1f1f1f;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  
/* --------------------------------------
   Normale Section (für Texte usw.)
----------------------------------------- */
.section-default {
    background: #ffffff; /* bleibt komplett weiß */
    padding: 4rem 2rem;
    margin: 4rem auto;
    width: 90%;
    max-width: 1400px; /* minimal breiter, damit es stimmiger wirkt */
    border-radius: 20px; /* leichter Radius, damit alles harmonischer wirkt */
  }
  
  /* --------------------------------------
     Hervorgehobene Section (Bubble für CTA, Formulare, Videos)
  ----------------------------------------- */
  .section-bubble {
    background: linear-gradient(135deg, #eef7ff, #eaf4fc); /* sanfter Farbverlauf */
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 4rem 2rem; /* identisches Padding */
    margin: 4rem auto;
    width: 90%;
    max-width: 1400px; /* identisch zur Default-Section */
  }
  
  
  /* --------------------------------------
     Header
  ----------------------------------------- */
  .site-header {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    border-radius: 0;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 80px;
    max-width: 100%;
    display: block;
  }
  
  /* Navigation */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: #e0f2ff;
  }
  
  /* --------------------------------------
     Footer
  ----------------------------------------- */
  .site-footer {
    background: #fff;
    color: #0a0c27;
    padding: 60px 20px 30px;
    border-top: 1px solid #ddd;
    border-radius: 40px 40px 0 0;
    font-size: 0.9rem;
    text-align: left;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .footer-column p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-column ul,
  .mobile-nav ul,
  header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li a {
    color: #0a0c27;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  
  .footer-column ul li a:hover,
  .social-icons a:hover {
    color: #00ffc2;
  }
  
  .social-icons a {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #0a0c27;
    transition: color 0.2s;
  }
  
  .payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
  }
  
  .payment-logos i,
  .payment-logos img {
    font-size: 28px;
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
    color: #0a0c27;
  }
  
  .payment-logos .bar-zahlung {
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 8px;
  }
  
  .footer-bottom {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #333;
    text-align: left;
  }
  