:root {
            --gmch-blue: #0056a6;
            --gmch-light-blue: #e6f2ff;
            --gmch-green: #2a7a3e;
            --gmch-gold: #d4af37;
            --gmch-gray: #f8f9fa;
            --gmch-dark: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--gmch-blue);
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.85), rgba(0, 84, 166, 0.9)), url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--gmch-gold);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--gmch-blue);
            margin-bottom: 20px;
        }
        .btn-gmch {
            background-color: var(--gmch-blue);
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid var(--gmch-blue);
            transition: all 0.3s ease;
        }
        .btn-gmch:hover {
            background-color: transparent;
            color: var(--gmch-blue);
        }
        .btn-gmch-outline {
            background-color: transparent;
            color: var(--gmch-blue);
            border: 2px solid var(--gmch-blue);
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gmch-outline:hover {
            background-color: var(--gmch-blue);
            color: white;
        }
        .department-card {
            background-color: var(--gmch-light-blue);
            border-left: 5px solid var(--gmch-blue);
        }
        .news-card {
            border-top: 5px solid var(--gmch-green);
        }
        .facility-icon {
            font-size: 1.5rem;
            color: var(--gmch-green);
            margin-right: 10px;
        }
        footer {
            background-color: var(--gmch-dark);
            color: #ddd;
            padding-top: 60px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            color: var(--gmch-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--gmch-blue);
            color: white;
            transform: scale(1.05);
        }
        .friendlink-section {
            background-color: var(--gmch-gray);
            padding: 40px 0;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gmch-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--gmch-light-blue);
            color: var(--gmch-blue);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item a {
            color: var(--gmch-blue);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-padding {
                padding: 50px 0;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
