:root {
            --primary-color: #1a365d;
            --secondary-color: #2d3748;
            --accent-color: #2b6cb0;
            --light-color: #f7fafc;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--secondary-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: var(--transition);
            border-radius: var(--border-radius);
        }
        .navbar-nav .nav-link:hover {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.1"><path fill="white" d="M0,0V600H1200V0ZM200,400C100,350,50,250,150,200S350,150,400,250,500,350,400,400,300,450,200,400Z"/></svg>') no-repeat center;
            background-size: cover;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .feature-box {
            padding: 2.5rem;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            height: 100%;
        }
        .feature-box:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            opacity: 0.2;
            position: absolute;
            top: -10px;
            right: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-weight: 500;
        }
        .flink {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            margin: 0.5rem;
            transition: var(--transition);
            color: var(--secondary-color);
            text-decoration: none;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
        }
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 2rem 0;
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 0.8rem 2rem;
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .contact-info-box {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-color);
            margin-bottom: 2rem;
        }
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .product-img {
            height: 220px;
            object-fit: cover;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--accent-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-color);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
