/* 全局样式 - 浪漫轻奢金属风 */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: #fdf7f2;
            color: #3d2b1f;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a { color: #b86b57; text-decoration: none; transition: 0.3s; }
        a:hover { color: #9a4a3a; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* 导航 */
        nav {
            background: linear-gradient(135deg, #e8cbb0 0%, #d4a58a 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(180, 120, 90, 0.15);
            border-bottom: 1px solid #d9bca5;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #5a3e2e;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            padding: 6px 14px;
            border-radius: 30px;
            background: rgba(255, 245, 235, 0.4);
            backdrop-filter: blur(2px);
            transition: 0.25s;
        }
        .nav-links a:hover {
            background: rgba(255, 235, 215, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(160, 100, 70, 0.2);
        }

        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.6rem;
            font-weight: 700;
            color: #7a4a36;
            padding: 50px 20px 20px;
            background: linear-gradient(to bottom, #f7e6d8, transparent);
            letter-spacing: 1px;
            text-shadow: 0 2px 12px rgba(180, 110, 80, 0.1);
        }

        /* 卡片风格 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: linear-gradient(145deg, #fefaf5, #f2e2d4);
            border: 1px solid #e4cdbb;
            border-radius: 32px;
            padding: 28px 22px;
            box-shadow: 0 12px 28px -8px rgba(140, 90, 60, 0.2), inset 0 1px 2px rgba(255,245,235,0.7);
            backdrop-filter: blur(2px);
            transition: 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 36px -12px rgba(160, 100, 70, 0.3);
        }
        .card h3 {
            color: #8a5a44;
            font-size: 1.5rem;
            border-bottom: 1px solid #dcc3b2;
            padding-bottom: 12px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 16px 0 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #b86b57;
        }

        /* 金属质感装饰 */
        .metal-divider {
            height: 4px;
            background: linear-gradient(90deg, transparent, #dbb8a0, #c8987c, #dbb8a0, transparent);
            width: 80%;
            margin: 0 auto;
            border-radius: 4px;
        }

        /* FAQ */
        .faq-item {
            background: #fcf4ec;
            border-left: 6px solid #cfa187;
            padding: 20px 24px;
            margin-bottom: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .faq-item h4 {
            color: #7a4a36;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        /* 新闻 */
        .news-item {
            background: white;
            border-radius: 28px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 6px 18px rgba(140, 90, 60, 0.08);
            border: 1px solid #e5d4c6;
        }
        .news-date {
            display: inline-block;
            background: #dbb8a0;
            color: #4a2f22;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 40px;
            margin-bottom: 10px;
        }

        /* 页脚 */
        footer {
            background: #2f221c;
            color: #ddd0c5;
            padding: 50px 20px 30px;
            margin-top: 70px;
            border-top: 2px solid #b0866e;
        }
        footer a { color: #dbb8a0; }
        footer a:hover { color: #f0d5c0; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin: 20px 0; }
        .footer-bottom { border-top: 1px solid #503e34; padding-top: 24px; margin-top: 30px; text-align: center; font-size: 0.9rem; }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #e0c4b2, #cfaa94);
            border-radius: 60px;
            padding: 48px 32px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 18px 40px -10px rgba(140, 90, 60, 0.3);
        }
        .cta-section h2 { color: #4f3326; font-size: 2.2rem; }
        .cta-btn {
            display: inline-block;
            background: #7a4a36;
            color: #fcf4ec !important;
            padding: 16px 48px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 24px;
            transition: 0.3s;
        }
        .cta-btn:hover { background: #9a5f48; transform: scale(1.02); }

        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.9rem; }
            .nav-links { gap: 14px; }
            .card-grid { grid-template-columns: 1fr; }
        }