/* ALGEMEEN */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background: #fffbe6;
    color: #333;
    padding-top: 70px; /* ruimte voor vaste header */
}
h1,h2,h3 { margin: 1em 0 0.5em 0; text-align: center; }
h1 { font-size: 2em; }
h2 { border-bottom: 2px solid #ffd37a; padding-bottom: 0.3em; margin-top: 2em; }
p, li { margin: 0.5em 1em; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff3c2;
    color: #333;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #ffd37a;
    z-index: 1000;
}

/* NAVIGATIE */
nav {
    margin-top: 10px;
    padding: 10px 20px;
    background: #fff8e6;
    border-bottom: 2px solid #ffd37a;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    z-index: 999;
}
nav a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}
nav a:hover { text-decoration: underline; }

/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}
.card {
    background: #fff;
    border: 1px solid #ffd37a;
    border-radius: 10px;
    padding: 15px;
    max-width: 300px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* TERUG NAAR BOVEN KNOP */
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
#topBtn:hover { background-color: #005fa3; }

/* RESPONSIEF */
@media (max-width:768px){
    .cards { flex-direction: column; align-items: center; }
    nav { flex-direction: column; align-items: center; }
}

<style>
.language-switch {
position:absolute;
top:15px;
right:20px;
}
.language-switch a{
margin-left:10px;
text-decoration:none;
font-weight:bold;
}
</style>