:root {
            --school-green: #1b5e20;
            --school-gold: #ffb300;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--school-green) !important;
        }
        .bg-school {
            background-color: var(--school-green);
        }
        .text-school {
            color: var(--school-green);
        }
        .btn-school {
            background-color: var(--school-green);
            color: white;
            border: none;
            padding: 10px 25px;
            transition: all 0.3s;
        }
        .btn-school:hover {
            background-color: #0d4211;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(27, 94, 32, 0.85), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--school-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: #f1f8e9;
            border-radius: 4px;
            color: var(--school-green);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #c5e1a5;
        }
        .flink:hover {
            background-color: var(--school-green);
            color: white;
        }
        footer a {
            color: #c5e1a5;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .stats-counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--school-green);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 179, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--school-gold);
            font-size: 1.8rem;
        }
        .news-img {
            height: 200px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2rem;
            }
        }
