:root {
            --primary-blue: #0056a6;
            --secondary-gold: #d4af37;
            --accent-green: #2e8b57;
            --dark-navy: #003366;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            color: var(--dark-navy);
            font-weight: 700;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--secondary-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df6654e435de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-box {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
        }
        .btn-primary:hover {
            background-color: var(--dark-navy);
            border-color: var(--dark-navy);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,84,166,0.3);
        }
        .footer {
            background-color: var(--dark-navy);
            color: #ddd;
            padding-top: 4rem;
        }
        .footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        friendlink {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            color: #aaa;
            padding: 0.5rem 1.25rem;
            margin: 0.3rem;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-2px);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        .carousel-control-prev { left: 15px; }
        .carousel-control-next { right: 15px; }
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        .news-card .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                margin-top: 70px;
            }
            .stats-number {
                font-size: 2.2rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
