.contact-us-page {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.content-parent {
    display: grid;
    grid-template-columns: 49% 49%;
    justify-content: space-between;
}

.contact-us-page a {
    color: #0DB5E5;
}

.contact-us-map-section {
    background-image: url(//www.fntuned.com/cdn/shop/files/contact-facility.webp?v=1675885314);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-map-section .contact-us-iframe {
    height: 300px;
}

.inner-container-contact {
    width: 950px;
    margin: auto;
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
    justify-content: space-between;
    
}

.inner-container-contact .content-left-custom {
    background-color: white;
    padding: 1rem;
    width: 50%;
    height: fit-content;
}

@media screen and (max-width: 768px) {
    .content-parent {
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .inner-container-contact {
        width: 100%;
        grid-template-columns: 100%;
        padding: 1.5rem;
    }

    .inner-container-contact .content-left-custom {
        width: 100%;
    }
}