:root {
            --primary-color: #003366;
            --secondary-color: #CC9900;
            --accent-color: #0066CC;
            --light-color: #F5F7FA;
            --dark-color: #1A2B3C;
            --text-color: #333333;
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
        }
        .text-center h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 28px;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #000;
            padding: 12px 28px;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: #e6b400;
            border-color: #e6b400;
            color: #000;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .navbar {
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 3px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover {
            background-color: rgba(0, 51, 102, 0.05);
            color: var(--primary-color);
        }
        .navbar-nav .nav-link.active {
            background-color: rgba(0, 51, 102, 0.1);
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 100px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            margin-bottom: 3rem;
        }
        .bg-light-section {
            background-color: var(--light-color);
        }
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--box-shadow);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .news-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .news-card .card-body {
            padding: 25px;
        }
        .stats-section {
            background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.95));
            color: white;
            padding: 70px 0;
        }
        .stats-section h2, .stats-section h3 {
            color: white;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
            line-height: 1;
            margin-bottom: 10px;
        }
        .footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 20px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        friendlink {
            display: block;
            background-color: white;
            padding: 40px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .flink {
            display: inline-block;
            background-color: var(--light-color);
            padding: 10px 20px;
            margin: 0 10px 15px;
            border-radius: 50px;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 90px 0 70px;
            }
            .hero-section h1 {
                font-size: 2.6rem;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
