:root {
            --primary-color: #0056b3;
            --secondary-color: #17a2b8;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --accent-color: #28a745;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #444;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 179, 0.85), rgba(23, 162, 184, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            padding: 10rem 0;
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .case-study-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .case-study-card:hover {
            transform: scale(1.02);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: var(--light-color);
            border-radius: 50px;
            text-decoration: none;
            color: var(--dark-color);
            border: 2px solid transparent;
            transition: all 0.3s;
            font-weight: 600;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .footer {
            background: var(--dark-color);
            color: #ddd;
            padding-top: 3rem;
        }
        .footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: #004494;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.3rem;
            top: 0.5rem;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .form-control {
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            border: 2px solid #e0e0e0;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
                text-align: center;
            }
            .section-title::after {
                left: 50%;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
        }
