:root {
            --primary-color: #2c7a5e;
            --secondary-color: #f8b62d;
            --light-color: #f4f9f4;
            --dark-color: #1a3c2f;
            --gray-color: #6c757d;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark-color);
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-color) !important;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .nav-link:hover::after, .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 60, 47, 0.85), rgba(44, 122, 94, 0.8)), url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #e6a20c;
            border-color: #e6a20c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .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(--secondary-color);
            border-radius: 2px;
        }
        .icon-box {
            background-color: var(--light-color);
            border-radius: 15px;
            padding: 2.5rem 1.5rem;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(44, 122, 94, 0.1);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        .icon-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
            background-color: white;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .product-card-body {
            padding: 1.5rem;
        }
        .news-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .news-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .news-card-body {
            padding: 1.5rem;
        }
        .news-date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .contact-info-box {
            background-color: var(--light-color);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        footer {
            background-color: var(--dark-color);
            color: rgba(255,255,255,0.8);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        footer a {
            color: rgba(255,255,255,0.8);
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            color: #555;
            font-weight: 500;
            transition: var(--transition);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .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.25rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
            .nav-link::after {
                display: none;
            }
        }
