* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(background.png);
    background-size: cover;
    background-position: center;
    padding: 10% 10%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h3 {
    margin-top: 0;
    font-weight: 400;
    font-size: 30px;
}

.hero h1 {
    margin-top: 10px;
    font-size: 40px;
}

.hero p {
    margin: 10px 0 30px;
}

/* Formulier stijl */
form {
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 10px;
    margin-top: 20px;
}

form input {
    border: 1px solid #ccc;
    outline: none;
    padding: 10px 20px;
    height: 50px;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
}

form button {
    background: #DA973B;
    border: none;
    outline: none;
    height: 50px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form button img {
    width: 30px;   /* Pas de breedte aan */
    height: 30px;  /* Pas de hoogte aan */
}

/* Succesbericht */
span {
    color: #DA973B;
    margin-top: 10px;
    display: block;
}

/* Media Queries voor Mobiele Schermen */
@media screen and (max-width: 768px) {
    .hero h3 {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    form {
        flex-direction: column;
    }

    form input {
        font-size: 14px;
        padding: 8px 20px;
    }

    form button {
        font-size: 16px;
        height: 50px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero h3 {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    form input {
        font-size: 12px;
        padding: 8px 10px;
    }

    form button {
        font-size: 14px;
        height: 45px;
    }
}
