
        /* ═══════════════════════════════════════
           CSS CUSTOM PROPERTIES
           Warm, accessible, high-contrast palette
           Philadelphia-rooted, Year Up / City Year register
        ═══════════════════════════════════════ */
        :root {
            --color-navy: #1B2A4A;
            --color-navy-light: #243558;
            --color-rust: #C0502D;
            --color-rust-hover: #A8432A;
            --color-gold: #D4952B;
            --color-gold-light: #F5E6C8;
            --color-teal: #2A7D6E;
            --color-teal-light: #E8F4F1;
            --color-cream: #FAF7F2;
            --color-white: #FFFFFF;
            --color-gray-100: #F5F3EF;
            --color-gray-200: #E8E4DD;
            --color-gray-400: #9B9488;
            --color-gray-600: #6B6560;
            --color-gray-800: #3D3833;
            --color-text: #2C2723;
            --color-text-light: #5C5650;
            --font-heading: 'Source Serif 4', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --max-width: 1200px;
            --section-padding: 80px 24px;
            --radius: 8px;
            --radius-lg: 12px;
            --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.08);
            --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.1);
            --shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.12);
            --transition: 0.2s ease;
        }

        /* ═══════════════════════════════════════
           RESET & BASE
        ═══════════════════════════════════════ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            font-size: 17px;
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-white);
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
        a:hover { color: var(--color-rust); }

        /* ═══════════════════════════════════════
           NAVIGATION
        ═══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--color-white);
            border-bottom: 1px solid var(--color-gray-200);
            padding: 0 24px;
        }
        .nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-navy);
            line-height: 1.2;
        }
        .nav-logo span {
            color: var(--color-rust);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-gray-800);
            transition: color var(--transition);
        }
        .nav-links a:hover {
            color: var(--color-rust);
        }
        .nav-donate {
            display: inline-block;
            background: var(--color-rust);
            color: var(--color-white) !important;
            padding: 10px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 15px;
            transition: background var(--transition);
        }
        .nav-donate:hover {
            background: var(--color-rust-hover);
            color: var(--color-white) !important;
        }

        /* Mobile menu */
        .nav-toggle { display: none; }
        .nav-toggle-label {
            display: none;
            cursor: pointer;
            width: 32px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }
        .nav-toggle-label span,
        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--color-navy);
            position: absolute;
            transition: all 0.3s ease;
        }
        .nav-toggle-label span { top: 50%; transform: translateY(-50%); }
        .nav-toggle-label span::before { content: ''; top: -8px; }
        .nav-toggle-label span::after { content: ''; top: 8px; }
        .nav-toggle:checked + .nav-toggle-label span { background: transparent; }
        .nav-toggle:checked + .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
        .nav-toggle:checked + .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

        @media (max-width: 900px) {
            .nav-toggle-label { display: block; }
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--color-white);
                flex-direction: column;
                padding: 40px 24px;
                gap: 24px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            .nav-toggle:checked ~ .nav-links {
                transform: translateX(0);
            }
            .nav-links a { font-size: 18px; }
        }

        /* ═══════════════════════════════════════
           HERO
        ═══════════════════════════════════════ */
        .hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            margin-top: 72px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27, 42, 74, 0.88) 0%, rgba(27, 42, 74, 0.65) 50%, rgba(42, 125, 110, 0.5) 100%);
            z-index: 1;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 80px 24px;
            color: var(--color-white);
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            max-width: 700px;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 19px;
            line-height: 1.6;
            max-width: 560px;
            margin-bottom: 32px;
            opacity: 0.92;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-block;
            background: var(--color-rust);
            color: var(--color-white);
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            transition: background var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover { background: var(--color-rust-hover); color: var(--color-white); }
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--color-white);
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all var(--transition);
            cursor: pointer;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
            color: var(--color-white);
        }

        /* ═══════════════════════════════════════
           TRUST BANNER
        ═══════════════════════════════════════ */
        .trust-banner {
            background: var(--color-navy);
            color: var(--color-white);
            padding: 20px 24px;
        }
        .trust-banner-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            text-align: center;
        }
        .trust-banner-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
            opacity: 0.9;
        }

        /* ═══════════════════════════════════════
           SECTION UTILITIES
        ═══════════════════════════════════════ */
        .section { padding: var(--section-padding); }
        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }
        .section-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-teal);
            margin-bottom: 12px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: var(--color-navy);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 18px;
            color: var(--color-text-light);
            line-height: 1.6;
        }
        .bg-cream { background: var(--color-cream); }
        .bg-teal-light { background: var(--color-teal-light); }

        /* ═══════════════════════════════════════
           COMMITMENT SECTION
        ═══════════════════════════════════════ */
        .commitment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .commitment-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .commitment-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .commitment-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--color-navy);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .commitment-content p {
            margin-bottom: 16px;
            color: var(--color-text-light);
        }
        .commitment-content p strong {
            color: var(--color-text);
        }
        .commitment-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--color-rust);
            margin-top: 8px;
        }
        .commitment-link:hover { color: var(--color-rust-hover); }

        @media (max-width: 768px) {
            .commitment { grid-template-columns: 1fr; gap: 32px; }
        }

        /* ═══════════════════════════════════════
           PROGRAMME CARDS
        ═══════════════════════════════════════ */
        .programme-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .programme-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .programme-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .programme-card-image {
            height: 200px;
            overflow: hidden;
        }
        .programme-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .programme-card-body {
            padding: 28px 24px;
        }
        .programme-card-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }
        .programme-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 10px;
        }
        .programme-card p {
            font-size: 15px;
            color: var(--color-text-light);
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .programme-card-link {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-teal);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .programme-card-link:hover { color: var(--color-rust); }

        /* ═══════════════════════════════════════
           IMPACT NUMBERS
        ═══════════════════════════════════════ */
        .impact-section {
            background: var(--color-navy);
            color: var(--color-white);
            padding: var(--section-padding);
        }
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .impact-item-number {
            font-family: var(--font-heading);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 700;
            color: var(--color-gold);
            line-height: 1;
            margin-bottom: 8px;
        }
        .impact-item-label {
            font-size: 16px;
            opacity: 0.85;
            line-height: 1.4;
        }

        /* ═══════════════════════════════════════
           VOICES SECTION (Testimonials)
        ═══════════════════════════════════════ */
        .voices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .voice-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--color-teal);
        }
        .voice-card blockquote {
            font-size: 17px;
            font-style: italic;
            color: var(--color-text);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .voice-card cite {
            font-style: normal;
            font-size: 15px;
            font-weight: 600;
            color: var(--color-navy);
            display: block;
        }
        .voice-card cite span {
            font-weight: 400;
            color: var(--color-text-light);
            display: block;
            font-size: 14px;
            margin-top: 2px;
        }

        /* ═══════════════════════════════════════
           HOW TO JOIN / REFERRAL
        ═══════════════════════════════════════ */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
        }
        .step-card {
            text-align: center;
            padding: 32px 24px;
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--color-teal);
            color: var(--color-white);
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .step-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 10px;
        }
        .step-card p {
            font-size: 15px;
            color: var(--color-text-light);
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           ACCOUNTABILITY SECTION
        ═══════════════════════════════════════ */
        .accountability-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .accountability-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }
        .accountability-card:hover { box-shadow: var(--shadow-md); }
        .accountability-card-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }
        .accountability-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 8px;
        }
        .accountability-card p {
            font-size: 15px;
            color: var(--color-text-light);
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .accountability-card a {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-teal);
        }

        /* ═══════════════════════════════════════
           NEWSLETTER SIGNUP
        ═══════════════════════════════════════ */
        .newsletter-section {
            background: var(--color-teal);
            color: var(--color-white);
            padding: 60px 24px;
            text-align: center;
        }
        .newsletter-section h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .newsletter-section p {
            font-size: 17px;
            opacity: 0.9;
            margin-bottom: 28px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .newsletter-placeholder {
            background: rgba(255, 255, 255, 0.15);
            border: 1px dashed rgba(255, 255, 255, 0.4);
            border-radius: var(--radius);
            padding: 24px;
            max-width: 480px;
            margin: 0 auto;
            font-size: 14px;
            opacity: 0.8;
        }

        /* ═══════════════════════════════════════
           CONTACT SECTION
        ═══════════════════════════════════════ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .contact-info h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 16px;
        }
        .contact-info p {
            color: var(--color-text-light);
            margin-bottom: 24px;
        }
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }
        .contact-detail-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .contact-detail-text {
            font-size: 15px;
        }
        .contact-detail-text strong {
            display: block;
            color: var(--color-navy);
            margin-bottom: 2px;
        }
        .contact-form-placeholder {
            background: var(--color-gray-100);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
        }
        .contact-form-placeholder p {
            font-size: 14px;
            color: var(--color-gray-400);
        }
        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; gap: 32px; }
        }

        /* ═══════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════ */
        .footer {
            background: var(--color-gray-800);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 24px 40px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 12px;
        }
        .footer-brand span { color: var(--color-rust); }
        .footer-description {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .footer h4 {
            color: var(--color-white);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            transition: color var(--transition);
        }
        .footer-links a:hover { color: var(--color-white); }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom a:hover { color: var(--color-white); }
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }
    
/* ========================================
   PAGE TEMPLATE STYLES
   ======================================== */

.template-page .content-section {
    padding: 4rem 0;
}

.template-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.template-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.template-page .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.template-page .page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.template-page .page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.template-page .page-content p {
    margin-bottom: 1.25rem;
}

.template-page .page-content a {
    color: var(--color-primary, var(--blue, #0088FF));
    text-decoration: none;
}

.template-page .page-content a:hover {
    text-decoration: underline;
}

.template-error .content-section {
    padding: 6rem 0;
    text-align: center;
}

/* Contact form on pages */
.ep-contact-form-wrapper {
    max-width: 600px;
    margin: 2rem auto;
}

.ep-contact-form input[type="text"],
.ep-contact-form input[type="email"],
.ep-contact-form textarea {
    background: var(--color-card, var(--card-bg, #16213E));
    color: var(--color-text, var(--grey-text, #B0B0C0));
    border: 1px solid var(--color-border, #2A2A4A);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.ep-contact-form input:focus,
.ep-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary, var(--blue, #0088FF));
}

.ep-contact-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ep-contact-form .form-field {
    margin-bottom: 1.5rem;
}

.ep-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ep-contact-form button,
.ep-contact-form input[type="submit"] {
    background: var(--color-primary, var(--blue, #0088FF));
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ep-contact-form button:hover {
    background: var(--color-primary-hover, #0077E6);
}

.site-footer {
    position: relative;
    z-index: 1;
}
/* Container padding */
.container, .section-inner, [class*="-inner"] {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}
section, [class*="section"] { overflow-x: hidden; }

/* Button variants */
.button, a.button, a.btn-primary, a.btn-secondary, a.btn-dark, a.btn-outline, a.btn-light {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1.4;
}
.btn-primary, .button:not([class*="outline"]):not([class*="secondary"]):not([class*="action"]):not([class*="light"]) {
    background: var(--color-primary, var(--color-accent, #2196f3));
    color: #fff !important;
    border: 2px solid var(--color-primary, var(--color-accent, #2196f3));
}
.btn-primary:hover { opacity: 0.9; }
.button.action, .btn-secondary, .btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}
.button.update, .btn-dark {
    background: var(--color-dark, #1a1a2e);
    color: #fff !important;
    border: 2px solid var(--color-dark, #1a1a2e);
}
a.read-more, .read-more {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-primary, var(--color-accent, #2196f3));
    border-bottom: 2px solid currentColor;
}
.hero-cta, .hero-actions, .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero z-index fix */
.hero-bg, [class*="hero-bg"] { z-index: -2 !important; }
.hero-gradient, .hero-overlay, [class*="hero"]::before, [class*="hero"]::after { z-index: -1 !important; }
.hero-bg img { object-fit: cover; width: 100%; height: 100%; }
