body {
    background: linear-gradient(135deg, #F7F7F7 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.business-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(44, 41, 89, 0.18), 0 1.5px 4px rgba(108,99,255,0.08);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    border: 2.5px solid #6C63FF;
    transition: box-shadow 0.3s;
    position: relative;
}

.business-card:hover {
    box-shadow: 0 16px 48px rgba(108,99,255,0.18), 0 3px 10px rgba(44,41,89,0.10);
}

.bc-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 1.3rem;
}

.bc-info h1 {
    color: #6C63FF;
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0 0 0.3rem 0;
    letter-spacing: -0.5px;
    text-align: center;
}

.bc-info h2 {
    color: #2A265F;
    font-size: 1.04rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    letter-spacing: 0.2px;
    text-align: center;
}

.bc-info hr {
    border: none;
    border-top: 1.5px solid #E0E0F9;
    width: 60%;
    margin: 0.7rem auto 1rem auto;
}

.bc-details {
    color: #1A1A2E;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
}

.bc-details strong {
    color: #FF9190;
    font-weight: 700;
}

@media (max-width: 500px) {
    .business-card {
        padding: 1.2rem 0.3rem;
        max-width: 98vw;
    }
    .bc-logo img {
        height: 48px;
    }
    .bc-info h1 {
        font-size: 1.1rem;
    }
}
