/* Footer */
.footer {
    background: black;
    color: white;
    padding: 50px 70px;
}

/* Footer inhoud */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Linker kant footer */
.footer-left h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 17px;
    color: #ccc;
}

/* Navigatie links */
.footer-right {
    display: flex;
    gap: 25px;
}

/* Footer links */
.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

/* Hover effect links */
.footer-right a:hover {
    opacity: 0.7;
}