/* Algemene Stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Home Sectie */
.hero {
    text-align: center;
    background-color: #5f9ea0;
    padding: 50px 0;
    color: white;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

/* Producten Sectie */
#producten {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

#producten h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.product {
    background-color: #f9f9f9;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    font-size: 20px;
    margin-top: 10px;
}

.product p {
    font-size: 18px;
    margin: 10px 0;
}

.product .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #5f9ea0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.product .btn:hover {
    background-color: #4b8b8b;
}

/* Contact Sectie */
#contact {
    background-color: #e4e4e4;
    padding: 40px;
}

#contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #5f9ea0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #4b8b8b;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
