/* Footer bottom section styles */
.footer-bottom {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 2rem 0 !important;
    border-top: none !important;
    flex-wrap: wrap !important;
}

.footer-copyright {
    color: #ffffff !important;
    font-size: 0.9rem !important;
}

.footer-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: opacity 0.3s ease !important;
    white-space: nowrap !important;
}

.footer-links a:hover {
    opacity: 0.8 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .footer-links {
        gap: 1rem !important;
    }
}