* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: #f5ede0; color: #3a2e1f; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: #2d6a4f; padding: 15px 0; border-bottom: 3px solid #b89b6b; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 24px; font-weight: bold; color: #f5ede0; letter-spacing: 2px; text-shadow: 2px 2px 0 #1b4332; }
        .nav-links { display: flex; gap: 25px; flex-wrap: wrap; }
        .nav-links a { color: #e9d8b5; text-decoration: none; font-size: 15px; padding: 6px 12px; border-radius: 4px; transition: all 0.3s; background: rgba(0,0,0,0.15); border: 1px solid #b89b6b; }
        .nav-links a:hover { background: #b89b6b; color: #1b4332; }
        /* 通用 */
        h1, h2, h3 { font-weight: normal; letter-spacing: 1px; }
        h1 { font-size: 36px; color: #2d6a4f; text-align: center; padding: 40px 0 20px; border-bottom: 2px dashed #b89b6b; margin-bottom: 30px; }
        h2 { font-size: 28px; color: #2d6a4f; margin: 40px 0 20px; padding-left: 15px; border-left: 5px solid #b89b6b; }
        h3 { font-size: 20px; color: #3a2e1f; margin: 15px 0 8px; }
        .card { background: #fcf8f0; border: 1px solid #d4c5a9; border-radius: 8px; padding: 20px; margin-bottom: 25px; box-shadow: 4px 4px 0 #d4c5a9; }
        .card img { max-width: 100%; height: auto; border-radius: 4px; margin-bottom: 12px; border: 2px solid #b89b6b; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
        .btn { display: inline-block; background: #2d6a4f; color: #f5ede0; padding: 10px 25px; text-decoration: none; border-radius: 4px; border: 1px solid #b89b6b; transition: 0.3s; }
        .btn:hover { background: #1b4332; }
        hr { border: 0; height: 1px; background: linear-gradient(to right, transparent, #b89b6b, transparent); margin: 30px 0; }
        .meta { color: #8a7a5a; font-size: 14px; }
        /* 页脚 */
        .footer { background: #2d6a4f; color: #e9d8b5; padding: 40px 0 20px; margin-top: 50px; border-top: 3px solid #b89b6b; }
        .footer a { color: #e9d8b5; text-decoration: underline; }
        .footer .links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 20px; }
        .footer .links a { padding: 4px 10px; background: rgba(0,0,0,0.2); border-radius: 4px; text-decoration: none; }
        .footer .links a:hover { background: #b89b6b; color: #1b4332; }
        .footer .copy { text-align: center; font-size: 14px; opacity: 0.8; }
        /* 组件 */
        .hero { background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%); color: #f5ede0; padding: 60px 0; text-align: center; border-radius: 8px; margin-bottom: 30px; }
        .hero h2 { color: #f5ede0; border: none; font-size: 36px; }
        .hero p { font-size: 18px; max-width: 700px; margin: 20px auto; }
        .stats { text-align: center; }
        .stats .num { font-size: 42px; font-weight: bold; color: #2d6a4f; }
        .stats .label { font-size: 14px; color: #8a7a5a; }
        .faq-item { margin-bottom: 20px; }
        .faq-item q { font-weight: bold; display: block; color: #2d6a4f; font-style: italic; }
        .faq-item p { margin-top: 8px; }
        .news-card { padding: 15px; }
        .news-card .date { color: #b89b6b; font-size: 13px; }
        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 15px; }
            .nav-links { justify-content: center; }
        }