body {
    font-family: Arial, sans-serif;
    line-height: 1.6; /* Verhoogde regelafstand voor betere leesbaarheid */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #004080; /* Donkere, luxueuze blauwe kleur voor de header */
    color: white;
    padding: 10px 0;
}

header .logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #ADD8E6; /* Lichtere blauwe kleur voor links in de navigatie */
    text-decoration: none;
}

nav a:hover {
    color: #FFFFFF; /* Witte kleur bij hover voor extra zichtbaarheid */
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    color: #004080; /* Donkere, luxere blauwe kleur voor subkoppen */
    margin-top: 20px;
}

p {
    margin-bottom: 15px; /* Ruimte tussen paragrafen */
}

a {
    color: #1E90FF; /* Lichtere blauwe kleur voor links in de content */
    text-decoration: none;
}

a:hover {
    color: #004080; /* Donkere kleur bij hover voor contrast */
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #1E90FF; /* Lichtere blauwe kleur voor de terug-knop */
    text-decoration: none;
}

.back-link:hover {
    color: #004080; /* Donkere kleur bij hover */
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #004080; /* Donkere, luxueuze blauwe kleur voor de footer */
    color: white;
}

footer a {
    color: #ADD8E6; /* Lichtere blauwe kleur voor links in de footer */
}

footer a:hover {
    color: #FFFFFF; /* Witte kleur bij hover voor zichtbaarheid */
}

.hero {
    background-color: #004060; /* Donkere, luxueuze blauwe achtergrond */
    color: white; /* Witte tekst */
    text-align: center; /* Tekst centreren */
    padding: 50px 20px; /* Ruimte boven en onder */
    margin-bottom: 20px; /* Ruimte onder de hero sectie */
}

.hero h1 {
    font-size: 2.5em; /* Grotere lettergrootte voor de hoofdtitel */
    margin-bottom: 10px; /* Ruimte onder de titel */
}

.hero p {
    font-size: 1.2em; /* Grotere lettergrootte voor de paragraaf */
    margin-bottom: 20px; /* Ruimte onder de paragraaf */
}

.discover-button {
    background-color: white; /* Witte achtergrond voor de knop */
    color: #004080; /* Donkere, luxueuze blauwe tekst voor de knop */
    padding: 10px 20px; /* Ruimte binnen de knop */
    text-decoration: none; /* Geen onderlijn */
    border-radius: 5px; /* Afgeronde hoeken */
    font-weight: bold; /* Dikkere tekst */
}

.discover-button:hover {
    background-color: #004080; /* Donkere kleur bij hover */
    color: white; /* Witte tekst bij hover */
}