/* Contact & Hours section */

.contact-background {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
    padding: 2rem 5rem 1.5rem 5rem;
    background-color: #f0f0f0; 
}

.contact h2,
.hours h2 {
    font-weight: 500;
    color: #000;
    margin: 0 0 1.5rem 0;
}

.contact p,
.hours p {
    font-size: 1.15rem;
    color: #000;
    margin: 0 0 0.75rem 0;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 1rem;                                         
    align-items: start;   
}

footer p {
    font-size: 0.9rem;
    color: #000;
    margin: 2.5rem 0 0 0;
}

