/* Pro-Monty — over.html stijlen */

.over-hero {
    background: var(--slate-blue);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}
.over-avatar { font-size: 3.5rem; flex-shrink: 0; }
.over-titel {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.over-sub { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.over-sectie {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}
.over-sectie h2 {
    color: var(--slate-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.over-sectie p, .over-sectie li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 10px;
}
.over-sectie ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
.over-sectie strong { color: var(--slate-blue); }
.over-sectie em { color: var(--coral-orange); font-style: normal; font-weight: 600; }
.over-disclaimer-sectie {
    background: #FFF8F0;
    border-left: 4px solid var(--coral-orange);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
}
.over-disclaimer-sectie h2 {
    color: var(--slate-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.over-disclaimer-sectie p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 8px;
}
@media (max-width: 600px) {
    .over-hero { flex-direction: column; text-align: center; }
}
