body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body #hero {
    width: auto;
}

section#datenschutz {
    margin: 40px 100px;
    width: 50%;
}

section#impressum {
    margin-top: 60px;
    display: flex;
    gap: 150px;
}

#datenschutz h2::before {
    display: none;
}

#datenschutz h2 {
    font-size: 40px;
    line-height: 56px;
}

#datenschutz h2 {
    margin-bottom: 20px;
}

#datenschutz h2:not(:first-of-type) {
    margin-top: 80px;
}

#datenschutz h3 {
    margin-top: 40px;
}

#datenschutz .index li {
    list-style-type: none;
}

@media only screen and (max-width: 750px) {
    section#impressum {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 0px;
    }
}

@media only screen and (max-width: 600px) {
    section#datenschutz {
        width: 100%;
        margin: 0px 0px;
        padding: 40px 50px;
    }

    #datenschutz h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 400px) {
    #datenschutz h2 {
        margin: 0px 0px 20px 0px;
    }
}