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

.header-template-minimal-business-card {
    height: 180px;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-template-minimal-business-card {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-top: -40px;
}

.content-template-minimal-business-card {
    background: white;
    border-radius: 30px;
    margin-top: -30px;
    padding: 20px;
    text-align: center;
    position: relative;
}

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

.name-template-minimal-business-card {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 5px;
}

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

.description-template-minimal-business-card {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.4;
}

.contact-buttons-template-minimal-business-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-button-template-minimal-business-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-button-template-minimal-business-card:hover {
    background: #f0f0f0;
}

.contact-button-template-minimal-business-card i {
    margin-right: 12px;
    width: 24px;
    color: #666;
}

.contact-button-template-minimal-business-card.whatsapp-template-minimal-business-card i {
    color: #25D366;
}

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

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

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

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