* {
    padding: 0;
    margin: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%; 
    display: flex;
    flex-direction: column; 
    background-color: #EBE6DE;
}

.legal-content {
    flex: 1;
    background-color: #EBE6DE;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; 
}

.legal-content .main-content {
    width: 90%;
    max-width: 1000px;
    text-align: left;
}

h1 {
    font-size: 25px;
    font-family: Roboto-Bold;
    text-align: left;
}

h2 {
    font-size: 22.5px;
    font-family: Roboto-Bold;
    text-align: left;
}

h3 {
    font-size: 22.5px;
    font-family: Roboto-Bold;
    text-align: left;
}

h4 {
    font-size: 20px;
    font-family: Roboto-Bold;
    text-align: left;
}

p, ul, li {
    font-size: 20px;
    font-family: Roboto-Light;
    text-align: justify;
    margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 22px;
    }

    h2, h3 {
        font-size: 20px;
    }

    h4, p, ul, li {
        font-size: 18px;
    }

    .legal-content .main-content {
        width: 100%; 
        text-align: center; 
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 20px;
    }

    h2, h3 {
        font-size: 18px;
    }

    h4, p, ul, li {
        font-size: 16px;
    }

    .legal-content {
        padding: 15px; /* Noch kleinerer Abstand */
    }
}
