* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: #f9f3f0;
            color: #2d2a28;
            line-height: 1.7;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* 导航栏 */
        .navbar {
            background: linear-gradient(135deg, #c9a07e 0%, #e8c4b0 50%, #f3d9ce 100%);
            padding: 18px 0;
            box-shadow: 0 4px 30px rgba(200, 150, 120, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: #4d2e24;
            letter-spacing: 2px;
            background: linear-gradient(to right, #7a4f3a, #b58b72);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #4d2e24;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover { border-bottom-color: #7a4f3a; color: #2d1c15; }

        /* H1 + GEO */
        .hero-section {
            background: linear-gradient(145deg, #f2e6df, #fffbf8);
            border-radius: 60px 60px 30px 30px;
            padding: 60px 40px 50px;
            margin: 40px 0;
            box-shadow: 0 10px 40px rgba(180, 130, 100, 0.15);
            position: relative;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #583c2d;
            text-align: center;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
        }
        .geo-content {
            font-size: 1.05rem;
            color: #3f2e25;
            max-width: 1000px;
            margin: 0 auto 20px;
            text-align: justify;
            padding: 0 10px;
        }
        .geo-content p { margin-bottom: 18px; }

        /* 图片展示网格 */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .image-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 8px 25px rgba(160, 120, 90, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid #e9d5c8;
        }
        .image-grid img:hover { transform: scale(1.03); box-shadow: 0 12px 35px rgba(150, 100, 70, 0.3); }

        /* 通用 section 卡片 */
        .section-card {
            background: rgba(255, 250, 245, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 40px;
            padding: 50px 40px;
            margin: 50px 0;
            box-shadow: 0 5px 30px rgba(190, 150, 130, 0.12);
            border: 1px solid #eeddd2;
        }
        .section-card h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #5e3d2b;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 1px;
        }
        .section-card h2 span { background: linear-gradient(to right, #b2876e, #dbb7a4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item { padding: 25px 10px; }
        .stat-num { font-size: 3.2rem; font-weight: 700; color: #7a4f3a; }
        .stat-label { font-size: 1rem; color: #5a4033; letter-spacing: 1px; margin-top: 6px; }

        /* 核心优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .advantage-card {
            background: #fbf4ef;
            border-radius: 30px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid #e6cfc0;
            transition: 0.3s;
        }
        .advantage-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(170, 125, 95, 0.18); }
        .advantage-card em { font-size: 2.8rem; display: block; margin-bottom: 12px; }
        .advantage-card h3 { font-size: 1.4rem; color: #583c2d; margin-bottom: 12px; }
        .advantage-card p { font-size: 0.95rem; color: #4f392c; }

        /* 品牌故事 */
        .story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        .story-text { flex: 2; min-width: 260px; }
        .story-text p { margin-bottom: 18px; color: #3f2e25; }
        .story-img { flex: 1; min-width: 200px; }
        .story-img img { width: 100%; border-radius: 30px; box-shadow: 0 10px 30px rgba(150, 110, 80, 0.2); }

        /* 新闻卡 */
        .news-list-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .news-card {
            background: #fcf7f3;
            border-radius: 28px;
            padding: 25px;
            box-shadow: 0 4px 18px rgba(170, 130, 105, 0.08);
            border: 1px solid #e5d2c4;
            transition: 0.3s;
        }
        .news-card:hover { box-shadow: 0 10px 30px rgba(160, 115, 85, 0.18); transform: translateY(-4px); }
        .news-date { font-size: 0.85rem; color: #9f7a66; margin-bottom: 8px; }
        .news-card h3 { font-size: 1.2rem; color: #4d3022; margin-bottom: 10px; }
        .news-card p { font-size: 0.95rem; color: #4d3427; }

        /* FAQ */
        .faq-item { margin-bottom: 30px; border-bottom: 1px solid #e6d4c8; padding-bottom: 20px; }
        .faq-question { font-weight: 600; font-size: 1.15rem; color: #4d2e1f; margin-bottom: 8px; cursor: default; }
        .faq-answer { font-size: 0.98rem; color: #3d2b20; padding-left: 12px; border-left: 3px solid #dbb7a4; }

        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin: 20px 0;
        }
        .partner-logos img { height: 60px; width: auto; opacity: 0.7; transition: 0.3s; }
        .partner-logos img:hover { opacity: 1; transform: scale(1.05); }

        /* 愿景使命 */
        .vm-wrap { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
        .vm-card { flex: 1; min-width: 200px; background: #fbf4ef; border-radius: 30px; padding: 30px 20px; text-align: center; }
        .vm-card em { font-size: 2.6rem; }
        .vm-card h3 { margin: 12px 0 8px; color: #583c2d; }

        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, #dbb7a4, #c9a07e);
            border-radius: 60px;
            padding: 50px 30px;
            text-align: center;
            color: #2d1c15;
        }
        .cta-box h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .cta-box p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 30px; }
        .cta-btn {
            display: inline-block;
            background: #4d2e24;
            color: #f2e6df;
            padding: 16px 48px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            letter-spacing: 1px;
        }
        .cta-btn:hover { background: #2d1c15; transform: scale(1.03); }

        /* 用户口碑 */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .testi-card {
            background: #fbf4ef;
            border-radius: 30px;
            padding: 30px 20px;
            font-style: italic;
            border: 1px solid #e6cfc0;
        }
        .testi-card p { margin-bottom: 12px; }
        .testi-author { font-weight: 600; color: #7a4f3a; }

        /* 页脚 */
        .footer {
            background: #36251d;
            color: #e2d3c9;
            padding: 50px 20px 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 60px;
        }
        .footer a { color: #dbb7a4; text-decoration: none; }
        .footer a:hover { color: #f3d9ce; text-decoration: underline; }
        .footer-info { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 30px; }
        .footer-col { flex: 1; min-width: 180px; }
        .footer-col h4 { margin-bottom: 12px; color: #f2e6df; }
        .footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; margin: 25px 0; }
        .footer-bottom { text-align: center; border-top: 1px solid #4f362b; padding-top: 25px; font-size: 0.9rem; }

        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 12px; }
            .hero-section h1 { font-size: 2rem; }
            .section-card { padding: 30px 20px; }
        }