/* LEGAL SECTION STYLES */
.legal {
    max-width: 800px;
    margin: 8rem auto; /* Abstand nach oben und zentriert */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding: 1rem;
    color: #333;
}

.legal__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #00274d; /* Dunkelblau */
}

.legal__text {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal__address {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 2rem;
    text-align: left;
}

.legal__subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
    color: #00274d; /* Dunkelblau */
}

.legal__list {
    margin-left: 1.5rem;
    list-style-type: disc;
}

.legal__link {
    color: #00274d;
    text-decoration: underline;
}

.legal__link:hover {
    color: #0056b3; /* Helleres Blau beim Hover */
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .legal {
        padding: 1rem;
    }

    .legal__title {
        font-size: 1.8rem;
    }

    .legal__subtitle {
        font-size: 1.3rem;
    }

    .legal__text {
        font-size: 0.95rem;
    }
}
