/* Ruimte voor topbar */
.topbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000; /* Zorg ervoor dat het boven andere elementen blijft */
}

.container.werkwijze {
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(13, 27, 42, 0.7); /* Transparante achtergrond voor zichtbare sterren */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: #b3c5d9;
    text-align: left;
}

.container.werkwijze h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #b3c5d9;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 1.5em;
    color: #e0e5ec;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
}

.section p {
    line-height: 1.6;
    color: #d0d8e4;
    margin-bottom: 10px;
}

::-webkit-scrollbar {
    display: none;
}

.contenbox {
    flex: 1; /* Laat de contentbox de resterende ruimte innemen */
}

.section img {
    width: 30%; /* Pas aan naar wens */
    max-width: 200px;
    max-height: 300px;
    margin-right: 20px; /* Ruimte tussen afbeelding en contentbox */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Zorgt ervoor dat op kleinere schermen de afbeelding en contentbox onder elkaar komen */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        align-items: center;
    }

    .section img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80%; /* Bredere afbeelding op klein scherm */
    }

    .contenbox {
        width: 100%;
        text-align: center;
    }
}
