@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
        :root {
            --primary-blue: #0a2e6f;
            --secondary-gold: #c9a437;
            --accent-red: #b71c1c;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(10, 46, 111, 0.85) 0%, rgba(25, 75, 168, 0.85) 100%);
        }
        .btn-gold {
            background-color: var(--secondary-gold);
            color: #000;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #b38d2a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .flink {
            color: var(--primary-blue);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .flink:hover {
            background-color: rgba(10, 46, 111, 0.1);
            transform: translateY(-2px);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background-color: var(--secondary-gold);
            border-radius: 50%;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 25px;
            width: 2px;
            height: calc(100% + 5px);
            background-color: #e0e0e0;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        .faculty-card {
            border-top: 4px solid var(--primary-blue);
        }
        .faculty-card:hover {
            border-top-color: var(--secondary-gold);
        }
        .news-card {
            border-left: 4px solid transparent;
        }
        .news-card:hover {
            border-left-color: var(--secondary-gold);
        }
        .footer-link {
            color: #ddd;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--secondary-gold);
        }
        .campus-life-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        .campus-life-icon:hover {
            transform: scale(1.2);
        }
