.business-contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
    border: 1.5px solid #c4b5fd;
    border-left: 4px solid #7c3aed;
    border-radius: 8px;
    padding: 14px 24px;
    margin: 0 auto 28px;
    max-width: 860px;
    font-size: 14px;
    color: #374151;
    text-align: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.10);
}
.business-contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.business-contact-text {
    font-weight: 500;
    color: #4c1d95;
}
.business-contact-link {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
    word-break: break-all;
}
.business-contact-link:hover {
    text-decoration: underline;
    color: #5b21b6;
}
@media (max-width: 480px) {
    .business-contact-bar {
        font-size: 13px;
        padding: 12px 14px;
    }
}