:root {
            --uoh-blue: #003366;
            --uoh-gold: #CC9900;
            --uoh-light: #F5F5F5;
            --uoh-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--uoh-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--uoh-gold) !important;
        }
        .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&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            color: var(--uoh-blue);
            border-bottom: 3px solid var(--uoh-gold);
            padding-bottom: 0.8rem;
            margin-bottom: 2.5rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--uoh-blue);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .stats-counter {
            background-color: var(--uoh-blue);
            color: white;
            padding: 4rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--uoh-gold);
            display: block;
        }
        .campus-life-img {
            border-radius: 15px;
            transition: transform 0.4s ease;
        }
        .campus-life-img:hover {
            transform: scale(1.03);
        }
        .btn-uoh {
            background-color: var(--uoh-blue);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid var(--uoh-blue);
            transition: all 0.3s ease;
        }
        .btn-uoh:hover {
            background-color: transparent;
            color: var(--uoh-blue);
            border-color: var(--uoh-blue);
        }
        .btn-uoh-outline {
            background-color: transparent;
            color: var(--uoh-blue);
            border: 2px solid var(--uoh-blue);
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-uoh-outline:hover {
            background-color: var(--uoh-blue);
            color: white;
        }
        footer {
            background-color: #1a1a1a;
            color: #ddd;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--uoh-gold);
            padding-left: 5px;
        }
        .flink {
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 12px 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-3px);
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: var(--uoh-gold);
            transform: scale(1.1);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 51, 102, 0.1);
            color: var(--uoh-blue);
            font-weight: 600;
        }
        .news-card {
            border-left: 5px solid var(--uoh-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
