/* De Stakes Sectie */
.stakes {
    background-color: #f9f9f9; /* Een hele lichte grijstint voor het contrast */
    padding: 80px 20px;
    text-align: center;
}

.stakes .container {
    max-width: 1400px;
    margin: 0 auto;
}

.stakes h2 {
    font-size: 2.5rem;
    color: var(--hoofdkleur);
    margin-bottom: 10px;
}

.stakes .subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

/* De drie punten naast elkaar zetten */
.stakes-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.stake-item {
    flex: 1; /* Zorgt dat alle drie de blokjes even breed zijn */
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Een heel zacht schaduwtje */
}

.stake-item h3 {
    color: var(--accentkleur);
    margin-bottom: 15px;
}