.footer-links-container {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.footer-links-col {
    min-width: 140px;
}

@media (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links-col {
        min-width: 100%;
    }
}