/* Algemene stijl en resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Je kunt hier een ander lettertype kiezen */
}

body {
    background-color: #fff;
    color: #333; /* donkergrijs voor tekst */
}

a {
    text-decoration: none;
    color: #d32f2f; /* rood */
    transition: color 0.3s;
}

a:hover {
    color: #b71c1c; /* donkerrood bij hover */
}

/* Header-styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #333; /* donkergrijs */
}

header img {
    width: 150px; /* aanpassen afhankelijk van logo-afmetingen */
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

nav li {
    padding: 5px 10px;
}

/* Hero-sectie */
#home {
    background-color: #e0e0e0; /* lichtgrijs */
    padding: 50px 5%;
    text-align: center;
}

#home h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.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 */
}

/* Functies-sectie */
#functies {
    padding: 50px 5%;
}

#functies ul {
    list-style-type: none;
    margin-top: 20px;
}

#functies li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0; /* lichtgrijs */
}

/* Prijzen-sectie */
#prijzen {
    background-color: #f5f5f5; /* zeer lichtgrijs */
    padding: 50px 5%;
}

#prijzen h2 {
    margin-top: 20px;
	margin-bottom: 10px;
	color: #d80000;  /* rood, zoals eerder genoemd */
}

#prijzen h3 {
    margin-top: 20px;
	margin-bottom: 10px;
}

/* Prijzen-sectie */
#target-audience {
    background-color: #f5f5f5; /* zeer lichtgrijs */
    padding: 50px 5%;
}

#target-audience h2 {
	color: #d80000;  /* rood, zoals eerder genoemd */
    margin-top: 20px;
	margin-bottom: 10px;
}

#target-audience h3 {
    margin-top: 20px;
	margin-bottom: 10px;
}

/* Demo-sectie */
#demo {
    background-color: #e0e0e0; /* zeer lichtgrijs */
    padding: 50px 5%;
}

#demo h2 {
	color: #d80000;  /* rood, zoals eerder genoemd */
    margin-top: 20px;
	margin-bottom: 10px;
}

#demo h3 {
    margin-top: 20px;
	margin-bottom: 10px;
}

/* Support-sectie */
#support {
    padding: 50px 5%;
	
}

#support h2 {
	color: #d80000;  /* rood, zoals eerder genoemd */
    margin-top: 20px;
	margin-bottom: 10px;
}
/* Login-sectie */
#login {
    background-color: #f5f5f5; /* lichtgrijs */
    padding: 50px 5%;
    text-align: center;
}

#login form {
    max-width: 400px;
    margin: 0 auto;
}

#login label, #login input {
    width: 100%;
    margin-bottom: 20px;
}


/* Footer */
footer {
    padding: 20px 5%;
    background-color: #333; /* donkergrijs */
    color: #fff; /* wit */
    text-align: center;
}

.contact-info, .policies {
    margin-bottom: 10px;
}

footer a {
    margin: 0 10px;
}

	/* Desktop navigatie */
.desktop-nav {
    display: block;
}

.mobile-nav {
    display: none;
}

/* Mobile navigatie stijl */
.menu-icon .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
}

.nav-list {
    display: none;
    list-style-type: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #333;
    border-radius: 5px;
}

.nav-list li {
    border-bottom: 1px solid #555;
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-list a {
    display: block;
    padding: 10px 15px;
    color: #fff;
}


#privacy-policy {
    margin-bottom: 40px;
}

#privacy-policy h1 {
    color: #d80000; /* Rood */
    font-size: 28px;
    border-bottom: 2px solid #d80000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#privacy-policy h2 {
    color: #555; /* Medium grijs */
    font-size: 24px;
    margin-top: 30px;
}

#privacy-policy p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff; /* Witte achtergrond voor de content */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Een subtiele schaduw voor diepte */
}

#app-features {
    /* background-color: #f4f4f4;  /* lichte grijze achtergrond voor onderscheid */
    padding: 50px 5%;
    margin: 20px 0;
    border-radius: 5px;
}

#app-features h2 {
    color: #d80000;  /* rood, zoals eerder genoemd */
    font-size: 24px;
    margin-bottom: 10px;
}

#app-features p {
    /*color: #333;  /* donkergrijs */
    font-size: 16px;
    margin-bottom: 15px;
}

.feature-list {
    list-style-type: disc; /* Bullet point stijl */
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    color: #555;  /* medium grijs */
}

#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 */
}


.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.feature-table td {
    border: 1px solid #d80000; /* Rode rand */
    padding: 10px;
}

.feature-table td:first-child {
    font-weight: bold;
    color: #d80000; /* Rode kleur voor functie naam */
    width: 25%; /* Hiermee zorg je ervoor dat de eerste kolom een vaste breedte heeft */
}

#demo img {
    /* De afbeelding neemt 100% van de breedte van zijn container */
    max-width: 100%;       /* Zorgt ervoor dat de afbeelding nooit groter wordt dan zijn originele grootte */
    height: auto;          /* Zorgt ervoor dat de hoogte zich automatisch aanpast en de verhoudingen behoudt */
}

/* Responsieve break-point */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

#home img {
    width: 100%;           /* De afbeelding neemt 100% van de breedte van zijn container */
    max-width: 100%;       /* Zorgt ervoor dat de afbeelding nooit groter wordt dan zijn originele grootte */
    height: auto;          /* Zorgt ervoor dat de hoogte zich automatisch aanpast en de verhoudingen behoudt */
}

#demo img {
    width: 100%;           /* De afbeelding neemt 100% van de breedte van zijn container */
    max-width: 100%;       /* Zorgt ervoor dat de afbeelding nooit groter wordt dan zijn originele grootte */
    height: auto;          /* Zorgt ervoor dat de hoogte zich automatisch aanpast en de verhoudingen behoudt */
}






