.about_page_section {
    position: relative;
    background: url('../img/ContactUs/contact-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.315);
}

.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-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;
}

.contact-section h2 {
    font-family: var(--poppins-500);
    color: var(--black);
    font-size: 28px;
}

.contact-section p {
    font-family: var(--poppins-400);
    font-size: 16px;
    color: var(--text-dark);
}

.custom-input {
    border-radius: 5px;
    padding: 12px 15px;
    background-color: #f3f3f3;
    border: none;
}

.custom-input:focus {
    outline: none;
    box-shadow: unset;
    background-color: #f3f3f3;
}

.custom-input::placeholder {
    font-family: var(--poppins-400);
}

.custom-btn {
    border-radius: 5px;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--black);
    border: none;
    transition: 0.3s ease-in-out;
    font-family: var(--poppins-400);
    letter-spacing: 2px;
    border: 1px solid var(--black);
}

.custom-btn:hover {
    background-color: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
}

.contact-section .address-title {
    font-family: var(--poppins-600);
    color: var(--black);
    font-size: 18px;
}

.contact-section .address-text {
    font-family: var(--poppins-400);
    font-size: 16px;
    color: var(--text-dark);
}