
        /* ============================================
           NFP OVER ONS — DESIGN TOKENS
           Matches Elementor global kit exactly
           ============================================ */
        :root {
            --nfp-red: #C50F0F;
            --nfp-red-dark: #940B0B;
            --nfp-text: #1F1F1F;
            --nfp-text-secondary: #6B7280;
            --nfp-bg: #FFFFFF;
            --nfp-bg-alt: #F5F5F5;
            --nfp-border: #E5E7EB;
            --nfp-black: #000000;
            --nfp-radius: 4px;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-gutter: stable;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.6;
            color: var(--nfp-text);
            background-color: var(--nfp-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ============================================
           LAYOUT
           ============================================ */
        .nfp-about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nfp-about-section {
            padding: 80px 0;
        }

        .nfp-about-section--alt {
            background-color: var(--nfp-bg-alt);
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4 {
            color: var(--nfp-text);
            font-weight: 700;
            line-height: 1.2;
        }

        /* ============================================
           ANIMATIONS — subtle, professional
           ============================================ */
        @keyframes nfp-fade-up {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes nfp-line-expand {
            from { width: 0; }
            to { width: 48px; }
        }

        @keyframes nfp-count-bar {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nfp-animate {
            opacity: 0;
            animation: nfp-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .nfp-animate--d1 { animation-delay: 0.1s; }
        .nfp-animate--d2 { animation-delay: 0.2s; }
        .nfp-animate--d3 { animation-delay: 0.3s; }
        .nfp-animate--d4 { animation-delay: 0.4s; }
        .nfp-animate--d5 { animation-delay: 0.5s; }
        .nfp-animate--d6 { animation-delay: 0.6s; }

        /* ============================================
           1. HERO SECTION
           ============================================ */
        .nfp-hero {
            padding: 100px 0 80px;
            position: relative;
        }

        .nfp-hero__eyebrow {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--nfp-red);
            margin-bottom: 20px;
        }

        .nfp-hero__title {
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.08;
            color: var(--nfp-text);
            margin-bottom: 24px;
            max-width: 700px;
        }

        .nfp-hero__subtitle {
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 1.7;
            color: var(--nfp-text-secondary);
            max-width: 560px;
        }

        /* Red accent line under hero */
        .nfp-hero__accent {
            display: block;
            width: 48px;
            height: 3px;
            background-color: var(--nfp-red);
            margin-top: 40px;
            animation: nfp-line-expand 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
        }

        /* ============================================
           2. ONS VERHAAL
           ============================================ */
        .nfp-story {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 60px;
            align-items: start;
        }

        .nfp-story__label {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--nfp-text);
            padding-top: 4px;
            /* Thin right border as visual anchor */
            border-right: 1px solid var(--nfp-border);
            padding-right: 40px;
        }

        .nfp-story__content p {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: var(--nfp-text);
            margin-bottom: 20px;
        }

        .nfp-story__content p:last-child {
            margin-bottom: 0;
        }

        .nfp-story__content strong {
            font-weight: 600;
            color: var(--nfp-text);
        }

        /* ============================================
           3. STATS BAR
           ============================================ */
        .nfp-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border-top: 1px solid var(--nfp-border);
            border-bottom: 1px solid var(--nfp-border);
        }

        .nfp-stat {
            padding: 48px 32px;
            text-align: center;
            position: relative;
        }

        /* Vertical divider between stats */
        .nfp-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 48px;
            width: 1px;
            background-color: var(--nfp-border);
        }

        .nfp-stat__number {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            color: var(--nfp-text);
            margin-bottom: 8px;
        }

        /* Only the first stat number gets the red — draws the eye */
        .nfp-stat:first-child .nfp-stat__number {
            color: var(--nfp-red);
        }

        .nfp-stat__label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--nfp-text-secondary);
            letter-spacing: 0.02em;
        }

        /* ============================================
           4. WAT WIJ DOEN
           ============================================ */
        .nfp-services__header {
            margin-bottom: 56px;
            max-width: 640px;
        }

        .nfp-services__eyebrow {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--nfp-red);
            margin-bottom: 16px;
        }

        .nfp-services__title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .nfp-services__intro {
            font-size: 1.0625rem;
            color: var(--nfp-text-secondary);
            line-height: 1.7;
        }

        .nfp-services__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background-color: var(--nfp-border);
            border: 1px solid var(--nfp-border);
        }

        .nfp-service {
            background-color: var(--nfp-bg);
            padding: 36px 32px;
            transition: background-color 0.25s ease;
        }

        .nfp-service:hover {
            background-color: var(--nfp-bg-alt);
        }

        .nfp-service__name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--nfp-text);
            margin-bottom: 8px;
        }

        .nfp-service__desc {
            font-size: 0.875rem;
            color: var(--nfp-text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           5. MONTAGE
           ============================================ */
        .nfp-montage {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .nfp-montage__eyebrow {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--nfp-red);
            margin-bottom: 16px;
        }

        .nfp-montage__title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .nfp-montage__text {
            font-size: 1.0625rem;
            color: var(--nfp-text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .nfp-montage__card {
            background-color: var(--nfp-bg-alt);
            border: 1px solid var(--nfp-border);
            border-radius: var(--nfp-radius);
            padding: 36px;
        }

        .nfp-montage__card-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nfp-montage__card-title::before {
            content: '';
            width: 3px;
            height: 20px;
            background-color: var(--nfp-red);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .nfp-montage__detail {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.9375rem;
            color: var(--nfp-text);
            align-items: flex-start;
        }

        .nfp-montage__detail:last-child {
            margin-bottom: 0;
        }

        .nfp-montage__detail-icon {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 3px;
            color: var(--nfp-text-secondary);
        }

        .nfp-montage__detail-label {
            font-weight: 500;
            color: var(--nfp-text-secondary);
            min-width: 60px;
        }

        /* ============================================
           6. WAAROM NEEDFORPARTS
           ============================================ */
        .nfp-why__header {
            text-align: center;
            margin-bottom: 56px;
        }

        .nfp-why__eyebrow {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--nfp-red);
            margin-bottom: 16px;
        }

        .nfp-why__title {
            font-size: 2rem;
            font-weight: 700;
        }

        .nfp-why__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .nfp-why-item {
            position: relative;
        }

        /* Thin top accent line — only first item is red */
        .nfp-why-item::before {
            content: '';
            display: block;
            width: 32px;
            height: 2px;
            background-color: var(--nfp-border);
            margin-bottom: 24px;
        }

        .nfp-why-item:first-child::before {
            background-color: var(--nfp-red);
        }

        .nfp-why-item__title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .nfp-why-item__text {
            font-size: 0.9375rem;
            color: var(--nfp-text-secondary);
            line-height: 1.65;
        }

        /* ============================================
           7. BUSINESS INFO
           ============================================ */
        .nfp-business {
            border-top: 1px solid var(--nfp-border);
            padding: 48px 0;
        }

        .nfp-business__grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 60px;
            align-items: start;
        }

        .nfp-business__label {
            font-size: 0.8125rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--nfp-text);
            padding-top: 2px;
        }

        .nfp-business__details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px 60px;
        }

        .nfp-business__item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .nfp-business__item-label {
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--nfp-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .nfp-business__item-value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--nfp-text);
        }

        .nfp-business__item-value a {
            color: var(--nfp-text);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nfp-business__item-value a:hover {
            color: var(--nfp-red);
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .nfp-cta {
            text-align: center;
            padding: 80px 0;
            background-color: var(--nfp-text);
            color: #FFFFFF;
        }

        .nfp-cta__title {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .nfp-cta__subtitle {
            font-size: 1.0625rem;
            color: #9CA3AF;
            margin-bottom: 32px;
        }

        .nfp-cta__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background-color: var(--nfp-red);
            color: #FFFFFF;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9375rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--nfp-radius);
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .nfp-cta__btn:hover {
            background-color: var(--nfp-red-dark);
            transform: translateY(-1px);
        }

        .nfp-cta__btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .nfp-cta__btn:hover svg {
            transform: translateX(3px);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .nfp-why__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .nfp-montage {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

        @media (max-width: 768px) {
            .nfp-about-section {
                padding: 56px 0;
            }

            .nfp-hero {
                padding: 64px 0 56px;
            }

            .nfp-story {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .nfp-story__label {
                border-right: none;
                padding-right: 0;
                border-bottom: 1px solid var(--nfp-border);
                padding-bottom: 16px;
            }

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

            .nfp-stat:nth-child(2)::after {
                display: none;
            }

            .nfp-stat {
                padding: 32px 20px;
            }

            .nfp-stat__number {
                font-size: 2rem;
            }

            .nfp-services__grid {
                grid-template-columns: 1fr;
            }

            .nfp-why__grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .nfp-business__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .nfp-business__details {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .nfp-about-container {
                padding: 0 16px;
            }

            .nfp-stats {
                grid-template-columns: 1fr 1fr;
            }

            .nfp-stat::after {
                display: none;
            }
        }

        /* ============================================
           SCROLL ANIMATIONS (Intersection Observer)
           ============================================ */
        .nfp-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nfp-reveal--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nfp-reveal--d1 { transition-delay: 0.08s; }
        .nfp-reveal--d2 { transition-delay: 0.16s; }
        .nfp-reveal--d3 { transition-delay: 0.24s; }
        .nfp-reveal--d4 { transition-delay: 0.32s; }
        .nfp-reveal--d5 { transition-delay: 0.40s; }
        .nfp-reveal--d6 { transition-delay: 0.48s; }
        .nfp-reveal--d7 { transition-delay: 0.56s; }
        .nfp-reveal--d8 { transition-delay: 0.64s; }
        .nfp-reveal--d9 { transition-delay: 0.72s; }
    
/* ============================================
   ELEMENTOR OVERRIDE FIXES
   Elementor global styles have high specificity,
   these !important rules ensure our page renders
   correctly within the Elementor page wrapper.
   ============================================ */

/* CTA section: force full-width breakout from Elementor container */
.nfp-cta {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* CTA title: Elementor sets all h2 to #1F1F1F, override to white */
.nfp-cta .nfp-cta__title,
.nfp-cta h2.nfp-cta__title,
section.nfp-cta h2 {
    color: #FFFFFF !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
    font-weight: 700 !important;
}

/* CTA subtitle */
.nfp-cta .nfp-cta__subtitle,
section.nfp-cta p {
    color: #9CA3AF !important;
}

/* CTA button: override Elementor link styles */
.nfp-cta .nfp-cta__btn,
section.nfp-cta a.nfp-cta__btn {
    color: #FFFFFF !important;
    text-decoration: none !important;
    background-color: #C50F0F !important;
    display: inline-flex !important;
}

.nfp-cta .nfp-cta__btn:hover,
section.nfp-cta a.nfp-cta__btn:hover {
    background-color: #940B0B !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* Stats section: force full-width breakout */
.nfp-about-section--alt {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* Override Elementor global link hover color on our page elements */
.nfp-story__content a,
.nfp-montage__card a,
.nfp-business__item-value a {
    text-decoration: none !important;
}

/* Ensure h2/h3 in our sections use correct colors */
.nfp-services__title,
.nfp-montage__title,
.nfp-why__title {
    color: #1F1F1F !important;
}

/* Fix Elementor stripping SVG display in buttons */
.nfp-cta__btn svg {
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
}
