:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1f2937;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans SC', 'Roboto', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        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: var(--secondary-color);
            border-radius: 2px;
        }
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #172554;
            border-color: #172554;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: #b91c1c;
            border-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            padding: 20px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 12px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(30, 58, 138, 0.1);
            color: var(--primary-color);
        }
        .hero-section {
            padding: 150px 0 100px;
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        section {
            padding: 100px 0;
        }
        .section-title {
            margin-bottom: 60px;
        }
        .section-bg {
            background-color: var(--light-bg);
        }
        .service-card, .news-card, .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        .service-card:hover, .news-card:hover, .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 25px;
            color: white;
            font-size: 32px;
        }
        .service-card .card-body {
            padding: 0 25px 30px;
        }
        .news-card .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .news-card .card-body {
            padding: 25px;
        }
        .news-meta {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 15px;
        }
        .counter-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
        }
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        .counter {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }
        .counter-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .partner-logo {
            background: white;
            padding: 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .partner-logo img {
            max-width: 100%;
            max-height: 70px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }
        .partner-logo:hover img {
            filter: grayscale(0);
            opacity: 1;
        }
        .friendlink {
            background-color: var(--light-bg);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            padding: 12px 25px;
            margin: 8px;
            background: white;
            border-radius: 6px;
            color: var(--dark-text);
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        footer {
            background-color: #111827;
            color: #d1d5db;
            padding-top: 80px;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #9ca3af;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #374151;
            padding: 25px 0;
            margin-top: 60px;
            text-align: center;
            font-size: 0.95rem;
            color: #9ca3af;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            section {
                padding: 80px 0;
            }
            .hero-section {
                padding: 130px 0 80px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .counter {
                font-size: 2.8rem;
            }
            .navbar-nav {
                padding-top: 15px;
            }
            .nav-link {
                margin: 5px 0;
            }
        }
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            .hero-section {
                padding: 100px 0 60px;
                text-align: center;
            }
            .counter {
                font-size: 2.2rem;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
