:root {
            --primary-color: #2d5a27;
            --secondary-color: #8bc34a;
            --accent-color: #ff9800;
            --light-bg: #f8f9fa;
            --dark-text: #333333;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand img {
            height: 50px;
            margin-right: 10px;
        }
        .hero-section {
            background: linear-gradient(rgba(45, 90, 39, 0.85), rgba(139, 195, 74, 0.8)), url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-top: 76px;
        }
        .section-title {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        .product-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--primary-color);
            padding-left: 20px;
        }
        .contact-info {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }
        .contact-icon {
            color: var(--primary-color);
            font-size: 24px;
            margin-right: 15px;
        }
        .friendlink {
            background: var(--light-bg);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 5px;
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
        }
        .footer a {
            color: #d1e7dd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .section-title:after {
                width: 60px;
            }
        }
        .map-container {
            height: 300px;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -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;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
        }
        .certificate-badge {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.2rem;
            color: var(--dark-text);
        }
