:root {
            --gu-blue: #0056a6;
            --gu-gold: #ffcc00;
            --gu-light: #f8f9fa;
            --gu-dark: #212529;
            --gu-green: #28a745;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--gu-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--gu-blue);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gu-blue) !important;
        }
        .nav-link {
            font-weight: 600;
            color: var(--gu-dark) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--gu-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.85), rgba(0, 84, 166, 0.9)), url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--gu-gold);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-gu {
            background-color: var(--gu-blue);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .btn-gu:hover {
            background-color: #004080;
            color: white;
            transform: scale(1.05);
        }
        .facility-icon {
            font-size: 3rem;
            color: var(--gu-blue);
            margin-bottom: 20px;
        }
        .news-item {
            border-left: 4px solid var(--gu-gold);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .friend-links {
            background-color: var(--gu-light);
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 12px 25px;
            margin: 10px;
            border-radius: 8px;
            color: var(--gu-blue);
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--gu-blue);
            color: white;
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--gu-dark);
            color: #ddd;
            padding: 60px 0 20px;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--gu-gold);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--gu-blue);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
