:root {
            --school-green: #1b5e20;
            --school-gold: #d4af37;
            --school-navy: #0d1b2a;
            --light-cream: #f8f5f0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #fff;
            line-height: 1.6;
        }
        .school-header {
            background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 180px 0 100px;
        }
        .section-title {
            color: var(--school-green);
            border-bottom: 3px solid var(--school-gold);
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--school-green);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .btn-school {
            background-color: var(--school-green);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--school-green);
        }
        .btn-school:hover {
            background-color: transparent;
            color: var(--school-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .flink {
            background: var(--light-cream);
            border-radius: 8px;
            padding: 12px 20px;
            margin: 8px;
            display: inline-block;
            color: var(--school-navy);
            text-decoration: none;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--school-green);
            color: white;
            border-color: var(--school-green);
            transform: scale(1.05);
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--school-gold);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--school-green);
        }
        .campus-life-img {
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }
        .testimonial-card {
            background: var(--light-cream);
            border-left: 5px solid var(--school-gold);
        }
        @media (max-width: 768px) {
            .school-header {
                padding: 120px 0 60px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
