/* Layout container for all 4 footer sections */
.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Prevents columns from wrapping to a 2nd row */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Adjust spacing between columns as needed */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Brand column gets slightly more width */
.footer-brand {
    flex: 0 0 30%;
    max-width: 30%;
}

/* Nav columns divide the remaining space evenly */
.footer-column {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Typography & Spacing */
.footer-column h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack vertically on small screens */
    }
    
    .footer-brand,
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}