/* Het Plan Sectie */
.plan {
    padding: 100px 20px;
    background-color: #f4f7f6; /* Een zachte, frisse tint die afwijkt van de rest */
    text-align: center;
}

.plan .container {
    max-width: 1400px;
    margin: 0 auto;
}

.plan h2 {
    font-size: 2.5rem;
    color: var(--hoofdkleur);
    margin-bottom: 10px;
}

.plan .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

/* De stappen naast elkaar */
.plan-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.plan-step {
    flex: 1;
    position: relative;
}

/* De grote cijfers */
.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accentkleur);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.plan-step h3 {
    color: var(--hoofdkleur);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.plan-step p {
    color: #555;
    line-height: 1.6;
}

/* De knop onderaan */
.plan-cta {
    margin-top: 40px;
}