/* Social Media Icons Enhancement */
.social-media-icons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 8px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #002147;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #002147;
    color: white;
    transform: translateY(-3px);
}

/* Specific colors for different social networks */
.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.instagram:hover {
    background-color: #e1306c;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .social-media-icons {
        margin-top: 20px;
    }
}
