/* Algemene stijlen voor de hele website */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header stijlen */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Hoofdpagina sectie */
main {
    margin: 20px;
}

/* Hero sectie voor de landing page */
.hero {
    background-color: #eee;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2em;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #555;
}

/* Features sectie */
.features {
    text-align: left;
    background-color: #fff;
    padding: 20px;
}

.features h2 {
    color: #333;
}

.features ul {
    list-style-type: square;
    padding-left: 20px;
}

.features li {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

/* Footer stijlen */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
