    /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.9), rgba(92, 0, 0, 0.85)),
                        url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: var(--white);
            text-align: center;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
        }

        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        /* About Section */
        .about-intro {
            padding: 80px 0;
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=800&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .about-text h2 {
            font-size: 36px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .about-text h2 span {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 16px;
        }

        /* Mission Vision */
        .mission-vision {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .mv-card {
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--accent-gold);
            margin-bottom: 30px;
        }

        .mv-card h3 {
            font-size: 28px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .mv-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 16px;
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--primary-maroon);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .section-title {
            font-size: 42px;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-maroon);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--accent-gold);
            margin: 0 auto 25px;
        }

        .value-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-card {
            text-align: center;
        }

        .stat-icon {
            font-size: 48px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
        }

       

        /* Responsive */
        @media (max-width: 768px) {
            /* Page Header */
            .page-header {
                padding: 30px 0;
            }

            .page-header h1 {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .page-subtitle {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .breadcrumb {
                font-size: 12px;
                gap: 6px;
            }

            /* About Intro */
            .about-intro {
                padding: 25px 0;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-image {
                height: 200px;
                border-radius: 12px;
            }

            .about-image img,
            .about-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 12px;
            }

            .about-text h2 {
                font-size: 22px;
                margin-bottom: 12px;
                line-height: 1.3;
            }

            .about-text p {
                font-size: 13px;
                margin-bottom: 12px;
                line-height: 1.6;
            }

            /* Mission Vision */
            .mission-vision {
                padding: 25px 0;
            }

            .mv-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .mv-card {
                padding: 20px;
                border-radius: 12px;
            }

            .mv-card:hover {
                transform: none;
            }

            .mv-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
                margin-bottom: 14px;
            }

            .mv-card h3 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .mv-card p {
                font-size: 13px;
                line-height: 1.6;
            }

            /* Values Section */
            .values-section {
                padding: 25px 0;
            }

            .section-header {
                margin-bottom: 20px;
            }

            .section-subtitle {
                font-size: 11px;
                letter-spacing: 1px;
                margin-bottom: 6px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .value-card {
                padding: 18px 14px;
                border-radius: 12px;
            }

            .value-card:hover {
                transform: none;
            }

            .value-icon {
                width: 44px;
                height: 44px;
                font-size: 20px;
                margin-bottom: 10px;
            }

            .value-card h3 {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .value-card p {
                font-size: 12px;
                line-height: 1.5;
            }

            /* Stats Section */
            .stats-section {
                padding: 25px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .stat-icon {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .stat-number {
                font-size: 28px;
                margin-bottom: 4px;
            }

            .stat-label {
                font-size: 12px;
            }
        }