:root {
            --jgu-blue: #003366;
            --jgu-gold: #CC9933;
            --jgu-light-blue: #336699;
            --jgu-light-gray: #f8f9fa;
            --jgu-dark-gray: #333333;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--jgu-dark-gray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
            color: var(--jgu-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .jgu-bg-primary {
            background-color: var(--jgu-blue) !important;
        }
        .jgu-text-primary {
            color: var(--jgu-blue) !important;
        }
        .jgu-bg-accent {
            background-color: var(--jgu-gold) !important;
        }
        .jgu-text-accent {
            color: var(--jgu-gold) !important;
        }
        .btn-jgu-primary {
            background-color: var(--jgu-blue);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-jgu-primary:hover {
            background-color: var(--jgu-light-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-jgu-outline {
            background-color: transparent;
            color: var(--jgu-blue);
            border: 2px solid var(--jgu-blue);
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-jgu-outline:hover {
            background-color: var(--jgu-blue);
            color: white;
            transform: translateY(-3px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--jgu-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover-effect {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover-effect:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--jgu-blue);
            font-size: 1.8rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--jgu-blue);
            line-height: 1;
        }
        .campus-life-img {
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
            object-fit: cover;
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .news-card:hover img {
            transform: scale(1.05);
        }
        footer {
            background-color: #1a2a3a;
            color: #ddd;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--jgu-gold);
        }
        .footer-bottom {
            background-color: #0d1a26;
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            margin: 0.25rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background-color: var(--jgu-gold);
            color: #333;
            transform: translateY(-3px);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            background-color: rgba(255,255,255,0.1);
            color: var(--jgu-gold);
        }
        .sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
                min-height: 80vh;
                text-align: center;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
