    /* Share Buttons Styles */
    .share-section {
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
        border-radius: 12px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .share-header {
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(139, 92, 246, 0.2);
    }
    
    .share-icon {
        width: 40px;
        height: 40px;
        background: #ffff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .share-buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .share-btn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .share-btn i {
        font-size: 1.25rem;
        transition: transform 0.3s ease;
    }
    
    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .share-btn:hover i {
        transform: scale(1.2);
    }
    
    .share-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: currentColor;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .share-btn:hover::before {
        opacity: 0.1;
    }
    
    .share-btn i {
        position: relative;
        z-index: 2;
    }
    
    /* Platform-specific colors */
    .facebook-btn {
        color: #1877F2;
        border-color: rgba(24, 119, 242, 0.2);
    }
    
    .twitter-btn {
        color: #1DA1F2;
        border-color: rgba(29, 161, 242, 0.2);
    }
    
    .whatsapp-btn {
        color: #25D366;
        border-color: rgba(37, 211, 102, 0.2);
    }
    
    .linkedin-btn {
        color: #0A66C2;
        border-color: rgba(10, 102, 194, 0.2);
    }
    
    .email-btn {
        color: #EA4335;
        border-color: rgba(234, 67, 53, 0.2);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .share-btn {
            width: 44px;
            height: 44px;
        }
        
        .share-btn i {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 576px) {
        .share-section {
            padding: 1.25rem;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
        }
    }