.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.footer-section {
    flex: 1 1 200px;
    margin: 1rem;

    border-radius: 20px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    font-size: 0.875rem;
    color: #ccc;
}

.footer-section h4 {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}