#privacy-heading-section {
    height: 40vh;
    width: 100%;
    background-image: url("../img/Volkswagen_StationWagen.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

#privacy-heading-section::before {
    content: "";
    height: 100%;
    background-color: rgb(241, 246, 255);
    opacity: 0.9;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.text-section {
    width: 80%;
    margin: 3rem auto;
}
.text-section li{
    margin: 1rem 0;
}
.about-small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(27, 38, 82);
}
@media (max-width: 700px) {
    /* ABOUT PAGE */
    .section-area {
        flex-direction: column;
        width: 90%;
        margin: auto;
    }
    .big-text {
        font-size: 2rem;
    }
    .about-small-text{
        font-size: 0.7rem;
    }
}