    /* ============================================================
    OVER ONS — page-over-ons.php
    Alle klassen beginnen met ld- (geen conflict met chota of thema).
    Kleurenpalet: #00394e · #be8757 · #ef7a35 · #507b90 · #ebdbcd
    ============================================================ */


    /* ── HERO ──────────────────────────────────────────────────── */

    #banner.ld-hero {
        height: auto;
        min-height: 280px;
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .ld-hero__title {
        color: #be8757;
        font-size: 44px;
        line-height: 56px;
        margin-bottom: 28px;
        max-width: 700px;
    }

    .ld-trustbar {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0;
        background: transparent;
        border-radius: 10px;
        max-width: 700px;
        margin-bottom: 12px;
    }

    .ld-trustbar__item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 15px;
        line-height: 22px;
    }

    .ld-trustbar__item strong {
        color: #fff;
        font-weight: 700;
    }

    .ld-trustbar__stars {
        color: #be8757;
        font-size: 17px;
        letter-spacing: 2px;
    }

    .ld-trustbar__icon {
        font-size: 16px;
        color: #be8757;
    }


    /* ── GEDEELDE SECTIE-STIJLEN ───────────────────────────────── */

    .ld-section {
        margin-bottom: 80px;
    }

    .ld-section__heading {
        color: #00394e;
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .ld-section__sub {
        color: #507b90;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 36px;
        max-width: 640px;
    }


    /* ── MISSIE ────────────────────────────────────────────────── */

    .ld-missie {
        padding-top: 20px;
    }

    .ld-missie__title {
        font-size: 32px;
        line-height: 42px;
        color: #00394e;
        margin-bottom: 24px;
    }

    .ld-missie__body {
        max-width: 680px;
        font-size: 19px;
        line-height: 32px;
        color: #00394e;
    }

    .ld-missie__body p {
        margin-bottom: 24px;
    }


    /* ── TEAMGRID ──────────────────────────────────────────────── */

    .ld-team__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 0;
    }

    .ld-team__card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 8px 8px 8px 32px;
        overflow: hidden;
        text-decoration: none;
        color: #00394e;
        border: 1px solid #dce6ec;
        box-shadow: 0 2px 8px rgba(0, 57, 78, 0.05);
        transition: box-shadow 0.22s, transform 0.22s;
    }

    .ld-team__card:hover {
        box-shadow: 0 10px 32px rgba(0, 57, 78, 0.13);
        transform: translateY(-3px);
        color: #00394e;
    }

    .ld-team__photo {
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        background: #e6ecef;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ld-team__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .ld-team__card:hover .ld-team__photo img {
        transform: scale(1.04);
    }

    .ld-team__avatar {
        font-size: 56px;
        color: #507b90;
        opacity: 0.4;
    }

    .ld-team__info {
        padding: 18px 18px 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .ld-team__name {
        font-size: 15px;
        font-weight: 700;
        color: #00394e;
        line-height: 21px;
    }

    .ld-team__title {
        font-size: 13px;
        color: #507b90;
        line-height: 19px;
    }

    .ld-team__link {
        display: inline-block;
        margin-top: 10px;
        font-size: 13px;
        font-weight: 700;
        color: #be8757;
        border-bottom: 1px dashed #be8757;
        transition: color 0.15s, border-color 0.15s;
        width: fit-content;
    }

    .ld-team__card:hover .ld-team__link {
        color: #ef7a35;
        border-color: #ef7a35;
    }


    /* ── REVIEWS ───────────────────────────────────────────────── */

    .ld-reviews__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 36px;
    }

    .ld-review {
        background: #fff;
        border: 1px solid #dce6ec;
        border-radius: 8px 8px 8px 32px;
        padding: 28px 28px 24px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 2px 8px rgba(0, 57, 78, 0.05);
    }

    .ld-review__stars {
        color: #be8757;
        font-size: 20px;
        letter-spacing: 3px;
    }

    .ld-review__quote {
        font-size: 16px;
        line-height: 27px;
        color: #00394e;
        font-style: italic;
        flex: 1;
        margin-bottom: 0;
    }

    .ld-review__footer {
        display: flex;
        flex-direction: column;
        gap: 3px;
        padding-top: 8px;
        border-top: 1px solid #edf1f4;
    }

    .ld-review__name {
        font-size: 15px;
        font-weight: 700;
        color: #00394e;
    }

    .ld-review__meta {
        font-size: 13px;
        color: #507b90;
    }

    .ld-reviews__more {
        text-align: center;
        margin-top: 0;
    }


    /* ── KOSTENMODEL ───────────────────────────────────────────── */

    .ld-kosten {
        padding: 44px 48px;
        background: #fff;
        border-radius: 8px 8px 8px 48px;
        border: 1px solid #dce6ec;
        box-shadow: 0 2px 12px rgba(0, 57, 78, 0.06);
    }

    .ld-kosten .ld-section__heading {
        margin-bottom: 16px;
    }

    .ld-kosten__body {
        max-width: 640px;
    }

    .ld-kosten__body>p {
        font-size: 18px;
        line-height: 30px;
        color: #00394e;
        margin-bottom: 28px;
    }

    .ld-kosten__list {
        list-style: none !important;
        margin: 0 !important;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .ld-kosten__list li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 18px;
        line-height: 27px;
        color: #00394e;
    }

    .ld-kosten__check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-width: 28px;
        background: #ef7a35;
        color: #fff;
        border-radius: 50%;
        font-size: 14px;
        font-weight: 700;
    }


    /* ── BUTTONS ───────────────────────────────────────────────── */

    .ld-btn {
        display: inline-block;
        padding: 13px 34px;
        font-family: 'Pulp Display', sans-serif;
        font-size: 17px;
        font-weight: 600;
        line-height: 24px;
        text-align: center;
        text-decoration: none;
        border-radius: 26px;
        border: 2px solid #00394e;
        transition: all 0.2s;
        cursor: pointer;
    }

    .ld-btn--primary {
        background: #00394e;
        color: #fff;
    }

    .ld-btn--primary:hover {
        background: transparent;
        color: #00394e;
    }

    .ld-btn--ghost {
        background: transparent;
        color: #507b90;
        border-color: #507b90;
    }

    .ld-btn--ghost:hover {
        background: #507b90;
        color: #fff;
    }

    .ld-btn--full {
        width: 100%;
        display: block;
    }


    /* ── STICKY SIDEBAR ────────────────────────────────────────── */

    .ld-sidebar-sticky {
        position: sticky;
        top: 24px;
    }

    .ld-sidebar__phone {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 16px 20px 14px;
        background: #00394e;
        border-radius: 10px 10px 0 0;
        text-align: center;
    }

    .ld-sidebar__phone-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .ld-sidebar__phone-number {
        font-size: 28px;
        font-weight: 700;
        color: #be8757;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.2s;
        line-height: 1.2;
    }

    .ld-sidebar__phone-number:hover {
        color: #ef7a35;
    }

    .ld-sidebar__divider {
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        margin: 0;
        padding: 6px 24px;
        background: rgba(239, 122, 53, 0.9);
        letter-spacing: 0.03em;
    }

    .ld-sidebar__form {
        margin-top: 0;
        margin-bottom: 0;
        padding: 16px 16px 20px;
        background: #ef7a35;
        border-radius: 0 0 10px 44px;
    }

    .ld-sidebar__form-intro {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        text-align: center;
        line-height: 24px;
    }

    .ld-field {
        margin-bottom: 14px;
    }

    .ld-field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #00394e;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .ld-field__optioneel {
        font-size: 11px;
        font-weight: 400;
        color: rgba(0, 57, 78, 0.55);
        text-transform: none;
    }

    .ld-field input,
    .ld-field textarea {
        width: 100%;
        margin-bottom: 0;
        padding: 10px 18px;
        background: #fff;
        color: #00394e;
        border: 1px solid rgba(0, 57, 78, 0.15);
        border-radius: 24px;
        font: 16px/24px 'Pulp Display', sans-serif;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .ld-field textarea {
        height: 100px;
        border-radius: 12px;
        resize: vertical;
    }

    .ld-field input:focus,
    .ld-field textarea:focus {
        outline: none;
        border-color: #00394e;
        box-shadow: 0 0 0 3px rgba(0, 57, 78, 0.1);
    }

    /* =========================================
    Gravity Forms Sidebar Compatibility
    ========================================= */
    .ld-sidebar__form .gform_wrapper {
        margin: 0 !important;
    }

    .ld-sidebar__form .gform_wrapper .gform_body {
        width: 100%;
    }

    .ld-sidebar__form .gform_wrapper .gfield {
        margin-bottom: 6px !important;
        padding: 0 !important;
    }

    .ld-sidebar__form .gform_wrapper .ginput_complex.ginput_container_name {
        display: flex !important;
        gap: 10px !important;
    }

    .ld-sidebar__form .gform_wrapper .ginput_complex.ginput_container_name>span {
        flex: 1 !important;
        width: auto !important;
        padding: 0 !important;
    }

    .ld-sidebar__form .gform_wrapper .ginput_complex label {
        display: none !important;
    }

    .ld-sidebar__form .gform_wrapper .gfield_label {
        display: block !important;
        margin-bottom: 4px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #fff !important;
    }

    .ld-sidebar__form .gform_wrapper .gfield_required {
        color: rgba(255, 255, 255, 0.6) !important;
        padding-left: 4px;
    }

    .ld-sidebar__form .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
    .ld-sidebar__form .gform_wrapper textarea {
        width: 100% !important;
        padding: 7px 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        font-family: inherit !important;
        font-size: 13px !important;
        transition: border-color 0.2s, background 0.2s !important;
    }

    .ld-sidebar__form .gform_wrapper textarea {
        height: 48px !important;
        resize: none !important;
    }

    .ld-sidebar__form .gform_wrapper input::placeholder,
    .ld-sidebar__form .gform_wrapper textarea::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .ld-sidebar__form .gform_wrapper input:focus,
    .ld-sidebar__form .gform_wrapper textarea:focus {
        outline: none !important;
        border-color: #fff !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .ld-sidebar__form .gform_wrapper .gform_footer {
        padding: 0 !important;
        margin-top: 10px !important;
    }

    .ld-sidebar__form .gform_wrapper .gform_button {
        display: inline-block !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-family: 'Syne', sans-serif !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        border: none !important;
        text-align: center !important;
        text-decoration: none !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
        background: #00394e !important;
        color: #fff !important;
    }

    .ld-sidebar__form .gform_wrapper .gform_button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 57, 78, 0.15) !important;
        background: #002d3e !important;
    }

    .ld-sidebar__form .ld-btn--primary {
        margin-top: 8px;
        background: #00394e;
        border-color: #00394e;
        color: #fff;
    }

    .ld-sidebar__form .ld-btn--primary:hover {
        background: transparent;
        color: #00394e;
    }

    .ld-sidebar__trust {
        margin-top: 10px;
        font-size: 11px;
        line-height: 16px;
        color: rgba(0, 57, 78, 0.7);
        text-align: center;
        margin-bottom: 0;
    }

    #side .ld-sidebar-sticky>.textwidget:first-child {
        border-radius: 0 0 10px 44px;
    }


    /* ── RESPONSIVE ────────────────────────────────────────────── */

    @media screen and (max-width: 1199px) {
        .ld-team__grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .ld-reviews__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 959px) {
        .ld-hero__title {
            font-size: 34px;
            line-height: 44px;
        }

        .ld-team__grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .ld-reviews__grid {
            grid-template-columns: 1fr;
        }

        .ld-kosten {
            padding: 28px 24px;
        }

        #side {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }

        .ld-sidebar-sticky {
            position: static;
            margin-top: 48px;
        }

        .ld-section {
            margin-bottom: 60px;
        }
    }

    @media screen and (max-width: 567px) {
        .ld-hero__title {
            font-size: 28px;
            line-height: 36px;
        }

        #banner.ld-hero {
            padding-top: 32px;
            padding-bottom: 40px;
        }

        .ld-trustbar {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
            padding: 14px 0;
        }

        .ld-team__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .ld-reviews__grid {
            gap: 16px;
        }

        .ld-sidebar__phone {
            padding: 14px 16px 12px;
        }

        .ld-sidebar__phone-number {
            font-size: 24px;
        }

        .ld-sidebar__form {
            padding: 16px 16px 20px;
            border-radius: 0 0 16px 16px;
            /* Maakt de onderkant symmetrisch en minder lomp op smalle schermen */
        }

        .ld-sidebar__form-intro {
            font-size: 16px;
        }

        .ld-section {
            margin-bottom: 48px;
        }

        .ld-kosten {
            padding: 24px 18px;
        }
    }

    .ld-teamdetail {
        display: flex;
        gap: 48px;
        align-items: flex-start;
    }

    .ld-teamdetail__photo {
        flex-shrink: 0;
        width: 280px;
        border-radius: 8px 8px 8px 32px;
        overflow: hidden;
        background: #e6ecef;
        border: 1px solid #dce6ec;
    }

    .ld-teamdetail__content {
        flex: 1;
    }

    @media screen and (max-width: 767px) {
        .ld-teamdetail {
            flex-direction: column;
            gap: 32px;
        }

        .ld-teamdetail__photo {
            width: 100%;
            max-width: 320px;
        }
    }