/* DokterZoeker CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}
header, footer {
    max-width: 1024px;
    background-color: #4472C4;
    color: white;
    margin:0 auto;
    font-size: 15px;
    padding-top: 25px;
}

header {
    height: 140px;
}

footer {
    height: 70px;
}

/* Container die de max-breedte beheert */
.container {
    max-width: 1024px;
    margin: 0 auto;
}
header .container,
footer .container {
    text-align: center;
}
main {
    background: white;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.image-container {
    flex: 1 1 250px;
}
.image-container img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    outline: none;
}
.content {
    flex: 2 1 400px;
    padding: 1rem;
}
p {
    line-height: 1.6;
}
form {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
label {
    flex: 1 1 100%;
    font-weight: bold;
}
input[type="text"] {
    flex: 0 0 auto;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 150px;
}
button {
    background-color: #4472C4;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #005577;
}

@media (max-width: 700px) {
    main {
        flex-direction: column;
    }
    .content {
        padding: 1rem;
    }
    form {
        flex-direction: column;
        align-items: flex-start;
    }
    button {
        width: 100%;
    }
}

#frontpage-image {
    float: right;
    padding-right: 25px;
    height: 100px;
}
