#footer-note {
    text-align: center; /* Centreert de tekst */
    padding: 20px 0; /* Geeft ruimte boven en onder de tekst */
    background-color: #ffffff; /* Witte achtergrond */
}

#footer-note p {
    font-size: 12px; /* Kleinere tekstgrootte */
    color: #555; /* Medium grijs */
    margin: 0; /* Verwijdert de standaard marges */
}

#footer-note a {
    color: #d80000; /* Rode kleur voor de link */
    text-decoration: none; /* Verwijdert de onderstreping van de link */
}

#footer-note a:hover {
    text-decoration: underline; /* Onderstreept de link bij hover voor duidelijkheid */

}


#contact-note {
    text-align: center; /* Centreert de tekst */
    padding: 20px 0; /* Geeft ruimte boven en onder de tekst */
    background-color: #ffffff; /* Witte achtergrond */
}

#contact-note p {
    font-size: 12px; /* Kleinere tekstgrootte */
    color: #555; /* Medium grijs */
    margin: 0; /* Verwijdert de standaard marges */
}

#contact-note a {
    color: #d80000; /* Rode kleur voor de link */
    text-decoration: none; /* Verwijdert de onderstreping van de link */
}

#contact-note a:hover {
    text-decoration: underline; /* Onderstreept de link bij hover voor duidelijkheid */

}

contact {
    padding: 20px 5%;
    background-color: #333; /* donkergrijs */
    color: #fff; /* wit */
    text-align: center;
}

.contact-info, .policies {
    margin-bottom: 10px;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #f4f4f4; /* Optionele achtergrondkleur */
}

.hero img {
    max-width: 25%;  /* Zorgt ervoor dat de afbeelding nooit breder wordt dan zijn container */
    height: auto;     /* Behoudt de aspectratio */
}



a {
    text-decoration: none;
    color: #d32f2f; /* rood */
    transition: color 0.3s;
}

a:hover {
    color: #b71c1c; /* donkerrood bij hover */
}

.contact-info, .policies {
    margin-bottom: 10px;
}

footer a {
    margin: 0 10px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d32f2f; /* rood */
    color: #fff; /* wit */
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #b71c1c; /* donkerrood bij hover */
}

/* Responsieve break-point */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
	
.hero img {
    max-width: 100%;  /* Zorgt ervoor dat de afbeelding nooit breder wordt dan zijn container */
    height: auto;     /* Behoudt de aspectratio */
}

a {
    text-decoration: none;
    color: #d32f2f; /* rood */
    transition: color 0.3s;
}

a:hover {
    color: #b71c1c; /* donkerrood bij hover */
}