/* Hours and Location */
.info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hours, .location {
    flex: 1;
    min-width: 300px;
    background: var(--light-gray);
    padding: 2rem;
}

.hours h3, .location h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #ccc;
}

.location p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 10px;
    color: var(--primary-black);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    padding: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}