/* Footer social icons styling */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-social-icons a {
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-social-icons img:hover {
    opacity: 0.7;
}