:root {
            --primary-green: #1a5632;
            --secondary-gold: #d4af37;
            --light-beige: #f5f1e8;
            --dark-brown: #3e2c1c;
            --text-gray: #333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-gray);
            line-height: 1.7;
            padding-top: 76px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-green);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.97) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-green) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--dark-brown) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 86, 50, 0.85), rgba(62, 44, 28, 0.8)), 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');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 20px;
        }
        .bg-light-beige {
            background-color: var(--light-beige);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
        }
        .btn-primary:hover {
            background-color: #134326;
            border-color: #134326;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 86, 50, 0.2);
        }
        .btn-outline-primary {
            color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .footer {
            background-color: var(--dark-brown);
            color: #ddd;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--secondary-gold);
            transform: translateY(-5px);
        }
        .flink {
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-block;
            margin: 5px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        .testimonial-card {
            background: white;
            border-left: 5px solid var(--secondary-gold);
        }
        .campus-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark-brown);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-gold);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-green);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
        .contact-info-box {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            text-align: center;
            height: 100%;
            transition: transform 0.3s;
        }
        .contact-info-box:hover {
            transform: translateY(-8px);
        }
        .contact-icon {
            font-size: 2.2rem;
            color: var(--secondary-gold);
            margin-bottom: 15px;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 86, 50, 0.08);
            color: var(--primary-green);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(26, 86, 50, 0.25);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--secondary-gold);
            color: var(--dark-brown);
            transform: translateY(-5px);
        }
        .news-card .badge {
            background: var(--secondary-gold);
            color: var(--dark-brown);
        }
