        :root {
            --mountain-meadow: #13b267;
            --moon-mist: #dfe1d1;
            --gamboge: #e5a309;
            --bombay: #abacad;
            --buttercup: #f7c011;
            --quill-gray: #dadad9;
            --granite-green: #8c897c;
            --eucalyptus: #207c49;
            --thunder: #261f25;
            --sea-green: #2ea453;
            --nandor: #575a58;
            --mid-gray: #6c6c74;
            --mantis: #73c053;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body02 {
            background-color: var(--moon-mist);
            color: var(--thunder);
            line-height: 1.6;
        }

        .container02 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header02 {
            background: linear-gradient(to right, var(--eucalyptus), var(--mountain-meadow));
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content02 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo02 {
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .logo-icon02 {
            margin-right: 10px;
            font-size: 24px;
        }

        .nav-toggle02 {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .nav02 ul {
            display: flex;
            list-style: none;
        }

        .nav02 ul li {
            margin-left: 20px;
        }

        .nav02 ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }

        .nav02 ul li a:hover {
            color: var(--buttercup);
        }

        .page-title02 {
            background-color: var(--sea-green);
            color: white;
            padding: 25px 0;
            text-align: center;
            margin-bottom: 30px;
        }

        .page-title02 h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .breadcrumb02 {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb02 li {
            margin: 5px;
        }

        .breadcrumb02 li:after {
            content: "›";
            margin-left: 10px;
            color: var(--quill-gray);
        }

        .breadcrumb02 li:last-child:after {
            content: "";
        }

        .breadcrumb02 a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb02 a:hover {
            text-decoration: underline;
        }

  .breadcrumb-02 .current-02 {
            color: var(--buttercup);
            font-weight: 500;
        }
        

        .content-section02 {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title02 {
            color: var(--eucalyptus);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--moon-mist);
            display: flex;
            align-items: center;
        }

        .section-icon02 {
            margin-right: 10px;
            font-size: 22px;
        }

        p {
            margin-bottom: 15px;
            color: var(--nandor);
        }

        .highlight02 {
            background-color: rgba(19, 178, 103, 0.1);
            border-left: 4px solid var(--mountain-meadow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }

        .mission-vision02 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .card02 {
            background: linear-gradient(to bottom, white, var(--moon-mist));
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--gamboge);
        }

        .card02 h3 {
            color: var(--eucalyptus);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .card-icon02 {
            margin-right: 10px;
        }

        .history-timeline02 {
            position: relative;
            padding-left: 30px;
            margin: 30px 0;
        }

        .history-timeline02:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--mountain-meadow);
            border-radius: 2px;
        }

        .timeline-item02 {
            position: relative;
            margin-bottom: 25px;
        }

        .timeline-item02:before {
            content: "";
            position: absolute;
            left: -37px;
            top: 5px;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            background-color: var(--buttercup);
            border: 3px solid var(--mountain-meadow);
        }

        .timeline-item02 h4 {
            color: var(--eucalyptus);
            margin-bottom: 5px;
        }

        .footer02 {
            background-color: var(--thunder);
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer-content02 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section02 h3 {
            color: var(--buttercup);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section02 p, .footer-section02 a {
            color: var(--bombay);
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-section02 a:hover {
            color: var(--mantis);
        }

        .copyright02 {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--nandor);
            color: var(--bombay);
        }

        /* Mobile-specific styles */
        @media (max-width: 768px) {
            .header-content02 {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-toggle02 {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            
            .nav02 {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav02.active {
                max-height: 300px;
            }
            
            .nav02 ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            .nav02 ul li {
                margin: 10px 0;
            }
            
            .mission-vision02 {
                grid-template-columns: 1fr;
            }
            
            .page-title02 h1 {
                font-size: 1.8rem;
            }
            
            .content-section02 {
                padding: 20px 15px;
            }
            
            .footer-content02 {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .history-timeline02 {
                padding-left: 20px;
            }
            
            .timeline-item02:before {
                left: -30px;
            }
        }

        @media (max-width: 480px) {
            .logo02 {
                font-size: 18px;
            }
            
            .page-title02 h1 {
                font-size: 1.5rem;
            }
            
            .section-title02 {
                font-size: 1.3rem;
            }
            
            .card02 {
                padding: 15px;
            }
            
            .highlight02 {
                padding: 15px;
            }
        }
                .mission-vision-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 5px 10px;
            background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 100%);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .mission-icon {
            background: rgba(52, 152, 219, 0.15);
            color: #3498db;
            border: 3px solid rgba(52, 152, 219, 0.3);
        }

        .vision-icon {
            background: rgba(46, 204, 113, 0.15);
            color: #2ecc71;
            border: 3px solid rgba(46, 204, 113, 0.3);
        }

        .mv-icon:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .mission-icon:hover {
            background: #3498db;
            color: white;
            border-color: #2980b9;
        }

        .vision-icon:hover {
            background: #2ecc71;
            color: white;
            border-color: #27ae60;
        }
        .mv-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mv-icon:hover::after {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }
                .mv-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
                @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .mv-modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .mv-close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 1.8rem;
            color: #95a5a6;
            cursor: pointer;
            transition: color 0.3s;
        }

        .mv-close-btn:hover {
            color: #e74c3c;
        }

        .mv-modal-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .mv-modal-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 2rem;
        }

        #mission-modal .mv-modal-icon {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
        }

        #vision-modal .mv-modal-icon {
            background: rgba(46, 204, 113, 0.1);
            color: #2ecc71;
        }

        .mv-modal-header h2 {
            font-size: 2rem;
            color: #2c3e50;
        }

        .mv-modal-body p {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #5d6d7e;
            text-align: left;
        }

        .mv-modal-body .highlight {
            background: linear-gradient(120deg, #a8e6cf 0%, #a8e6cf 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            padding: 0 5px;
        }
                @media (max-width: 768px) {
            .mission-vision-icons {
                gap: 30px;
                padding: 25px 15px;
            }
            
            .mv-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .mv-modal-content {
                padding: 30px 25px;
            }
            
            .mv-modal-header h2 {
                font-size: 1.6rem;
            }
            
            .mv-modal-body p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .mission-vision-icons {
                gap: 20px;
                padding: 20px 10px;
            }
            
            .mv-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
        }
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body03 {
            background-color: var(--moon-mist);
            color: var(--thunder);
            line-height: 1.6;
        }

        .container03 {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header03 {
            background: linear-gradient(to right, var(--eucalyptus), var(--mountain-meadow));
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content03 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo03 {
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .logo-icon03 {
            margin-right: 10px;
            font-size: 24px;
        }

        .nav-toggle03 {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .nav03 ul {
            display: flex;
            list-style: none;
        }

        .nav03 ul li {
            margin-left: 20px;
        }

        .nav03 ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }

        .nav03 ul li a:hover {
            color: var(--buttercup);
        }

        .page-title03 {
            background-color: var(--sea-green);
            color: white;
            padding: 25px 0;
            text-align: center;
            margin-bottom: 30px;
        }

        .page-title03 h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .breadcrumb03 {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb03 li {
            margin: 5px;
        }

        .breadcrumb03 li:after {
            content: "›";
            margin-left: 10px;
            color: var(--quill-gray);
        }

        .breadcrumb03 li:last-child:after {
            content: "";
        }

        .breadcrumb03 a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb03 a:hover {
            text-decoration: underline;
        }

        .content-section03 {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title03 {
            color: var(--eucalyptus);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--moon-mist);
            display: flex;
            align-items: center;
        }

        .section-icon03 {
            margin-right: 10px;
            font-size: 22px;
        }

        p {
            margin-bottom: 15px;
            color: var(--nandor);
        }

        .governance-structure03 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .structure-card03 {
            background: linear-gradient(to bottom, white, var(--moon-mist));
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--gamboge);
        }

        .structure-card03 h3 {
            color: var(--eucalyptus);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .card-icon03 {
            margin-right: 10px;
        }

        .structure-card03 ol {
            padding-left: 20px;
        }

        .structure-card03 li {
            margin-bottom: 10px;
        }

        .staff-directory03 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .staff-card03 {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--mountain-meadow);
        }

        .staff-card03 h3 {
            color: var(--eucalyptus);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--quill-gray);
        }

        .staff-member03 {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .profile-img03 {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--mountain-meadow);
        }

        .staff-info03 {
            flex: 1;
        }

        .staff-member03 h4 {
            color: var(--thunder);
            margin-bottom: 5px;
        }

        .staff-member03 p {
            margin-bottom: 5px;
            color: var(--nandor);
        }

        .staff-member03 a {
            color: var(--sea-green);
            text-decoration: none;
        }

        .staff-member03 a:hover {
            text-decoration: underline;
        }

        .principles-grid03 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .principle-card03 {
            background: linear-gradient(to bottom, #fbf0178a, white);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--quill-gray);
        }

        .principle-icon03 {
            font-size: 32px;
            color: var(--eucalyptus);
            margin-bottom: 15px;
        }

        .principle-card03 h3 {
            color: var(--eucalyptus);
            margin-bottom: 10px;
        }

        .footer03 {
            background-color: var(--thunder);
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer-content03 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section03 h3 {
            color: var(--buttercup);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section03 p, .footer-section03 a {
            color: var(--bombay);
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-section03 a:hover {
            color: var(--mantis);
        }

        .copyright03 {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--nandor);
            color: var(--bombay);
        }
        @media (max-width: 768px) {
            .header-content03 {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-toggle03 {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            
            .nav03 {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav03.active {
                max-height: 300px;
            }
            
            .nav03 ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            .nav03 ul li {
                margin: 10px 0;
            }
            
            .governance-structure03, .staff-directory03, .principles-grid03 {
                grid-template-columns: 1fr;
            }
            
            .page-title03 h1 {
                font-size: 1.8rem;
            }
            
            .content-section03 {
                padding: 20px 15px;
            }
            
            .footer-content03 {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .staff-member03 {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .profile-img03 {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .logo03 {
                font-size: 18px;
            }
            
            .page-title03 h1 {
                font-size: 1.5rem;
            }
            
            .section-title03 {
                font-size: 1.3rem;
            }
            
            .structure-card03, .staff-card03 {
                padding: 15px;
            }
            
            .profile-img03 {
                width: 60px;
                height: 60px;
            }
        }
        .filter-buttons03 {
    margin-bottom: 20px;
    text-align: center;
}
.filter-btn03 {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background: #13b267;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    color: white;
}
.filter-btn03:hover {
    background: #2ea453;
}
.filter-btn03.active {
    background: #e5a309;
    color: #fff;
}
.staff-card03 { display: none; margin-bottom: 20px; }
.staff-card03.active { display: block; }
.staff-member03 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.profile-img03 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0; /* Square images */
    margin-right: 15px;
}
        .about-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .about-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--mountain-meadow), var(--eucalyptus));
            border-radius: 15px;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .about-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .about-section {
            margin-bottom: 60px;
            background: white;
            border-radius: 15px;
            padding: 40px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--mountain-meadow);
        }

        .section-icon {
            width: 60px;
            height: 60px;
            background: var(--mountain-meadow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
            color: var(--thunder);
        }
               .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .partner-card {
            background: var(--moon-mist);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            border-left: 5px solid var(--mountain-meadow);
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

        .partner-icon {
            width: 50px;
            height: 50px;
            background: var(--buttercup);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--thunder);
            font-size: 1.3rem;
        }

        .partner-card h3 {
            color: var(--eucalyptus);
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        .partner-card p {
            color: var(--nandor);
            line-height: 1.6;
        }
        .programs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .program-card {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: linear-gradient(135deg, var(--moon-mist), white);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .program-card:hover {
            border-color: var(--mountain-meadow);
            transform: translateX(10px);
        }

        .program-icon {
            width: 70px;
            height: 70px;
            background: var(--buttercup);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--thunder);
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .program-content h3 {
            color: var(--thunder);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .program-content p {
            color: var(--nandor);
            line-height: 1.6;
        }
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
       .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: var(--moon-mist);
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--mountain-meadow);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--thunder);
            font-weight: 600;
        }
                .about-footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            background: var(--thunder);
            color: white;
            border-radius: 15px;
        }

        .about-footer p {
            font-size: 1rem;
            opacity: 0.8;
        }
               .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .modal-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .close-modal {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--buttercup);
        }
                @media (max-width: 768px) {
            .about-page {
                padding: 20px 15px;
            }
            
            .about-header {
                padding: 30px 20px;
            }
            
            .about-header h1 {
                font-size: 2.2rem;
            }
            
            .about-section {
                padding: 25px;
            }
            
            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .program-card {
                flex-direction: column;
                text-align: center;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .about-header h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .partners-grid,
            .programs-container {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }


                .container-08 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
                .header-08 {
            background-color: var(--thunder);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content-08 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-08 {
            display: flex;
            align-items: center;
        }
        
        .logo-icon-08 {
            background-color: var(--mountain-meadow);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 24px;
        }
        
        .logo-text-08 h1 {
            font-size: 24px;
            font-weight: 600;
        }
        
        .logo-text-08 p {
            font-size: 14px;
            color: var(--bombay);
        }
        
        .mobile-menu-btn-08 {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .nav-08 ul {
            display: flex;
            list-style: none;
        }
        
        .nav-08 ul li {
            margin-left: 25px;
        }
        
        .nav-08 ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-08 ul li a:hover {
            color: var(--mountain-meadow);
        }
               .page-title-08 {
            background-color: var(--sea-green);
            color: white;
            padding: 40px 0;
            margin-bottom: 40px;
        }
        
        .page-title-content-08 {
            text-align: center;
        }
        
        .page-title-08 h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .page-title-08 p {
            font-size: 18px;
            margin-bottom: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .breadcrumb-08 {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            font-size: 15px;
            flex-wrap: wrap;
        }
        
        .breadcrumb-08 a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-08 a:hover {
            color: var(--buttercup);
        }
        
        .breadcrumb-08 span {
            margin: 0 8px;
            color: var(--moon-mist);
        }
        
        .breadcrumb-08 .current-08 {
            color: var(--buttercup);
            font-weight: 500;
        }
                .policies-nav-08 {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            position: sticky;
            top: 80px;
            z-index: 999;
        }
        
        .policies-nav-list-08 {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            list-style: none;
        }
        
        .policy-nav-item-08 button {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--moon-mist);
            color: var(--thunder);
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .policy-nav-item-08 button:hover {
            background-color: var(--mountain-meadow);
            color: white;
            transform: translateY(6px);
        }
        
        .policy-nav-item-08 button.active-08 {
            background-color: var(--mountain-meadow);
            color: white;
            border-color: var(--mountain-meadow);
        }
        
        .policy-nav-icon-08 {
            color: var(--gamboge);
            font-size: 16px;
            font-weight: bold;
        }
                .policies-content-08 {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .policies-main-08 {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
               .policy-section-08 {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: none;
        }
                .policy-section-08.active-08 {
            display: block; 
        }
        
        .policy-header-08 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--mountain-meadow);
        }
        
        .policy-icon-08 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--mountain-meadow), var(--eucalyptus));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .policy-title-08 {
            font-size: 24px;
            color: var(--thunder);
            margin: 0;
        }
        
        .policy-content-08 {
            color: var(--nandor);
        }
        
        .policy-intro-08 {
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.7;
        }
                .policy-list-08 {
            margin: 20px 0;
        }
        
        .policy-item-08 {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            padding: 15px;
            background-color: var(--moon-mist);
            border-radius: 8px;
            border-left: 4px solid var(--mountain-meadow);
        }
        
        .policy-item-icon-08 {
            color: var(--mountain-meadow);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .policy-item-content-08 {
            flex: 1;
        }
        
        .policy-item-title-08 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--thunder);
        }
        
        .policy-item-desc-08 {
            color: var(--nandor);
            font-size: 14px;
            line-height: 1.5;
        }
                .policy-notice-08 {
            background: linear-gradient(135deg, #ffffff, #f3ed7eff, #b3f4d0ff);
            color: var(--thunder);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 5px solid var(--mountain-meadow);
        }
        
        .policy-notice-08 h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 18px;
        }
                .policy-table-08 {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .policy-table-08 th {
            background-color: var(--mountain-meadow);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .policy-table-08 td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--quill-gray);
        }
        
        .policy-table-08 tr:nth-child(even) {
            background-color: var(--moon-mist);
        }
        
        .policy-table-08 tr:hover {
            background-color: #f0f0f0;
        }
               .quick-links-08 {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        
        .quick-links-title-08 {
            font-size: 20px;
            color: var(--thunder);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--mountain-meadow);
        }
        
        .quick-links-list-08 {
            list-style: none;
        }
        
        .quick-link-item-08 {
            margin-bottom: 12px;
        }
        
        .quick-link-item-08 button {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--nandor);
            text-decoration: none;
            padding: 10px;
            border-radius: 6px;
            transition: all 0.3s;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }
        
        .quick-link-item-08 button:hover {
            background-color: var(--moon-mist);
            color: var(--thunder);
            transform: translateX(5px);
        }
        
        .quick-link-icon-08 {
            color: var(--gamboge);
            font-size: 14px;
        }
               .downloads-section-08 {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 30px;
        }
        
        .downloads-grid-08 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .download-item-08 {
            background-color: var(--moon-mist);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .download-item-08:hover {
            transform: translateY(-3px);
        }
        
        .download-icon-08 {
            width: 40px;
            height: 40px;
            background-color: var(--mountain-meadow);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .download-info-08 {
            flex: 1;
        }
        
        .download-name-08 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--thunder);
        }
        
        .download-size-08 {
            color: var(--nandor);
            font-size: 14px;
        }
                @media (max-width: 1024px) {
            .policies-content-08 {
                grid-template-columns: 1fr;
            }
            
            .quick-links-08 {
                position: static;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .header-content-08 {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn-08 {
                display: block;
            }
            
            .nav-08 {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            
            .nav-08.active-08 {
                display: block;
            }
            
            .nav-08 ul {
                flex-direction: column;
            }
            
            .nav-08 ul li {
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-08 ul li a {
                display: block;
                padding: 10px 0;
            }
            
            .page-title-08 {
                padding: 30px 0;
            }
            
            .page-title-08 h2 {
                font-size: 28px;
            }
            
            .page-title-08 p {
                font-size: 16px;
            }
            
            .policies-nav-08 {
                position: static;
            }
            
            .policies-nav-list-08 {
                flex-direction: column;
            }
            
            .policy-nav-item-08 button {
                justify-content: center;
            }
            
            .policy-header-08 {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .policy-table-08 {
                display: block;
                overflow-x: auto;
            }
            
            .downloads-grid-08 {
                grid-template-columns: 1fr;
            }
            
            .footer-content-08 {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text-08 h1 {
                font-size: 20px;
            }
            
            .logo-text-08 p {
                font-size: 12px;
            }
            
            .page-title-08 h2 {
                font-size: 24px;
            }
            
            .policy-section-08 {
                padding: 20px;
            }
            
            .policy-item-08 {
                flex-direction: column;
                gap: 8px;
            }
            
            .breadcrumb-08 {
                font-size: 14px;
            }
        }
                .policy-nav-item-08 button, .download-item-08, .quick-link-item-08 button {
            -webkit-tap-highlight-color: transparent;
        }