
        :root {
            --earth: #2D4A3E;
            --earth-dark: #182E25;
            --gold: #D4933A;
            --clay: #C4603A;
            --cream: #FDFAF6;
            --warm: #F5EFE6;
            --health: #EAF7F2;
            --health-deep: #1F5A4A;
            --soft-pink: #FFF1F1;
            --text: #1B1B1B;
            --muted: #6D6D6D;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream);
            color: var(--text);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Fraunces', serif;
        }

        .main-header .header_top {
            background: var(--earth-dark);
        }

        .header_top a,
        .header_top li {
            color: rgba(255,255,255,.82) !important;
        }

        .header_bottom {
            background: rgba(253,250,246,.96);
            backdrop-filter: blur(12px);
        }

        .navigation li a {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .btn-1 {
            background: var(--earth);
            color: #fff !important;
            border-radius: 40px;
            padding: 16px 32px;
        }

        .btn-1.btn-alt,
        .btn-1:hover {
            background: var(--gold);
            color: var(--earth-dark) !important;
        }

        .project-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background:
                linear-gradient(rgba(24,46,37,.66), rgba(24,46,37,.74)),
                url('assets/images/gallery/causes-02.jpg') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
            padding: 170px 0 120px;
        }

        .project-hero:after {
            content: "";
            position: absolute;
            left: -5%;
            right: -5%;
            bottom: -90px;
            height: 170px;
            background: var(--cream);
            border-radius: 50% 50% 0 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.13);
            color: var(--gold);
            padding: 10px 18px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .14em;
            margin-bottom: 24px;
        }

        .hero-eyebrow:before {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
        }

        .project-hero h1 {
            font-size: clamp(48px, 6vw, 86px);
            line-height: 1;
            font-weight: 600;
            margin-bottom: 24px;
            color: white;
        }

        .project-hero h1 em {
            color: var(--gold);
            font-style: italic;
            font-weight: 400;
        }

        .project-hero p {
            font-size: 19px;
            line-height: 1.8;
            color: rgba(255,255,255,.84);
            max-width: 720px;
            margin-bottom: 34px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-outline {
            border: 1.5px solid rgba(255,255,255,.85);
            color: #fff;
            padding: 16px 32px;
            border-radius: 40px;
            font-weight: 800;
            display: inline-block;
        }

        .hero-outline:hover {
            background: #fff;
            color: var(--earth);
        }

        .section-padding {
            padding: 110px 0;
        }

        .section-title-left span,
        .section-title-center span {
            color: var(--clay);
            text-transform: uppercase;
            letter-spacing: .16em;
            font-size: 13px;
            font-weight: 800;
            display: block;
            margin-bottom: 14px;
        }

        .section-title-left h2,
        .section-title-center h2 {
            color: var(--earth);
            font-size: clamp(34px, 4vw, 58px);
            line-height: 1.12;
            font-weight: 500;
        }

        .section-title-left p,
        .section-title-center p {
            color: var(--muted);
            font-size: 17px;
            line-height: 1.8;
            margin-top: 18px;
        }

        .section-title-center {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 55px;
        }

        .health-stat-wrap {
            background: #fff;
            border-radius: 30px;
            padding: 42px;
            box-shadow: 0 18px 50px rgba(45,74,62,.1);
            border: 1px solid rgba(45,74,62,.08);
        }

        .health-stat {
            display: flex;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid rgba(45,74,62,.1);
        }

        .health-stat:last-child {
            border-bottom: 0;
        }

        .health-stat i {
            min-width: 58px;
            height: 58px;
            border-radius: 18px;
            background: rgba(212,147,58,.15);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .health-stat h3 {
            color: var(--earth);
            font-size: 25px;
            margin-bottom: 8px;
        }

        .health-stat p {
            color: var(--muted);
            margin: 0;
            line-height: 1.65;
        }

        .wellness-section {
            background: var(--health);
        }

        .wellness-img {
            border-radius: 34px 34px 140px 34px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(45,74,62,.17);
        }

        .wellness-img img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .quote-box {
            font-family: 'Fraunces', serif;
            font-size: 25px;
            line-height: 1.5;
            color: var(--earth);
            border-left: 4px solid var(--gold);
            padding-left: 24px;
            margin: 28px 0;
            font-style: italic;
        }

        .provide-section {
            background: #fff;
        }

        .provide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .provide-card {
            background: var(--cream);
            border-radius: 26px;
            padding: 34px 28px;
            height: 100%;
            border: 1px solid rgba(45,74,62,.08);
            transition: .3s ease;
        }

        .provide-card:hover {
            transform: translateY(-8px);
            background: var(--health);
            box-shadow: 0 22px 50px rgba(45,74,62,.12);
        }

        .provide-icon {
            width: 62px;
            height: 62px;
            border-radius: 20px;
            background: rgba(212,147,58,.16);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 22px;
        }

        .provide-card h3 {
            color: var(--earth);
            font-size: 26px;
            margin-bottom: 12px;
        }

        .provide-card p {
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }

        .dark-health {
            background: var(--earth);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .dark-health .section-title-center h2,
        .dark-health .section-title-center p {
            color: #fff;
        }

        .process-card {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 24px;
            padding: 34px 28px;
            height: 100%;
        }

        .process-card h3 {
            color: #fff;
            font-size: 27px;
            margin-bottom: 12px;
        }

        .process-card p {
            color: rgba(255,255,255,.75);
            line-height: 1.7;
            margin: 0;
        }

        .process-number {
            font-family: 'Fraunces', serif;
            color: var(--gold);
            font-size: 42px;
            margin-bottom: 18px;
        }

        .impact-band {
            background: var(--earth-dark);
            padding: 85px 0;
        }

        .impact-box {
            border-left: 2px solid rgba(212,147,58,.45);
            padding-left: 24px;
        }

        .impact-box h2 {
            font-size: 54px;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .impact-box p {
            color: rgba(255,255,255,.82);
            margin: 0;
        }

        .gallery-health {
            display: grid;
            grid-template-columns: 1fr 1fr 1.1fr;
            gap: 24px;
        }

        .health-tile {
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 16px 45px rgba(45,74,62,.12);
        }

        .health-tile.rounded-big {
            border-radius: 50px 50px 160px 50px;
        }

        .health-tile img {
            width: 100%;
            height: 100%;
            min-height: 360px;
            object-fit: cover;
            transition: .4s ease;
        }

        .health-tile:hover img {
            transform: scale(1.05);
        }

        .commitment-section {
            background: var(--soft-pink);
        }

        .commitment-card {
            background: #fff;
            border-radius: 30px;
            padding: 46px;
            box-shadow: 0 18px 50px rgba(45,74,62,.1);
        }

        .commitment-card ul {
            margin: 26px 0 0;
            padding: 0;
            list-style: none;
        }

        .commitment-card li {
            margin-bottom: 18px;
            color: var(--muted);
            line-height: 1.7;
            display: flex;
            gap: 14px;
        }

        .commitment-card li:before {
            content: "✓";
            width: 26px;
            height: 26px;
            min-width: 26px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--earth-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-top: 2px;
        }

        .commitment-img {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(45,74,62,.14);
        }

        .commitment-img img {
            width: 100%;
            height: 540px;
            object-fit: cover;
        }

        .help-section {
            background: #303030;
            color: #fff;
        }

        .help-section h2,
        .help-section p {
            color: #fff;
        }

        .help-box {
            background: rgba(255,255,255,.07);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 28px;
            padding: 38px 32px;
            height: 100%;
        }

        .help-box h3 {
            color: var(--gold);
            font-size: 30px;
            margin-bottom: 14px;
        }

        .help-box ul {
            padding-left: 18px;
            margin: 0;
        }

        .help-box li {
            color: rgba(255,255,255,.78);
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .cta-health {
            background:
                linear-gradient(rgba(24,46,37,.72), rgba(24,46,37,.78)),
                url('assets/images/gallery/causes-02.jpg') center/cover no-repeat;
            padding: 120px 0;
            text-align: center;
            color: #fff;
        }

        .cta-health h2 {
            font-size: clamp(42px, 5vw, 72px);
            line-height: 1.05;
            margin-bottom: 24px;
        }

        .cta-health h2 em {
            color: var(--gold);
            font-style: italic;
        }

        .cta-health p {
            color: rgba(255,255,255,.82);
            max-width: 720px;
            margin: 0 auto 35px;
            font-size: 18px;
            line-height: 1.8;
        }

        .main__footer {
            background: var(--earth-dark);
        }

        .footer_bottom {
            background: #102018;
        }

        @media(max-width: 991px) {
            .project-hero {
                padding: 140px 0 95px;
            }

            .section-padding {
                padding: 75px 0;
            }

            .wellness-img img,
            .commitment-img img {
                height: auto;
                margin-top: 35px;
            }

            .provide-grid,
            .gallery-health {
                grid-template-columns: 1fr;
            }

            .impact-box {
                margin-bottom: 35px;
            }
        }
   