.card-container-template-business-card-2 {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-template-business-card-2 {
    background: #0066cc;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.profile-section-template-business-card-2 {
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.profile-image-template-business-card-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    object-position: center;
}

.company-logo-template-business-card-2 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    background: white;
}

.name-template-business-card-2 {
    font-size: 24px;
    font-weight: bold;
    margin: 16px 0 4px 0;
}

.title-template-business-card-2 {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.company-template-business-card-2 {
    font-size: 18px;
    color: #333;
    margin: 4px 0 16px 0;
    font-weight: bold;
}

.social-links-template-business-card-2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-icon-template-business-card-2 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon-template-business-card-2:hover {
    transform: translateY(-2px);
}

.facebook-template-business-card-2 { background: #1877F2; }
.instagram-template-business-card-2 { background: #E4405F; }
.youtube-template-business-card-2 { background: #FF0000; }
.linkedin-template-business-card-2 { background: #0A66C2; }
.twitter-template-business-card-2 { background: #000000; }
.website-template-business-card-2 { background: #03fcca; }

.services-text-template-business-card-2 {
    padding: 0 20px;
    text-align: center;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

.contact-info-template-business-card-2 {
    padding: 0 20px 20px;
}

.contact-item-template-business-card-2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

.contact-icon-template-business-card-2 {
    width: 44px;
    height: 44px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-content-template-business-card-2 {
    display: flex;
    flex-direction: column;
}

.contact-value-template-business-card-2 {
    font-size: 16px;
    color: #000;
}

.contact-label-template-business-card-2 {
    font-size: 14px;
    color: #666;
}

.whatsapp-float-template-business-card-2 {
    position: fixed;
    bottom: 20px;
    right: 40px;
    background: #25D366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
    font-size: 32px;
}

.whatsapp-float-template-business-card-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pulse-template-business-card-2 {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (min-width: 440px) {
    .whatsapp-float-template-business-card-2 {
        right: calc(50vw - 180px);
    }
}