.contact-hero {
    padding: 20rem 8% 10rem;
    background: url("../img/contactUsPage.jpg") center/cover no-repeat;
    text-align: center;
    color: var(--off-white);
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero h1,
.contact-hero p {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--gold-color);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    display: flex;
    justify-content: center;      
    align-items: center;         
    padding: 6rem 10%;
    background: var(--federal-blue);
    color: var(--off-white);
    text-align: center;           
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.contact-info h3 {
    margin-top: 2rem;
    color: var(--gold-color);
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--gold-color);
}

.contact-info a {
    color: var(--off-white);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: var(--cyan);
}

.contact-info ul {
    margin: 1rem 0 1.5rem;
}

.contact-info li {
    margin-bottom: 0.4rem;
}

.mission-text {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive Design  */

/* ≤ 2560px: ultra-wide */
@media (max-width: 2560px) {
    .contact-hero {
        padding: 20rem 10% 10rem;
    }

    .contact-section {
        padding: 6rem 12%;
    }
}

/* ≤ 1920px: standard desktops */
@media (max-width: 1920px) {
    .contact-hero {
        padding: 18rem 8% 9rem;
    }

    .contact-section {
        padding: 5.5rem 10%;
    }
}

/* ≤ 1200px: laptops */
@media (max-width: 1200px) {
    .contact-hero {
        padding: 16rem 8% 8rem;
    }

    .contact-hero h1 {
        font-size: 3.2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 5rem 8%;
    }

    .mission-text {
        font-size: 1.05rem;
    }
}

/* ≤ 992px: large tablets / small laptops */
@media (max-width: 992px) {
    .contact-hero {
        padding: 14rem 6% 7rem;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-hero p {
        font-size: 1.02rem;
    }

    .contact-section {
        padding: 4.25rem 8%;
    }
}

/* ≤ 768px: tablets */
@media (max-width: 768px) {
    .contact-hero {
        padding: 14rem 5% 5rem;
    }

    .contact-hero h1 {
        font-size: 2.4rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3.5rem 6%;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .mission-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ≤ 480px: small mobile */
@media (max-width: 480px) {
    .contact-hero {
        padding: 14rem 1.5rem 4rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 3rem 1.5rem 3.25rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .mission-text {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
}
