/* -----------------------------------
   TITEL & TEXTBEREICH
----------------------------------- */

.leistungsbereich-title {
    margin: 20px 0 10px 0;
    padding: 0;
    font-size: 32px;
    color: #96BA3B;
    text-align: center;
}

.leistungsbereich p {
    line-height: 1.5;
    font-size: 17px;
    text-align: justify;
    text-align-last: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.leistungsbereich .white-section ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    text-align: left;
    line-height: 1.5;
}

/* -----------------------------------
   BUTTON
----------------------------------- */

.leistungsbereich .button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 14px 28px;
    background: #3AAADD;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}

.leistungsbereich .button:hover {
    background: #96BA3B;
    color: #ffffff;
}

/* -----------------------------------
   LEISTUNGSKARTEN – Premium Minimal Style
   (nur grüne Unterkante)
----------------------------------- */

.leistung-card,
.variant-card {
    border-bottom: 4px solid #96BA3B;   /* CI-Grün */
    border-radius: 0 0 12px 12px;       /* leichte Rundung unten */
    padding-bottom: 22px;               /* Abstand zur Linie */
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* -----------------------------------
   LEISTUNGSBEREICHE-MENÜ – 1 ZEILE, 6 SPALTEN
----------------------------------- */

.lb-menu {
    position: sticky;
    top: 96px;
    z-index: 998;
    background: #ffffff;
    border-bottom: 2px solid #3AAADD;
    padding: 4px 10px;
    border-radius: 0 0 12px 12px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;

    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Wenn der Header schrumpft */
.topnav.scrolled + .lb-menu {
    top: 44px;
}

/* Links */
.lb-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    padding: 4px 6px;
    border-radius: 6px;
    transition: 0.2s;
    white-space: nowrap;
    font-size: 15px;
    text-align: center;
}

/* Hover */
.lb-menu a:hover {
    background: #96BA3B;
    color: #ffffff;
}

/* Aktiver Menüpunkt */
.lb-menu a.active {
    border: 2px solid #3AAADD;
    background: transparent;
    color: #111;
}

/* -----------------------------------
   MOBILE
----------------------------------- */

@media (max-width: 800px) {
    .lb-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 10px;
        padding: 6px 10px;
        border-radius: 0 0 10px 10px;
        max-width: 100%;
    }

    .lb-menu a {
        font-size: 14px;
        padding: 4px 6px;
    }
}
