.next-steps {
    padding: 60px 0;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px; /* ruimte tussen de drie blokken */
    margin-top: 50px;
    align-items: start;
}

.next-step-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2f2f2f;
    font-weight: 700;
}

/* bullets dichter op elkaar */
.next-step-column ul {
    margin: 0;
    padding-left: 22px;
}

.next-step-column li {
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 16px;
    color: #444;
}

/* responsive */
@media (max-width: 992px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}