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

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 36px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .container {
        padding: 10px;
    }
}

/* Basisstijlen voor het navigatiemenu */
nav {
    background-color: #333; /* Achtergrondkleur van de navigatiebalk */
    color: #fff; /* Tekstkleur */
    padding: 10px 0; /* Binnenafstand boven en onder */
}

nav ul {
    list-style: none; /* Verwijder de opsommingstekens van de lijst */
    padding: 0;
    text-align: center; /* Centreer de lijstitems */
}

nav ul li {
    display: inline; /* Plaats de lijstitems naast elkaar */
    margin-right: 20px; /* Ruimte tussen lijstitems */
}

nav a {
    text-decoration: none; /* Verwijder onderstreping van koppelingen */
    color: #fff; /* Tekstkleur van koppelingen */
    font-weight: bold; /* Vetgedrukte tekst */
    transition: color 0.3s; /* Overgang voor tekstkleur */
}

nav a:hover {
    color: #337ab7; /* Verander tekstkleur bij hover */
}

/* Responsieve stijlen */
@media screen and (max-width: 600px) {
    nav ul {
        text-align: center; /* Centreer lijstitems */
    }

    nav ul li {
        display: block; /* Maak lijstitems blok-elementen */
        margin-bottom: 10px; /* Ruimte tussen blokitems */
    }
}

.wrapper {
    position: fixed;
    bottom: 50px;
    right: -500px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
    right: 27px;
}
.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
header i {
    color: #337ab7;
    font-size: 32px;
}
header h2 {
    color: #333;
    font-weight: 500;
}
.wrapper .data {
    margin-top: 16px;
}
.wrapper .data p {
    color: #333;
    font-size: 16px;
}
.data p a {
    color: #337ab7;
    text-decoration: none;
}
.data p a:hover {
    text-decoration: underline;
}
.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #337ab7;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
    background-color: #034bf1;
}
#declineBtn {
    border: 2px solid #337ab7;
    background-color: #fff;
    color: #337ab7;
}
#declineBtn:hover {
    background-color: #337ab7;
    color: #fff;
}

#first-name-error, #last-name-error, #phone-error, #email-error {
    color: red;
}