.footer-wrapper {
    position: relative;
    background-color: #007bb5 !important;
    display: flex;              /* flex ipv inline-flex */
    flex-direction: column;     /* tekst boven, afbeelding onder */
    justify-content: center;
    box-sizing: border-box;
    border-radius: 0.4rem;
    gap: 1rem; /* ruimte tussen tekst en afbeelding */
    width: 80rem !important;
    min-height: 400px !important;
    border-radius: 25px !important;
}

.footer-content {
    display: flex;
    flex-direction: column;     /* tekst boven knop */
    justify-content: center;
    gap: 1rem;
}

img {
    display: flex;
    max-width: 300px;
    height: auto;
}

.footer-button {
    border-radius: 0.4rem;
    font-size: 1.9rem;
    font-weight: bold;
    white-space: normal;
    background-color: #e6007e !important;
    border-radius: 10px;
    display: flex !important;
    margin: 0 auto;
}

.btn-light
{
    background-color: #e6007e !important;
    border: none !important;
    color: white !important;
}

.footer-button:hover {
    background-color: #bf006c !important;
    cursor: pointer;
}
.footer-button:focus {
    outline: none;
    box-shadow: none;
}

/* Op mobiel terug naar onder elkaar */
@media (max-width: 576px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-button {
        width: 100%;
        font-size: 1.1rem;
    }

    img {
        display: none;
    }
}
