* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #fcf6f2; color: #2d2a2e; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 玫瑰金 → 粉金主调 */
        .bg-rosegold { background: linear-gradient(135deg, #f7d4cb 0%, #f5e1da 100%); }
        .text-rosegold { color: #b76e6e; }
        .btn-rosegold { background: #c9887a; color: #fff; padding: 12px 28px; border-radius: 40px; border: none; font-weight: 600; cursor: pointer; transition: 0.3s; }
        .btn-rosegold:hover { background: #b06d5e; transform: scale(1.02); box-shadow: 0 8px 24px rgba(183,110,110,0.3); }
        .card-metal { background: #fffcf9; border-radius: 24px; box-shadow: 0 10px 30px rgba(183,110,110,0.15), inset 0 1px 0 rgba(255,255,255,0.7); border: 1px solid #f0ded6; transition: 0.3s; }
        .card-metal:hover { box-shadow: 0 20px 40px rgba(183,110,110,0.2); transform: translateY(-2px); }
        .gold-text { background: linear-gradient(135deg, #c9887a, #e6bba8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        /* 导航 */
        .navbar { background: rgba(255,252,249,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid #f0ded6; padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
        .nav-links a { text-decoration: none; color: #4d3d3a; font-weight: 500; font-size: 0.98rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.2s; }
        .nav-links a:hover { color: #b76e6e; border-bottom-color: #c9887a; }
        .logo-area { font-size: 1.6rem; font-weight: 700; letter-spacing: 0.5px; }
        /* H1 */
        h1 { font-size: 2.6rem; font-weight: 700; color: #3d2b28; margin: 0.4em 0 0.3em; }
        h2 { font-size: 2rem; margin-bottom: 24px; color: #3d2b28; }
        h3 { font-size: 1.3rem; color: #3d2b28; }
        /* 区块 */
        section { padding: 60px 0; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 30px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
        img { max-width: 100%; height: auto; border-radius: 20px; box-shadow: 0 8px 28px rgba(183,110,110,0.15); }
        .icon-big { font-size: 2.6rem; margin-bottom: 12px; }
        .number-stat { font-size: 2.8rem; font-weight: 700; }
        /* FAQ */
        .faq-item { margin-bottom: 18px; padding: 20px 24px; border-radius: 20px; background: #fffcf9; border: 1px solid #f0ded6; }
        .faq-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: #b76e6e; }
        .faq-item p { color: #4d3d3a; }
        /* 新闻 */
        .news-card { padding: 24px; }
        .news-card .date-tag { font-size: 0.85rem; color: #b76e6e; background: #f7ded6; padding: 4px 12px; border-radius: 40px; display: inline-block; margin-bottom: 8px; }
        .news-card h3 { margin-bottom: 8px; }
        .news-card p { color: #5a4a46; }
        /* 页脚 */
        footer { background: #2d2a2e; color: #e4d9d4; padding: 40px 0 24px; margin-top: 40px; }
        footer a { color: #e6bba8; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; margin: 24px 0 16px; }
        .footer-info { text-align: center; font-size: 0.9rem; line-height: 2; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2 { grid-template-columns: 1fr; }
            .nav-inner { flex-direction: column; align-items: flex-start; }
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .pt-0 { padding-top: 0; }
        .pb-0 { padding-bottom: 0; }
        .rounded-full { border-radius: 60px; }