/* Fix for footer horizontal layout */
.footer-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    margin: 0 auto 2rem !important;
}

.footer-section {
    flex: 1 !important;
    min-width: 200px !important;
    margin: 0 1rem 2rem !important;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-section {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
}