body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    background-color: #35424a;
    color: white;
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

header h1 a {
    color: white;
    text-decoration: none;
}

header h1 a:hover {
    text-decoration: underline;
}

nav {
    display: flex;
    align-items: center;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #5a6268;
}

main {
    padding: 2rem;
}

section {
    background-color: white;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    color: #35424a;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 1rem;
}

input, button, select {
    margin-top: 0.5rem;
    padding: 0.5rem;
    max-width: 300px;
}

.ruilKeuzeWrapper {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.ruilKeuzeWrapper select {
    flex-grow: 1;
    margin-right: 10px;
}

#ruilKeuzeButton {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#ruilKeuzeButton:hover {
    background-color: #5a6268;
}

#ruilKeuzeBevestiging {
    margin-top: 0.5rem;
    font-style: italic;
    color: #6c757d;
}

button[type="submit"] {
    background-color: #35424a;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background-color: #2c3e50;
}

.request {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

#disclaimer {
    font-size: 0.9em;
    color: #666;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #35424a;
    color: white;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* FAQ styles */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 5px;
}

.faq-answer {
    margin-left: 20px;
}

@media (max-width: 600px) {
    main {
        padding: 1rem;
    }
    
    input, button, select {
        max-width: 100%;
    }

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 1rem;
    }
}
