.over-ons-page {
    min-height: calc(100vh - 160px);
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fff7ed 0%, #e0ecff 100%);
}

/* TAG */
.over-ons-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #1f2937;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* HERO */
.over-ons-hero {
    text-align: center;
    padding: 48px 0 56px;
}

.over-ons-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
    color: #1f2937;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.over-ons-sub {
    font-size: 1.1rem;
    color: #374151;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* MISSIE */
.over-ons-missie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.missie-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.missie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.missie-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.missie-card h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.missie-card p {
    color: #4b5563;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

/* VERHAAL */
.over-ons-verhaal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 64px;
}

.verhaal-tekst h2 {
    font-size: 2rem;
    color: #1f2937;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.verhaal-tekst p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.verhaal-tekst .btn-primary {
    display: inline-flex;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, #c2410c, #9a3412);
    color: white;
    box-shadow: 0 10px 22px rgba(194, 65, 12, 0.22);
    transition: 0.25s ease;
    margin-top: 8px;
}

.verhaal-tekst .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(194, 65, 12, 0.28);
}

.verhaal-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verhaal-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.verhaal-visual img {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

/* TEAM */
.over-ons-team {
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff1e8;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .over-ons-verhaal {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }

    .verhaal-visual {
        display: none;
    }

    .over-ons-missie {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .over-ons-page {
        padding: 40px 0 60px;
    }

    .over-ons-hero h1 {
        font-size: 2rem;
    }

    .over-ons-sub {
        font-size: 1rem;
    }

    .verhaal-tekst h2 {
        font-size: 1.6rem;
    }

    .over-ons-verhaal {
        padding: 24px 20px;
        border-radius: 22px;
    }
}