    /* Top-Bar Styles */
    .top-bar {
    background-color: #067A07;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    }
    .img-fluid-border {
    max-width: 100%;
    vertical-align: baseline;
    border-radius: 10px;
}
    a.weissorange-link {
      color: white;
      text-decoration: none;
      cursor: pointer;
    }

    a.weissorange-link:hover {
      color: orange;
    }
    a.blauorange-link {
      color: darkgreen;
      text-decoration: none;
      cursor: pointer;
    }

    a.blauorange-link:hover {
      color: orange;
    }
    /* Body padding to avoid overlapping fixed elements */
    body {
      padding-top: 3.5rem; /* top-bar + navbar height */
    }
    /* Eigene Styles zur Anpassung */
    .custom-nav {
      margin-left: auto;
      margin-right: 3rem;
    }
    .hero {
      margin-top: 0 !important;
      position: relative;
    }
    .hero-img {
      height: 90vh;
      object-fit: cover;
      width: 100%;
    }
    /* Zentrierter Text über Hero-Bild */
    .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    text-align: center;
    padding: 1rem 2rem;
    background-color: hsla(0,0%,97%,0.91);
    border-radius: 0.5rem;
    /* Neue responsive Breite */
    width: 90%;
    max-width: 600px;
    }
    .hero-text h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .hero-text p {
      font-size: 1.25rem;
      margin: 0;
    }
.hero-text-links {
    left: 25%;
    transform: translate(-25%, -50%);
    }
    .highlighted {
    background-color: #F8F9FA;
    color: #000000;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    }
    .highlighted a { color: #ffffff; }
    .grey-section {
      background-color: #f8f9fa;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
      border-radius: 0.5rem;
      margin-bottom: 3rem;
    }
    .grey-section .text-content { flex: 1 1 50%; }
    .grey-section .image-content { flex: 1 1 20%; text-align: right; }
    .grey-section .image-content img {
      width: 400px;
      height: auto;
      border-radius: 0.5rem;
    }
    /* Logo abgerundet */
    .navbar-brand img { border-radius: 0.5rem; }

    /* Orange Überschriften */
    .hero-text h1, .highlighted h1, h2 {
    color: #078709;
    }
    /* Hover-Effekt für Menüpunkte */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
    color: #078709 !important;
    transition: color 0.3s;
    }
    /* Hover für Dropdown-Items */
    .dropdown-menu .dropdown-item:hover {
    background-color: rgba(35, 59, 119, 0.1);
    color: #078709 !important;
    transition: background-color 0.3s, color 0.3s;
    }
    /* Aktiver Menüpunkt fett und blau */
    .navbar-nav .nav-link.active {
    font-weight: bold !important;
    color: #078709 !important;
    }
    /* Responsive Anpassung für Hero-Text */
 @media (max-width: 768px) {
  .hero-text {
    width: 100% !important;
    max-width: none !important;
    padding: 1rem !important;
  }
}
  /* Abstand links/rechts in responsiver Ansicht für Container und Sektionen */
  @media (max-width: 576px) {
    .container,
    .grey-section,
    .highlighted {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }
   /* Globaler horizontaler Abstand auf kleinen Bildschirmen */
  @media (max-width: 576px) {
    body {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
    .grey-section,
    .highlighted,
    /* Ausgenommen: Navbar-Container, damit dieser eigene Polster behält */
    .container:not(.navbar-nav) {
 
    }
    /* Spezielle Ausnahmen für Navbar-Container */
    nav.navbar .container {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }
/* Schriftgröße der Navigation anpassen */
.navbar-nav .nav-link {
  font-size: 18px; /* Beispielgröße, nach Wunsch anpassen */
  font-weight: 500; /* optional für bessere Lesbarkeit */
}
