* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: #f5f0eb; color: #2d2d2d; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(135deg, #1e3a8a, #2563eb); padding: 15px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.2); border-bottom: 3px solid #d4af37; }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { color: #fff; font-size: 1.8rem; font-weight: bold; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .logo span { color: #d4af37; }
        .nav-links { display: flex; gap: 25px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 1.1rem; padding: 8px 16px; border-radius: 25px; transition: background 0.3s; }
        .nav-links a:hover { background: rgba(212,175,55,0.3); }
        /* H1 区域 */
        .hero-section { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); padding: 60px 20px; text-align: center; border-bottom: 4px solid #d4af37; }
        .hero-section h1 { color: #fff; font-size: 2.8rem; margin-bottom: 15px; text-shadow: 3px 3px 6px rgba(0,0,0,0.3); }
        .hero-section p { color: #e0e7ff; font-size: 1.2rem; max-width: 800px; margin: 0 auto; }
        /* 卡片通用 */
        .card { background: #fff; border: 1px solid #e5e0d8; border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); border-top: 4px solid #d4af37; transition: transform 0.3s; }
        .card:hover { transform: translateY(-5px); }
        .card h2, .card h3 { color: #1e3a8a; margin-bottom: 15px; }
        .gold-line { height: 3px; background: linear-gradient(90deg, #d4af37, #f0d68a); width: 80px; margin: 10px 0 20px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
        img { max-width: 100%; height: auto; border-radius: 12px; margin: 15px 0; border: 2px solid #e5e0d8; }
        .btn { display: inline-block; background: #1e3a8a; color: #fff; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: background 0.3s; border: 2px solid #d4af37; }
        .btn:hover { background: #2563eb; }
        /* 页脚 */
        .footer { background: #1a1a2e; color: #ccc; padding: 40px 20px; text-align: center; border-top: 4px solid #d4af37; }
        .footer a { color: #d4af37; text-decoration: none; margin: 0 10px; }
        .footer a:hover { text-decoration: underline; }
        .footer .links { margin: 20px 0; font-size: 0.9rem; }
        .footer .copyright { margin-top: 20px; font-size: 0.85rem; color: #888; }
        /* 新闻列表 */
        .news-item { border-bottom: 1px solid #eee; padding: 20px 0; }
        .news-item:last-child { border-bottom: none; }
        .news-item h3 { color: #1e3a8a; }
        .news-date { color: #888; font-size: 0.9rem; margin-bottom: 8px; display: block; }
        .faq-item { margin-bottom: 25px; }
        .faq-item h4 { color: #1e3a8a; cursor: pointer; }
        .faq-item p { margin-top: 8px; color: #444; }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2rem; }
            .nav-links { gap: 10px; justify-content: center; margin-top: 10px; }
            .navbar .container { flex-direction: column; }
        }