* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: #3e2723; color: #e0d5c1; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: linear-gradient(135deg, #2c1a14 0%, #4e342e 100%); padding: 18px 0; border-bottom: 2px solid #a1887f; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
        .nav-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .nav-links a { color: #d7ccc8; text-decoration: none; font-size: 1.1rem; font-weight: bold; padding: 8px 18px; border-radius: 30px; transition: all 0.3s; background: rgba(255,255,255,0.05); }
        .nav-links a:hover { background: #a1887f; color: #2c1a14; }
        /* H1 */
        h1 { font-size: 2.8rem; text-align: center; padding: 50px 20px 20px; color: #efebe9; text-shadow: 2px 2px 8px #1a0e0a; letter-spacing: 2px; }
        /* 通用 */
        h2 { font-size: 2rem; color: #efebe9; margin-bottom: 30px; text-align: center; border-bottom: 2px solid #a1887f; padding-bottom: 12px; }
        h3 { color: #d7ccc8; margin-bottom: 15px; font-size: 1.4rem; }
        .section { padding: 50px 0; }
        .section-alt { background: linear-gradient(145deg, #2c1a14, #4e342e); }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .card { background: linear-gradient(145deg, #4e342e, #3e2723); padding: 25px; border-radius: 12px; border: 1px solid #6d4c41; box-shadow: 0 8px 20px rgba(0,0,0,0.4); transition: transform 0.3s; }
        .card:hover { transform: translateY(-5px); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; border: 2px solid #8d6e63; }
        .card p { color: #bcaaa4; }
        /* 新闻 */
        .news-item { background: #3e2723; padding: 25px; margin-bottom: 25px; border-left: 6px solid #a1887f; border-radius: 0 12px 12px 0; }
        .news-item .date { color: #bcaaa4; font-size: 0.9rem; margin-bottom: 8px; }
        .news-item h3 { color: #efebe9; }
        .news-item p { color: #bcaaa4; }
        /* FAQ */
        .faq-item { margin-bottom: 25px; padding: 20px; background: #3e2723; border-radius: 10px; border: 1px solid #5d4037; }
        .faq-item h3 { color: #d7ccc8; cursor: pointer; }
        .faq-item p { color: #bcaaa4; margin-top: 10px; }
        /* 页脚 */
        footer { background: #1a0e0a; padding: 40px 0; margin-top: 50px; border-top: 3px solid #6d4c41; }
        footer p, footer a { color: #8d6e63; font-size: 0.9rem; }
        footer a { text-decoration: underline; margin: 0 5px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
        .footer-info { text-align: center; }
        /* CTA */
        .cta-section { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #4e342e, #2c1a14); border-radius: 20px; margin: 30px 0; }
        .cta-section a { display: inline-block; background: #a1887f; color: #2c1a14; padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1.2rem; text-decoration: none; transition: all 0.3s; }
        .cta-section a:hover { background: #d7ccc8; transform: scale(1.05); }
        /* 统计数字 */
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
        .stat-number { font-size: 2.8rem; font-weight: bold; color: #efebe9; }
        .stat-label { color: #bcaaa4; font-size: 1.1rem; }
        /* hero */
        .hero { min-height: 400px; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #2c1a14, #4e342e); border-radius: 20px; margin-bottom: 30px; padding: 40px; }
        .hero-content { text-align: center; }
        .hero-content p { font-size: 1.3rem; max-width: 700px; margin: 0 auto; color: #d7ccc8; }
        /* 通用图片 */
        img { max-width: 100%; }
        .img-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 20px 0; }
        .img-row img { width: 280px; height: 180px; object-fit: cover; border-radius: 10px; border: 2px solid #6d4c41; }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 15px; }
            .nav-links a { font-size: 0.9rem; padding: 6px 12px; }
        }