/* Zorg dat layout overeenkomt met beschikbaarheid */

/* Container voor de hoofdinhoud */
.home-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

/* Gemeenschappelijke stijl voor secties */
.section {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 20px; /* Ruimte tussen de secties */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stijl voor afbeeldingen in secties */
.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Titelstijl */
.section-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Tekststijl */
.section-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Knopstijl */
.section-button {
    display: inline-block;
    background-color: #2eced5;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #1db7c2;
}
