
.download-vcard-button {
    background: linear-gradient(135deg, #0f4882, #1260a3);
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.download-vcard-button:hover {
    background: linear-gradient(135deg, #1260a3, #0f4882);
    color: #fff;
}

body {
    background-color: #f5f8fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.business-card {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
}

.card-left {
    background: linear-gradient(135deg, #0f4882, #1260a3);
    color: white;
    padding: 40px 30px;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-left img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 20px;
    object-fit: cover;
}

.card-left h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.card-left p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 22px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #5591cd;
}

.card-right {
    padding: 40px 30px;
    width: 65%;
}

.info-block {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-block i {
    font-size: 22px;
    color: #0f4882;
}

.info-block p {
    color: #333;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
    }

    .card-left, .card-right {
        width: 100%;
        text-align: center;
    }

    .card-right {
        padding: 30px 20px;
    }

    .info-block {
        justify-content: center;
    }
}


.company-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.company-info img {
    width: 40px;
    height: 40px;
    object-fit: contain;


}

.company-info h2 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}
