body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f0f4f8;
    color: #222;
}
header {
    background-color: #003366;
    color: white;
    padding: 20px;
}
header nav a {
    margin-right: 15px;
    color: white;
    text-decoration: none;
}
main {
    padding: 20px;
}
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
}
.offerte-button {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 10px 15px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}


.logo {
    height: 80px;
    margin-bottom: 10px;
}


form {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 20px;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    text-align: right;
    padding-right: 10px;
    white-space: nowrap;
}

form input, form textarea {
    width: 100%;
    padding: 5px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
}

form button {
    grid-column: 2;
    padding: 10px 15px;
    font-size: 1em;
    background-color: #FFD700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* Navigatie met logo links en links uitgelijnde menuknoppen */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header img.logo {
    height: 60px;
    margin-right: 20px;
}

header h1, header p {
    display: none; /* verberg titel en slogan in header */
}

nav {
    display: flex;
    gap: 15px;
}


.slider {
    text-align: center;
    margin-bottom: 20px;
}
.slider img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Sticky footer fix */
html, body {
    height: 100%;
    margin: 0;
}
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
footer {
    margin-top: auto;
}
