/* Social Icons Footer Styles */
.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover svg path {
    fill: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons-footer {
        justify-content: center;
    }
}
