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

.header {
    background: url('./images/banner.jpg') no-repeat center center;
    background-size: cover;
    height: 200px; /* Pas de hoogte aan zoals nodig */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.form-inline {
    display: flex;
    align-items: center;
}

.form-inline .form-control {
    margin-right: 10px;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    max-width: 1200px;
    margin: auto;
}

.card {
    margin: 20px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.footer-column {
    width: 100%;
    margin-bottom: 20px;
}

.footer h3 {
    border-bottom: 1px solid #4CAF50;
    padding-bottom: 10px;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
}

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

.product-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-image, .product-details {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.product-description {
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
}

.price-selector {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.price-selector div {
    flex: 1;
    margin: 5px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 5px;
}

.price-selector div:hover {
    background-color: #f2f2f2;
}

.selected-price {
    border: 2px solid #4CAF50;
}

.features {
    margin-top: 20px;
}

.features li {
    list-style: none;
    margin: 10px 0;
}

.features li::before {
    content: "\2713";
    color: green;
    margin-right: 10px;
}

.other-products {
    margin-top: 40px;
}

.other-products h3 {
    margin-bottom: 20px;
}

.other-products .card {
    margin: 10px;
    padding: 10px;
    text-align: center;
}
