footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: rgba(0, 67, 106, 0.9);
    backdrop-filter: blur(4px); /* achtergrond blur header */
    -webkit-backdrop-filter: blur(4px); /* voor safari blur */
    color: white;
    border-radius: 999px;
    width: 95%;
    margin: 24px;
    min-width: 300px;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999999999999999999999999999999;
    vertical-align: middle;
}

@media (max-width:800px){
    footer {
        flex-direction: column;
        flex-wrap: no-wrap;
        text-align: center;
        gap: 16px;
    }
    
}

#left-footer {
    display: flex;
    flex-direction: row;
    vertical-align: middle;
    align-items: center;
    gap: 16px;
}

#social-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.social-icon-footer {
    width: 32px;
    height: 32px;
    object-fit: cover;
    overflow: visible;
}

.button-algemene-voorwaarden {
    background: var(--button-bg);
    color: white;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    border: none;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
    width: fit-content;
    text-align: center;
    align-self: center;
    justify-self: center;
}

.button-algemene-voorwaarden:hover {
    background: linear-gradient(135deg, #0D4A9B, #1155A0);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button-algemene-voorwaarden:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
