.about_page_section {
    position: relative;
    background: url('../img/policy-banner.jpg') no-repeat center center/cover;
    height: 100vh;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: var(--white);
}

.about_page_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.486);
}

.about_page_section .about_banner {
    position: absolute;
    font-family: var(--poppins-400);
    max-width: 800px;
    font-size: 32px;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Privacy Policy Section */
.privacy-policy {
    background-color: var(--lightcolor);
    /* light background */
    padding: 60px 20px;
    border-radius: 10px;
}

.privacy-title {
    font-size: 32px;
    font-family: var(--poppins-600);
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.privacy-heading {
    font-family: var(--poppins-500);
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.privacy-text {
    font-family: var(--poppins-400);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.privacy-subtitle {
    font-family: var(--poppins-500);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--black);
}