.social-share-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #003366;
}

.social-share-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: block;
}

.social-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-linkedin:hover {
    background-color: #005582;
    color: white;
    transform: translateY(-2px);
}

.share-whatsapp {
    background-color: #25d366;
}

.share-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.share-twitter {
    background-color: #1da1f2;
}

.share-twitter:hover {
    background-color: #0c85d0;
    color: white;
    transform: translateY(-2px);
}

.share-facebook {
    background-color: #1877f2;
}

.share-facebook:hover {
    background-color: #0c5dc7;
    color: white;
    transform: translateY(-2px);
}

.share-email {
    background-color: #ea4335;
}

.share-email:hover {
    background-color: #c5221f;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .social-share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
    }
}
