/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Top Nav */
.top-nav {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 0;
}

.top-nav .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.top-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.top-nav ul li {
    margin: 0 15px;
}

.top-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.top-nav ul li a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

header .logo {
    max-width: 200px;
    margin-bottom: 20px;
}

header p {
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #e65100;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #ff9800;
}

/* Producten Section */
.producten {
    padding: 60px 0;
    background-color: #fff;
}

.producten .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.producten h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.product-card {
    display: inline-block;
    width: 30%;
    margin: 0 1.5%;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 20px;
    font-size: 22px;
}

.product-card p {
    font-size: 18px;
    margin: 10px 0;
}

.product-card button {
    background-color: #e65100;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.product-card button:hover {
    background-color: #ff9800;
}

/* Over Ons Section */
.over {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.over p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    background-color: #e65100;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
