.vcard {
    max-width: 380px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 20px;
    background: linear-gradient(180deg, #3AAADD 0%, #96BA3B 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.vcard-logo {
    width: 110px;
    margin: 0 auto 15px;
    display: block;
}

.vcard-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
  	color: #fff;
}

.vcard-role {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.vcard-info {
    margin-bottom: 25px;
}

.vcard-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vcard-icon {
    font-size: 18px;
}

.vcard-row a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.vcard-button {
    display: inline-block;
    background: #fff;
    color: #3AAADD;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.vcard-button:hover {
    background: #f0f0f0;
}

.vcard-company {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
    color: #fff;
}

.vcard-company-link {
    color: #fff;
    text-decoration: none;
}

.vcard-company-link:hover {
    text-decoration: underline;
}

.vcard-legal {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

.vcard-legal a {
    color: #fff;
    text-decoration: none;
    margin: 0 4px;
}

.vcard-legal a:hover {
    text-decoration: underline;
}

.vcard-legal span {
    color: #fff;
    opacity: 0.6;
}