
/* Footer Improvements */
footer .footer-logo {
    margin-bottom: 2rem;
    text-align: center;
}

footer .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

footer .footer-nav a {
    color: #e5e7eb; /* Light gray for dark footer */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

footer .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

footer .footer-copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* Ensure Logo Visibility */
.navbar-brand img, .footer-logo img {
    display: block; /* Remove inline-block gaps */
}
