* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Serif SC', 'Georgia', serif;
            background: linear-gradient(145deg, #f5efe6 0%, #e8dcd0 100%);
            color: #3e2723;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(62,39,35,0.3);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #d7ccc8;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #3e2723;
        }
        .logo span {
            color: #bcaaa4;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #efebe9;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(255,255,255,0.08);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(215,204,200,0.2);
        }
        .nav-links a:hover {
            background: #d7ccc8;
            color: #3e2723;
            border-color: #d7ccc8;
            transform: translateY(-2px);
        }
        /* H1 */
        .hero-section {
            background: linear-gradient(145deg, #4e342e, #3e2723);
            color: #f5f0eb;
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 4px solid #a1887f;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 4px;
            text-shadow: 3px 3px 0 #2a1c18;
            margin-bottom: 10px;
        }
        .hero-section .sub {
            font-size: 1.2rem;
            color: #bcaaa4;
            margin-top: 8px;
        }
        /* Geo */
        .geo-intro {
            background: #fff8f3;
            padding: 40px 0;
            border-bottom: 1px solid #d7ccc8;
        }
        .geo-intro p {
            font-size: 1.05rem;
            max-width: 920px;
            margin: 0 auto;
            text-align: justify;
            color: #4e342e;
        }
        /* 通用板块 */
        .section {
            padding: 60px 0;
            border-bottom: 1px solid #d7ccc8;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #3e2723;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #a1887f;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin-top: 10px;
        }
        .card {
            background: linear-gradient(145deg, #faf5f0, #efebe9);
            border-radius: 20px;
            padding: 28px 22px;
            box-shadow: 10px 10px 24px rgba(62,39,35,0.08), -6px -6px 16px #fff8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(161,136,127,0.2);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 12px 14px 30px rgba(62,39,35,0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 14px;
            background: #d7ccc8;
        }
        .card h3 {
            font-size: 1.3rem;
            color: #3e2723;
            margin-bottom: 10px;
        }
        .card p {
            color: #5d4037;
            font-size: 0.95rem;
        }
        /* 新闻 */
        .news-item {
            background: #faf5f0;
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 18px;
            border-left: 6px solid #8d6e63;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .news-item .date {
            color: #795548;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            background: #d7ccc8;
            padding: 2px 14px;
            border-radius: 30px;
            margin-bottom: 8px;
        }
        .news-item h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #3e2723;
        }
        .news-item p {
            color: #5d4037;
        }
        /* FAQ */
        .faq-item {
            background: #fff8f3;
            border-radius: 18px;
            padding: 22px 26px;
            margin-bottom: 16px;
            border: 1px solid #d7ccc8;
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #3e2723;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .faq-item p {
            color: #4e342e;
        }
        /* 页脚 */
        .footer {
            background: #2a1c18;
            color: #bcaaa4;
            padding: 50px 0 30px;
            font-size: 0.95rem;
        }
        .footer a {
            color: #d7ccc8;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 28px;
        }
        .footer .info {
            text-align: center;
            line-height: 2;
        }
        .footer .info p {
            margin: 4px 0;
        }
        .footer .copyright {
            border-top: 1px solid #4e342e;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
        }