* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        body {
            background: #f1ebe5;
            color: #2c2c2c;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #2d6a4f 0%, #c9a96e 100%);
            padding: 15px 0;
            border-bottom: 3px solid #b58b4a;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: #fef7e6;
            text-decoration: none;
            font-size: 1.05rem;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(255,255,255,0.12);
            transition: all 0.3s;
            letter-spacing: 1px;
            font-weight: bold;
        }
        .nav-links a:hover {
            background: #fef7e6;
            color: #2d6a4f;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.6rem;
            color: #2d6a4f;
            padding: 40px 20px 20px;
            text-shadow: 2px 2px 0 #dcc8a0;
            letter-spacing: 2px;
            word-break: break-word;
        }
        h1 span {
            background: #f1ebe5;
            padding: 0 10px;
        }
        /* GEO 区块 */
        #geo-intro {
            background: #e5dccb;
            padding: 35px 25px;
            border-radius: 28px 8px 28px 8px;
            margin: 20px 0 40px;
            border-left: 6px solid #2d6a4f;
            box-shadow: inset 0 0 0 1px #d6c6ae;
        }
        #geo-intro p {
            font-size: 1.1rem;
            color: #3a3a3a;
        }
        /* 通用区块 */
        section {
            margin: 50px 0;
            padding: 30px 25px;
            background: #f9f3ea;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
            border: 1px solid #dccbb5;
        }
        h2 {
            color: #2d6a4f;
            font-size: 2rem;
            margin-bottom: 25px;
            border-bottom: 2px dashed #c9a96e;
            padding-bottom: 10px;
            display: inline-block;
        }
        /* 卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }
        .card {
            background: #fefbf5;
            padding: 20px;
            border-radius: 18px;
            border: 1px solid #dccbb5;
            box-shadow: 3px 3px 0 #b7a285;
            transition: 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 6px 6px 0 #b7a285;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 12px;
            filter: sepia(0.2);
            background: #dccbb5;
        }
        .card h3 {
            color: #2d6a4f;
            margin-bottom: 8px;
        }
        .card p {
            font-size: 0.95rem;
            color: #444;
        }
        .date-badge {
            background: #c9a96e;
            color: #1e1e1e;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 10px;
            font-weight: bold;
        }
        /* FAQ */
        .faq-item {
            background: #fefbf5;
            border-radius: 16px;
            padding: 18px 22px;
            margin-bottom: 16px;
            border: 1px solid #dccbb5;
        }
        .faq-item h3 {
            color: #2d6a4f;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item p {
            margin-top: 12px;
            color: #3e3e3e;
            line-height: 1.8;
        }
        /* 页脚 */
        footer {
            background: #2d3e30;
            color: #e5dccb;
            padding: 40px 20px 20px;
            margin-top: 60px;
            border-top: 5px solid #c9a96e;
        }
        footer .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        footer a {
            color: #e5dccb;
            text-decoration: underline wavy #c9a96e 1px;
        }
        footer .friend-links {
            margin: 25px 0 15px;
            text-align: center;
            font-size: 0.95rem;
        }
        footer .friend-links a {
            margin: 0 6px;
        }
        footer .copyright {
            text-align: center;
            border-top: 1px solid #506b4a;
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .btn-cta {
            display: inline-block;
            background: #2d6a4f;
            color: #fef7e6;
            padding: 14px 38px;
            border-radius: 40px;
            font-weight: bold;
            text-decoration: none;
            font-size: 1.2rem;
            border: 2px solid #b58b4a;
            transition: 0.3s;
        }
        .btn-cta:hover {
            background: #1f4d39;
            border-color: #c9a96e;
            transform: scale(1.02);
        }
        .text-center {
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.9rem; }
        }