:root {
            --primary-color: #0a3d62;
            --secondary-color: #e67e22;
            --accent-color: #2c3e50;
            --light-color: #f9f9f9;
            --dark-color: #333;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--accent-color) !important;
            margin: 0 0.5rem;
            position: relative;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
            width: 80%;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(44, 62, 80, 0.9)), 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/cover;
            color: white;
            padding: 10rem 0 8rem;
            margin-top: 76px;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2.2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--secondary-color);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .product-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .product-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .product-card .card-body {
            padding: 1.5rem;
        }
        .bg-light-custom {
            background-color: var(--light-color);
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
            transition: var(--transition);
        }
        .news-item:hover {
            background-color: #f8f9fa;
            padding-left: 1rem;
        }
        .news-date {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: inline-block;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.8rem;
        }
        .contact-icon {
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.8rem;
            margin: 0.5rem;
            border-radius: 30px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 61, 98, 0.2);
        }
        footer {
            background-color: var(--accent-color);
            color: #ddd;
            padding: 4rem 0 2rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid #555;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }
        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .go-top.active {
            opacity: 1;
            visibility: visible;
        }
        .go-top:hover {
            background: var(--primary-color);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 7rem 0 5rem;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
        }
