#privacy-heading-section {
    height: 40vh;
    width: 100%;
    background-image: url("../img/TaxiMaarssen.jpeg");
    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%;
    max-width: 1000px;
    margin: 3rem auto !important;
    display: block !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 10px !important;
    padding: 2rem !important;
    background-color: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    text-align: left;
}
.text-section li{
    margin: 1rem 0;
}
.about-small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(27, 38, 82);
    width: 100%;
    text-align: left;
}
@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;
    }
    
    .text-section {
        width: 90% !important;
        margin: 2rem auto !important;
        padding: 1.5rem !important;
    }
}