:root {
            --primary-blue: #0056a6;
            --primary-green: #0a5c36;
            --secondary-gold: #d4af37;
            --secondary-teal: #2a9d8f;
            --dark-text: #212529;
            --light-bg: #f8f9fa;
            --border-color: #dee2e6;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, .serif-font {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-green) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(10, 92, 54, 0.85)), url('https://images.unsplash.com/photo-1516549655669-df6654e435de?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 5rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2.5rem;
            color: var(--primary-green);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-gold);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-color);
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.125) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(10, 92, 54, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            font-size: 1.8rem;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #084a2a;
            border-color: #084a2a;
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            border-radius: 0.5rem;
            background: white;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background-color: #f1f3f4;
            border-radius: 2rem;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
        }
        footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            background-color: #1a252f;
            font-size: 0.9rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 92, 54, 0.08);
            color: var(--primary-green);
            font-weight: 600;
        }
        .facility-icon {
            color: var(--secondary-teal);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .news-card {
            border-left: 4px solid var(--secondary-teal);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 3rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
