:root {
            --amity-blue: #002147;
            --amity-gold: #c99700;
            --amity-light: #f8f9fa;
            --amity-dark: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .amity-bg-primary {
            background-color: var(--amity-blue) !important;
        }
        .amity-text-primary {
            color: var(--amity-blue) !important;
        }
        .amity-bg-secondary {
            background-color: var(--amity-gold) !important;
        }
        .amity-text-secondary {
            color: var(--amity-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--amity-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--amity-gold) !important;
        }
        .card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-amity {
            background-color: var(--amity-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--amity-blue);
        }
        .btn-amity:hover {
            background-color: transparent;
            color: var(--amity-blue);
        }
        .btn-amity-outline {
            background-color: transparent;
            color: var(--amity-blue);
            border: 2px solid var(--amity-blue);
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .btn-amity-outline:hover {
            background-color: var(--amity-blue);
            color: white;
        }
        .campus-highlight {
            background-color: var(--amity-light);
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--amity-blue);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: #f1f5f9;
            border-radius: 4px;
            color: var(--amity-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background: var(--amity-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--amity-gold);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--amity-gold);
            color: #000;
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .faculty-card {
            text-align: center;
            padding: 20px;
        }
        .faculty-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--amity-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .display-4 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
