:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --accent-color: #2ec27e;
            --dark-color: #1c1c1c;
            --light-color: #f8f9fa;
            --text-color: #333;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand i {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a7c 100%);
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(30deg);
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: var(--box-shadow);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        .result-card {
            border-left: 5px solid var(--accent-color);
        }
        .data-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .flink {
            display: inline-block;
            background: var(--light-color);
            padding: 12px 25px;
            margin: 8px;
            border-radius: var(--border-radius);
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid #eaeaea;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background: #f9f9f9;
            padding: 4rem 0;
        }
        .footer {
            background: var(--dark-color);
            color: #ccc;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .bg-gradient-light {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        .table-custom {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        .table-custom thead th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(26, 95, 180, 0.05);
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: #0d3a7c;
            transform: translateY(-3px);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(26, 95, 180, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .news-card {
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .news-card:hover {
            background-color: #f9f9f9;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: -15px;
            margin-right: -15px;
            border-radius: var(--border-radius);
        }
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .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);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 95, 180, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }
        .pagination-custom .page-link {
            color: var(--primary-color);
        }
        .pagination-custom .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
