/* All previous container, card, content styles remain the same */
.container-template-business-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}

.card-template-business-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-image-template-business-card {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
}

.profile-section-template-business-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 170px;
    left: 20px;
    right: 20px;
}

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

.company-logo-template-business-card {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border: 4px solid white;
}

.content-section-template-business-card {
    margin-top: 70px;
}

.name-template-business-card {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 4px;
}

.title-template-business-card {
    font-size: 20px;
    margin: 0;
    margin-bottom: 4px;
}

.company-template-business-card {
    font-size: 20px;
    margin: 0;
    margin-bottom: 24px;
}

.services-text-template-business-card {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 24px 0;
    padding: 0;
}

.contact-info-template-business-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

.icon-circle-template-business-card {
    width: 48px;
    height: 48px;
    background: #e76f51;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

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

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

.contact-value-template-business-card.address-template-business-card {
    line-height: 1.4;
}

.social-links-template-business-card {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-icon-template-business-card {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: white;
    font-size: 20px;
}

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

.facebook-template-business-card {
    background: #1877F2;
}

.instagram-template-business-card {
    background: #E4405F;
}

.youtube-template-business-card {
    background: #FF0000;
}

.linkedin-template-business-card { background: #0A66C2; }
.twitter-template-business-card { background: #000000; }
.website-template-business-card { background: #03fcca; }

.whatsapp-float-template-business-card {
    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:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pulse-template-business-card {
    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 {
        right: calc(50vw - 180px);
    }
}