
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

.footer-banner {
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
}

/* Blauwe balk bovenaan */
.footer-top-bar {
    background-color: #800000;          
    color: #ffffff;
    padding: 10px 60px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-top-item i {
    font-size: 12px;
}

.footer-top-subtext {
    font-weight: normal;
}

/* Witte content-deel */
.footer-main {
    background-color: #ffffff;
    padding: 30px 60px 40px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    text-align: left;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
}

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

.footer-column li {
    margin-bottom: 4px;
    color: #444444;
}

/* Social icons */
.footer-social-column {
    margin-left: auto;       /* duwt naar rechterkant op brede schermen */
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-icons a {
    font-size: 20px;
    color: #444444;
    text-decoration: none;
}

.footer-social-icons a:hover {
    opacity: 0.7;
}

/* Onderste balk */
.footer-bottom-bar {
    border-top: 1px solid #e5e5e5;
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-trustpilot {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-trustpilot .fa-star {
    color: #00b67a;
}

.trustpilot-label {
    font-weight: 700;
}

.trustpilot-score {
    font-weight: 700;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-icon {
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
}

/* Responsief */
@media (max-width: 768px) {
    .footer-top-bar {
        padding: 10px 20px;
        gap: 20px;
    }

    .footer-main {
        padding: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 20px;
    }
}
