:root {
            --primary-blue: #002147;
            --secondary-gold: #FFD700;
            --accent-red: #C8102E;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.9)), url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=2060&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            margin-bottom: 40px;
        }
        .section-title {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--accent-red);
            border-color: var(--accent-red);
            transform: scale(1.05);
        }
        .campus-life-img {
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }
        .campus-life-img:hover {
            transform: scale(1.03);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 40px 0 20px;
        }
        .footer a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friend-links {
            background-color: var(--light-gray);
            padding: 30px 0;
            border-top: 1px solid #ddd;
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 8px 15px;
            background: white;
            border-radius: 5px;
            color: var(--primary-blue);
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .research-highlight {
            border-left: 5px solid var(--accent-red);
            padding-left: 20px;
            background: var(--light-gray);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 33, 71, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(0, 33, 71, 0.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .stats-number {
                font-size: 2rem;
            }
            .campus-life-img {
                height: 200px;
                margin-bottom: 15px;
            }
        }
