body {
    background:#f7f8fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-card,
.hours-card {
    background:#fff;
    border-radius:24px;
    box-shadow:0 16px 40px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.08);
}

.contact-card {
    padding: 24px;
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,0,.10);
    font-size: 24px;
    flex:0 0 56px;
}

.contact-label,
.hours-badge {
    display:inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 8px;
}

.contact-card h3,
.hours-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.contact-card p {
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}

.contact-link {
    color: #ff6b00;
    font-weight: 700;
    text-decoration: none;
}

.hours-card {
    padding: 28px;
}

.hours-card-head {
    margin-bottom: 20px;
}

.hours-list {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.hours-day,
.hours-time {
    font-weight: 700;
    color: #111827;
}

@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hours-row,
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
