.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    /* color: var(--primary-color); */
    transition: color 0.3s ease;
    
}

.nav-link a:hover {
    color: var(--secondary-color);
}

.section-last {
    padding-bottom: 0;
}

.legal-content{
    padding-top:6rem;
    padding-bottom: 4rem;
}


/* ==========================================================================
   DIVIDER.CSS
   ==========================================================================
   Enthält Stile für die Trennelemente zwischen Content-Sektionen.
*/

/* ==========================================================================
   1. Divider-Container
   ========================================================================== */

.divider-container {
    width: 100%;
    height: auto;
    margin: 2rem 0; /* Mobile Basis: 2rem für angemessene Abstände */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border: none;
    outline: none;
    box-shadow: none;
    position: relative;
    z-index: 15;
}

.section-divider {
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(26, 54, 93, 0.3),
        rgba(26, 54, 93, 0.3), 
        transparent
    );
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    min-height: 1px;
}

/* Responsive rem-basierte Abstände */
@media (min-width: 768px) {
    .divider-container {
        margin: 3rem 0; /* Tablet+: 3rem wie gewünscht */
    }
}

@media (min-width: 1024px) {
    .divider-container {
        margin: 3rem 0; /* Desktop: behalten bei 3rem */
    }
    
    .section-divider {
        margin: 3rem 0; /* Extra margin für section-divider ab 1024px */
    }
}

@media (min-width: 1920px) {
    .divider-container {
        margin: 4rem 0; /* Large Desktop: 4rem für mehr Luft */
    }
    
    .section-divider {
        margin: 4rem 0;
    }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .section-divider {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .section-divider {
        width: 90%;
    }
}
