* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif; background: #0a0f1e; color: #e5e7eb; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        header { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); padding: 18px 0; box-shadow: 0 4px 30px rgba(30,58,138,0.5); border-bottom: 2px solid #fbbf24; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .logo { font-size: 1.6rem; font-weight: 700; color: #fbbf24; letter-spacing: 2px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 8px; }
        .logo span { font-size: 1rem; color: #e0e7ff; font-weight: 400; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #e0e7ff; text-decoration: none; padding: 6px 14px; border-radius: 20px; font-weight: 500; transition: all 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: rgba(251,191,36,0.2); border-color: #fbbf24; color: #fbbf24; }
        h1 { font-size: 2.4rem; text-align: center; padding: 40px 0 20px; background: linear-gradient(to right, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        h2 { font-size: 2rem; color: #fbbf24; border-left: 5px solid #fbbf24; padding-left: 16px; margin: 50px 0 30px; }
        h3 { font-size: 1.4rem; color: #e0e7ff; margin: 20px 0 10px; }
        .card { background: linear-gradient(145deg, #162044, #1a2555); border-radius: 20px; padding: 30px; margin-bottom: 30px; border: 1px solid rgba(251,191,36,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: transform 0.3s; }
        .card:hover { transform: translateY(-4px); border-color: #fbbf24; }
        .gold-border { border-top: 3px solid #fbbf24; padding-top: 24px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
        img { max-width: 100%; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); transition: transform 0.3s; }
        img:hover { transform: scale(1.02); }
        .btn { display: inline-block; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #0a0f1e; padding: 12px 32px; border-radius: 40px; font-weight: 700; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { box-shadow: 0 0 30px rgba(251,191,36,0.6); transform: translateY(-2px); }
        .stat-box { text-align: center; padding: 30px 20px; background: rgba(30,58,138,0.3); border-radius: 20px; border: 1px solid rgba(251,191,36,0.15); }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #fbbf24; }
        .stat-label { font-size: 1rem; color: #94a3b8; margin-top: 8px; }
        .faq-item { border-bottom: 1px solid rgba(251,191,36,0.1); padding: 20px 0; }
        .faq-question { font-weight: 700; font-size: 1.1rem; color: #fbbf24; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { margin-top: 12px; color: #cbd5e1; line-height: 1.8; }
        .news-item { padding: 20px 0; border-bottom: 1px solid rgba(251,191,36,0.1); }
        .news-date { color: #94a3b8; font-size: 0.9rem; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 700; color: #e0e7ff; margin: 6px 0; }
        .news-summary { color: #b0b9ce; }
        .testimonial-box { background: rgba(30,58,138,0.2); padding: 28px; border-radius: 20px; border-left: 4px solid #fbbf24; }
        .testimonial-author { font-weight: 700; color: #fbbf24; margin-top: 10px; }
        footer { background: #0c1222; padding: 50px 0 20px; margin-top: 60px; border-top: 2px solid #fbbf24; }
        footer a { color: #94a3b8; text-decoration: none; margin: 0 8px; transition: color 0.3s; }
        footer a:hover { color: #fbbf24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-bottom: 20px; }
        .footer-info { text-align: center; color: #64748b; font-size: 0.9rem; line-height: 2; }
        .highlight { background: linear-gradient(145deg, #1e3a8a, #2563eb); padding: 60px 0; border-radius: 0; }
        .image-gallery { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .image-gallery img { width: 180px; height: 120px; object-fit: cover; border-radius: 12px; }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } h1 { font-size: 1.8rem; } .nav-links { width: 100%; justify-content: center; } }