body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100vh;
}

.section {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px;
    padding-top: 50px;
}

.left {
    background-color: #000000;
    font-family: 'Verdana', sans-serif;
    color: #ff8200;
}

.right {
    background-color: #ed1c24;
    font-family: 'Myriad Pro', sans-serif;
    color: #FFFFFF;
}

h1 {
    font-size: 1.4em;
}

p, ul {
    font-size: 0.9em;
}

img {
    max-height: 150px;
    height: auto;
    max-width: 95%;
    padding-bottom: 50px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

li {
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 1.5em;
}

.left li {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="%23ff8200" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M6.002 11.41L3.607 9.014a.75.75 0 1 0-1.06 1.06L6.002 13.93a.75.75 0 0 0 1.06 0l6.364-6.364a.75.75 0 0 0-1.06-1.06l-5.364 5.364z"/></svg>');
}

.right li {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="%23ffffff" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M6.002 11.41L3.607 9.014a.75.75 0 1 0-1.06 1.06L6.002 13.93a.75.75 0 0 0 1.06 0l6.364-6.364a.75.75 0 0 0-1.06-1.06l-5.364 5.364z"/></svg>');
}

/* Form Styles */
.form-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    margin-right: 10px;
    border-radius: 5px;
    height: 40px; /* Aangepaste hoogte voor grotere velden */
    padding: 8px;
    border: none; /* Verwijdert randen */
    background-color: #fff; /* Zorgt voor een witte achtergrond */
}

.form-row textarea {
    height: 100px; /* Maakt het berichtveld groter */
}

.form-row input:last-child {
    margin-right: 0;
}

textarea {
    width: 100%;
    margin-bottom: 10px;
}

button {
    background-color: white;
    color: red;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }

    p, ul {
        font-size: 0.8em;
    }
}

@media (min-width: 1200px) {
    body {
        flex-wrap: nowrap;
    }

    h1 {
        font-size: 2em;
    }

    p, ul {
        font-size: 1.1em;
    }
}