          :root {
            --primary-dark: #0a3d1c;
            --primary-medium: #1b5e20;
            --primary-light: #2e7d32;
            --accent-gold: #c9a959;
            --accent-light: #e8f5e9;
            --text-dark: #2e2e2e;
            --text-light: #f5f5f5;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-dark);
            background-color: #f9f9f9;
        }
		
		a{text-decoration:none}
        .badge{padding:10px}
        /* 导航栏样式 */
        .navbar {
            background-color: #fff !important;
            box-shadow: 0 4px 12px rgba(10, 61, 28, 0.2);
            padding: 0.8rem 0;
        }
        
        .navbar-brand {
            color: var(--accent-gold) !important;
            font-weight: 700;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .nav-link {
            color:#0a3d1c !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s;
            padding: 8px 16px !important;
            border-radius: 4px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: #0a3d1c ;
            transform: translateY(-2px);
        }
        
        .nav-phone {
            display: flex;
            align-items: center;
            color: var(--accent-gold);
            font-weight: 600;
            margin-left: 20px;
            padding: 8px 16px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-phone i {
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
   .navbar-toggler{border:1px solid #0a3d1c;background:#0a3d1c}

     /* 页脚样式 */
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 70px 0 30px;
        }
        
        .footer h5 {
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-right: 12px;
            margin-top: 4px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .btn-herbal {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        
        .btn-herbal:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 28, 0.3);
        }
        