.social-share {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    margin: 40px auto;
    display: table;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-share h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #495057;
}

/* Social Sharing Styles */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}

.telegram {
    background-color: #0088cc;
}

.qq {
    background-color: #12b7f5;
}

.copy-link {
    background-color: #6c757d;
    position: relative;
}

.copy-link.copied {
    background-color: #28a745;
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.social-icon i {
    font-size: 20px;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #000000;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.wechat {
    background: #07c160;
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon.qq {
    background: #12b7f5;
}

.social-icon.copy-link {
    background: #6c757d;
}

@media (max-width: 576px) {
    .social-icons {
        justify-content: center;
    }
}
