* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #faf6f2;
            color: #2d2a2a;
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #c9a96c, #e8cfa6);
            padding: 12px 0;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(201, 169, 108, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-brand {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 2px;
            color: #4a3020;
            text-shadow: 0 2px 4px rgba(255,215,180,0.5);
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 600;
            color: #4a3020;
            transition: 0.3s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .nav-links a:hover {
            border-bottom-color: #b8865b;
            color: #1f1a15;
        }
        @media (max-width: 768px) {
            nav .container { flex-direction: column; gap: 10px; }
        }
        /* H1 */
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            padding: 50px 20px 20px;
            background: linear-gradient(145deg, #f3e7d3, #ecdcc0);
            color: #3f2c1e;
            letter-spacing: 2px;
            text-shadow: 0 4px 10px rgba(201, 169, 108, 0.25);
            border-bottom: 2px solid #dbbd9a;
        }
        h1 small {
            display: block;
            font-size: 1.1rem;
            font-weight: 400;
            color: #6b4f3a;
            margin-top: 10px;
        }
        /* 通用区块样式 */
        section {
            padding: 60px 20px;
            background: #fffefc;
        }
        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 600;
            color: #4a3020;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c9a96c, #e8cfa6);
            margin: 12px auto 0;
            border-radius: 10px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .card {
            background: #fefcf8;
            border-radius: 24px;
            padding: 28px 20px;
            box-shadow: 0 12px 28px rgba(201, 169, 108, 0.15), inset 0 0 0 1px rgba(255,215,180,0.5);
            transition: all 0.3s;
            border: 1px solid #e6d3bb;
            backdrop-filter: blur(2px);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(201, 169, 108, 0.25);
            border-color: #d4b48c;
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .card h3 {
            font-size: 1.25rem;
            color: #3f2c1e;
            margin-bottom: 10px;
        }
        .card p {
            color: #5a4a3a;
            font-size: 0.95rem;
        }
        .btn-ghost {
            display: inline-block;
            padding: 8px 22px;
            border-radius: 40px;
            background: linear-gradient(135deg, #dbbd9a, #c9a96c);
            color: #2d1e10;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            margin-top: 12px;
        }
        .btn-ghost:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(201, 169, 108, 0.4);
        }
        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        .geo-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #4a3b2e;
            padding: 10px 0;
        }
        /* FAQ */
        .faq-item {
            background: #faf5ed;
            border-left: 6px solid #c9a96c;
            margin-bottom: 28px;
            padding: 20px 30px;
            border-radius: 0 20px 20px 0;
            box-shadow: 0 4px 12px rgba(201, 169, 108, 0.1);
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #3f2c1e;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #4e3e2e;
        }
        /* 新闻卡片 */
        .news-card {
            background: #fdf9f4;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(201, 169, 108, 0.1);
            border: 1px solid #e6d3bb;
            transition: 0.3s;
        }
        .news-card:hover {
            background: #fffbf5;
            box-shadow: 0 12px 28px rgba(201, 169, 108, 0.2);
        }
        .news-card .date {
            color: #b8865b;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .news-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #2d1e10;
        }
        .news-card p {
            color: #5a4a3a;
        }
        /* 页脚 */
        footer {
            background: #2d241c;
            color: #ddd2c4;
            padding: 50px 20px 30px;
            margin-top: 20px;
        }
        footer .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        footer a {
            color: #dbbd9a;
            transition: 0.3s;
        }
        footer a:hover {
            color: #f7e5cb;
        }
        footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 16px 0;
        }
        footer .footer-bottom {
            border-top: 1px solid #4a3b2e;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #c9a96c, #b8865b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stats-label {
            color: #5a4a3a;
        }
        .partner-logo {
            background: #f7f0e6;
            border-radius: 100px;
            padding: 12px 28px;
            font-weight: 600;
            color: #4a3020;
            border: 1px solid #dbbd9a;
            display: inline-block;
        }
        @media (max-width: 600px) {
            h1 { font-size: 1.9rem; }
            .section-title { font-size: 1.6rem; }
        }