.main-footer {
    background-color: black;
    color: #ffffff;
    padding: 10px 0 10px 0;
    margin-top: 10px;
    font-family: Arial, sans-serif;
    border-top: 1px solid grey;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 10px;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section.about {
    margin-right: 40px;
    /* Dit duwt de volgende kolom opzij */
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid #333;
    font-size: 1rem;
    color: #777;
    margin-top: 10px;
}