.contact {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 3rem 1rem;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.call-us,
.visit-us,
.business-hours {
    color: #000;
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: inset 0px 4px 12px rgba(0, 0, 0, 0.30);
}

.visit-us address{
    font-style: normal;
}

a:hover {
    color: var(--accent);
    transition: 0.3s ease;
}

.contact-container h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.business-hours-table {
    border-radius: 12px;
    border: 1px solid #ccc;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin: 1rem auto;
    width: 100%;
    max-width: 350px;
}

.business-hours-table td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ccc;
}

.business-hours-table td:first-child {
    text-align: left;
    font-weight: bold;
}

.business-hours-table td:last-child {
    text-align: center;
}

.business-hours-table tr:last-child td {
    border-bottom: none;
}

.business-hours-table tr:nth-child(odd) {
    background-color: #e0dfdf;
}

.business-hours-table tr:nth-child(even) {
    background-color: #fff;
}

.business-hours-table th {
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-align: center;
}

.business-hours-table tr.today {
    background-color: var(--accent);
    color: #fff;
    font-weight: bold;
}

.business-hours-table tr.today td {
    border-color: var(--accent);
}

@media (max-width: 500px) {
    .business-hours-table {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .business-hours {
        grid-column: 1 / -1;
        text-align: center;
    }

    .contact .underline {
        width: 20%;
    }
}