footer {
    background-color: black;
    color: white;
    padding: 30px 0;
    width: 100%;
    text-align: center;
}

.footer-columns {
    display: flex;
    flex-direction: column; /* Change to column layout for mobile */
    align-items: center; /* Center align content */
}

.footer-column {
    padding: 0 10px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure columns don't exceed full width */
}

.logo-column img {
    max-width: 100%;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
}

.footer-column ul li a:hover {
    color: #ccc;
}

@media screen and (min-width: 768px) {
    .footer-columns {
        flex-direction: row; /* Change back to row layout for larger screens */
        justify-content: space-around;
    }

    .footer-column {
        flex-basis: 25%;
        max-width: none; /* Allow columns to take up full width */
    }
}
