<style>
        * { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(180deg, #eef6f3 0%, #f6faf9 100%); /* zachtere, licht getinte achtergrond */
            color: #17202a;
            line-height: 1.4;
            padding-top: 64px; /* ruimte voor vaste header */
        }

        /* Header / nav */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(90deg, rgba(63,142,72,0.98), rgba(47,127,62,0.98));
            padding: 8px 14px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.06);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        nav a:hover { background: rgba(255,255,255,0.06); }

        /* Container + general sections (compacter) */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 12px; }

        /* Hero - compacter en minder wit */
        .hero {
            height: 62vh;
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 22px 12px;
            background:
              linear-gradient(180deg, rgba(4,80,36,0.42), rgba(4,80,36,0.28)),
              url('images/photo4+background.jpg');
            background-size: cover;
            background-position: center;
        }

        /* Hero teksten compacter */
        .hero h1 { font-size: 1.8rem; margin-bottom: 6px; line-height: 1.15; }
        .hero p  { font-size: 0.98rem; margin-bottom: 10px; color: rgba(241,247,244,0.95); }

        /* Buttons */
        .btn {
            display: inline-block;
            background: #2e7d32;
            color: #fff;
            padding: 9px 14px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 4px 10px rgba(46,125,50,0.12);
        }

        /* Sections compacter: minder padding en zachtere achtergronden */
        section {
            padding: 1.6rem 12px;
        }

        /* Titels */
        h2 {
            font-size: 1.15rem;
            color: #1f6b2a;
            margin-bottom: 8px;
        }

        /* Kaarten: minder fel wit en compacter */
        .story-card,
        .subscription-card {
            background: rgba(255,255,255,0.86); /* minder witheid */
            border-radius: 8px;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(14, 28, 32, 0.05);
            border: 1px solid rgba(6, 52, 28, 0.03);
            margin-bottom: 10px;
        }

        /* Subscription grid compacter en gelijke hoogte */
        .subscription-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            align-items: stretch;
        }

        /* make cards use flex column so content and button can be aligned */
        .subscription-card {
            display: flex;
            flex-direction: column;
            /* use auto height but ensure internal spacing; buttons aligned with margin-top:auto */
            padding: 12px;
            min-height: 240px; /* iets hoger zodat er altijd ruimte is */
        }

        /* expliciete ruimte onder de features-lijst */
        .subscription-card ul {
            text-align: left;
            margin: 0.4rem 0 0 1.05rem;
            padding: 0;
            margin-bottom: 16px; /* maakt ruimte tussen laatste li en de knop */
        }

        /* ensure CTA button always at bottom */
        .subscription-card .btn {
            margin-top: auto;
            align-self: center;
            padding: 10px 18px;
            background: #39a24a;
            box-shadow: 0 6px 14px rgba(57,162,74,0.12);
        }

        /* Prijs style */
        .price {
            font-size: 1.25rem;
            color: #2e7d32;
            margin: 6px 0;
            font-weight: 700;
            letter-spacing: 0.2px;
            text-align: center;          /* center the price */
        }

        /* neatly align the "per maand" line under the price */
        .subscription-card > p:first-of-type {
            text-align: center;
            margin: 6px 0 12px;
            color: #2e7d32;
            font-weight: 600;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        /* keep the feature list left-aligned inside centered card */
        .subscription-card ul {
            text-align: left;
            margin: 0.4rem 0 0 1.05rem;
            padding: 0;
        }

        /* small heading polish */
        .subscription-card h3 {
            margin-bottom: 6px;
            font-size: 1.05rem;
            text-align: center;
        }

        /* Afbeeldingen compacter en minder wit */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 10px;
            margin-top: 8px;
        }

        .image-grid img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
            border: 1px solid rgba(0,0,0,0.03);
        }

        /* Contact card smaller */
        .story-card h3 { margin-bottom: 6px; font-size: 1rem; color: #144d23; }

        /* call-to-action balk boven abonnementen */
        .steun-cta {
            text-align: center;
            background: rgba(46,125,50,0.06);
            color: #164f27;
            padding: 10px 12px;
            border-radius: 8px;
            font-weight: 700;
            margin-bottom: 12px;
            border: 1px solid rgba(46,125,50,0.08);
        }

        /* Kleine schermen */
        @media (max-width: 720px) {
            .hero { height: 56vh; min-height: 300px; padding: 16px; }
            .hero h1 { font-size: 1.4rem; }
            nav { gap: 8px; }
            section { padding: 1rem 10px; }
            .image-grid img { height: 100px; }
            .price { font-size: 1.1rem; }
        }
    </style>