* {
    box-sizing: border-box;
    margin: 0;
}

p, h1, h2, h3, a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

/* Header */

.navcontainer {
    height: 80px;
    display: flex;
    justify-content: flex-end;
}

.navcontainer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navcontainer nav ul li {
    display: inline-block;
    margin: 0 15px;
}

.navcontainer nav ul li a {
    text-decoration: none;
    color: black;
    line-height: 80px;
    font-weight: bolder;
    font-size: 1em;
}

/* Banner */

.banner img {
    width: 100%;
    max-height: 600px;
}

/* Index */

main {
    max-width: 1500px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
}

main h1 {
    font-size: 2.5em;
}

.intro {
    text-align: center;
}

/* Footer */

.footer {
    height: 80px;
    background-color: #EBDFE7;
    margin-top: 20px;
    display: flex;
}

.ag {
    flex: 50%;
    line-height: 80px;
    margin-left: 10px;
}

.ag a {
    text-decoration: none;
    color: black;
}

.copy {
    flex: 50%;
    line-height: 80px;
    margin-right: 10px;
    text-align: right;
}

/* Formulier */

.formbox {
    margin-top: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.formmid input[type="submit"] {
    width: 80%;
    height: 40px;
    border-radius: 4px;
    border-width: 1px;
    background-color: white;
    border-color: black;
    margin-top: 20px;
}

.form {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.formleft {
    flex: 50%;
    margin: 30px;
}

.formright {
    flex: 50%;
    margin: 30px;
}

.formmid {
    flex: 100%;
    width: 100%;
}

.form input[type="text"], input[type="email"], input[type="tel"] {
    display: block;
    resize: none;
    border-radius: 2px;
    border-width: 1px;
    height: 30px;
}

.form textarea {
    display: block;
    resize: none;
    border-radius: 2px;
    border-width: 1px;
    height: 100px;
    margin-top: 10px;
}

.form label {
    display: block;
    margin-top: 10px;
}

.formmid {
    text-align: center;
    margin: 15px;
}

/* Algemene Voorwaarden */

.agv {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.agv h1 {
    text-align: center;
}

.agv ul {
    margin-top: 20px;
    list-style: circle;
}

.agv p {
    margin-top: 20px;
    text-align: center;
}

/* FAQ */

.faq {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
}

.active, .faq:hover {
    background-color: #ccc;
}

.content {
    padding: 0 18px;
    overflow: hidden;
    background-color: #f1f1f1;
    width: 100%;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    margin-bottom: 10px;
}

.faq:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: black;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.faqcontainer {
    max-width: 1500px;
    margin: 0 auto;
}

.faqsection {
    max-width: 80%;
    margin: 0 auto;
}

.faqsection button {
    margin-bottom: 5px;
}

.faqsection h2 {
    margin: 15px 0;
}

.faqcontainer h1 {
    text-align: center;
    margin-bottom: 10px;
}

.faqimg {
    max-width: 50%;
    margin: 20px;
}

.faqsection h3 {
    margin: 10px 0;
}

.faqsection ul {
    list-style: decimal;
    margin: 15px 0;
}

/*RESPONSIVE*/

@media only screen and ( max-width: 800px ) {

    .form {
        display: block;
    }

    .formright, .formleft {
        margin: 0 auto;
        width: 50%;
    }

}

@media only screen and ( max-width: 600px ) {

    .navcontainer nav ul li {
        display: block;
        margin: 0;
    }

    .navcontainer {
        display: flex;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .navcontainer nav ul li a {
        line-height: 40px;
    }

    .footer {
        height: 100%;
        background-color: #EBDFE7;
        margin-top: 20px;
        display: block;
        text-align: center;
    }

}