/* De Waarde Sectie */
.waarde {
    padding: 100px 20px;
    background-color: white; /* Wit, als contrast met de grijze Stakes */
}

.waarde .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px; /* Ruimte tussen de tekst en de (toekomstige) afbeelding */
}

.waarde-content {
    flex: 1;
}

.waarde h2 {
    font-size: 2.5rem;
    color: var(--hoofdkleur);
    margin-bottom: 20px;
}

/* De lijst met voordelen */
.waarde-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.waarde-list li {
    margin-bottom: 30px;
    padding-left: 0;
}

.waarde-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--accentkleur);
    margin-bottom: 5px;
}

.waarde-list span {
    color: #555;
    line-height: 1.6;
}

/* Ruimtehouder voor een eventuele afbeelding rechts */
.waarde-visual {
    flex: 1;
    /* We halen de grijze achtergrondkleur en vaste hoogte hier weg */
}

.waarde-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Mooie afgeronde hoeken, net als de rest */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Een zachte schaduw voor diepte */
} {
    flex: 1;
    background-color: #f0f4f8; /* Een heel lichtblauwe gloed */
    height: 400px;
    border-radius: 20px;
}