footer {
    background-color: var(--color-secondary);
    color: #ffF;
}

footer .container {
    padding-bottom: 1rem;
}

.footer-heading {
    margin-bottom: 2rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    list-style: none;
}
.footer-container {
    width: 100%;
    display: flex;
    gap: 12rem;
    justify-content: center;
}

#email-us-container {
    width: 24rem;
}

#inquiries-subtitle {
    margin-bottom: var(--space-lg);
}

#map {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.footer-copyright {
    margin-top: 6rem;
}

@media (max-width: 800px) {
    .footer-heading {
        margin-bottom: 0.5rem;
    }

    .footer-links {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    #email-us-container {
        width: 100%;
    }
}