body {
    font-family: 'Poppins', sans-serif;
  }
  

/* Grundlayout */
.custom-header {
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 12px 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Logo */
  .logo img {
    height: 48px;
  }
  
  /* Navigation */
  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
  }
  
  .main-nav ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .main-nav ul li a:hover {
    color: #1B76D0;
  }
  
  /* Button */
  .order-btn {
    display: flex;
    justify-content: flex-end;
  }
  
  .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #1B76D0;
  }
  
  /* Burger Menü */
  .burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .header-inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 10px;
    }
  
    .logo {
      flex: 0 0 auto;
    }
  
    .order-btn {
      flex: 0 0 auto;
      margin: 0;
    }
  
    .burger {
      display: block;
      flex: 0 0 auto;
    }
  
    .main-nav {
      display: none;
      width: 100%;
      margin-top: 15px;
    }
  
    .main-nav.open {
      display: block;
    }
  
    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  }
  
  
  .order-btn .btn {
    background-color: #1B76D0;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 100; /* dünnere Schrift */
    font-size: 15px;
    transition: background-color 0.3s;
  }
  

  .footer {
    background-color: #1B76D0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 40px 0;
  }
  
  .footer-top .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-col {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 270px;
  }
  
  .footer h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .footer-line {
    width: 35px;
    height: 2px;
    background: white;
    margin-bottom: 15px;
  }
  
  .footer p {
    margin: 0 0 10px;
    line-height: 1.5;
  }
  
  .footer-links,
  .footer-benefits {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .footer-links li,
  .footer-benefits li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-links li i {
    margin-right: 6px;
  }
  
  .footer-benefits li span {
    font-weight: 500;
  }
  
  .footer-logo {
    max-width: 160px;
    height: auto;
    margin-top: 20px;
  }
  
  .logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 30px;
    }
  
    .logo-col {
      justify-content: flex-start;
    }
  }

  .quicklinks-grid {
    display: flex;
    gap: 30px;
  }
  
  .quicklinks-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }

  .footer-links a {
    color: inherit;         /* übernimmt die Textfarbe vom Eltern-Element */
    text-decoration: none;  /* entfernt Unterstreichung */
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #1B76D0;         /* oder eine andere dezente Hover-Farbe */
    text-decoration: underline;
  }
  