footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
footer .footer-bottom p {
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
/* Footer styles */
footer.bg-light {
    background: #f8f9fa;
    color: #222;
    border-top: 1px solid #e5e5e5;
    font-size: 1rem;
}
footer .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
footer h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0d6efd;
    letter-spacing: 0.5px;
}
footer p, footer ul, footer li {
    margin-bottom: 0.5rem;
    color: #444;
}
footer ul {
    padding-left: 0;
    list-style: none;
}
footer ul li a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}
footer ul li a:hover, footer ul li a:focus {
    color: #0a58ca;
    text-decoration: underline;
}
footer .row + .row {
    border-top: 1px solid #e5e5e5;
    margin-top: 1.5rem;
    padding-top: 1rem;
}
footer .mb-0 {
    margin-bottom: 0 !important;
}
@media (max-width: 767.98px) {
    footer .row {
        flex-direction: column !important;
        display: flex;
    }
    footer .row > div {
        margin-bottom: 1.5rem;
        text-align: left !important;
    }
    footer h2,
    footer p,
    footer ul {
        text-align: left !important;
    }
    footer .row + .row {
        margin-top: 1rem;
        padding-top: 0.5rem;
    }
}
