:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e6a700;
            --dark-color: #2d3748;
            --light-color: #f8f9fa;
            --success-color: #38a169;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding-top: 5px;
            padding-bottom: 5px;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 8px;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .nav-link:hover:after {
            width: 100%;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #0d4a9c;
            border-color: #0d4a9c;
            transform: translateY(-2px);
        }
        .stats-counter {
            background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(26, 95, 180, 0.95)), url('https://images.unsplash.com/photo-1529900748604-07564a03e7a6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 80px;
            object-fit: contain;
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            transition: all 0.3s;
            color: #ddd;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
        }
        .project-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            transition: background 0.3s;
        }
        .news-item:hover {
            background-color: #f9f9f9;
        }
        .back-to-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: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
