.footer-link {
    text-decoration: none;
    color: #555;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000;
}

.footer h5 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (min-width: 992px) {

    .footer .container-fluid {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .footer .row.justify-content-between {
        justify-content: space-around !important;
        gap: 2rem;
    }

    .footer .col-lg-9 {
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-columns {
        display: flex;
        flex: 1;
        gap: 2rem;
    }

    .footer .social-icons {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {

    .footer .col-md-3,
    .footer .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .footer .col-md-3,
    .footer .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}