:root {
            --primary-color: #0056b3;
            --secondary-color: #28a745;
            --accent-color: #ffc107;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --gray-color: #6c757d;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            color: var(--dark-color) !important;
            transition: var(--transition);
            border-radius: 4px;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            background-color: rgba(0, 86, 179, 0.08);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 50, 100, 0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .hero-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            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(--primary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            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);
        }
        .product-card {
            border-top: 4px solid var(--primary-color);
            overflow: hidden;
        }
        .product-card .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }
        .product-card:hover .card-img-top {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(0, 86, 179, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .facility-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .facility-img:hover {
            transform: translateY(-5px);
        }
        .quality-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            margin: 0.5rem;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--primary-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        .contact-info-box {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .contact-info-box i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .flink {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            background-color: var(--light-color);
            border-radius: 5px;
            color: var(--dark-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: #1a1a2e;
            color: #ddd;
            padding-top: 4rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-title {
            color: white;
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .copyright {
            background-color: #0f0f1a;
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            text-decoration: none;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--dark-color);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item::after {
                left: 18px;
            }
            .timeline-item:nth-child(even)::after {
                left: 18px;
            }
        }
