* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', 'Songti SC', serif;
            background: #f5efe6;
            color: #3a2a1a;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #2d6a4f 0%, #b9944e 100%);
            padding: 16px 0;
            box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid #c9a75b;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 24px;
        }

        .nav-links a {
            color: #fcf3e0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: #e8d5a3;
            transform: translateY(-1px);
        }

        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 0 30px;
        }

        .hero-title h1 {
            font-size: 2.8rem;
            color: #2d6a4f;
            text-shadow: 2px 2px 0 #e8d5a3;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .hero-title .sub {
            color: #7a5a2a;
            font-size: 1.2rem;
            margin-top: 8px;
            font-style: italic;
        }

        /* 卡片 */
        .card {
            background: #fcf6ec;
            border: 1px solid #dcc9a6;
            border-radius: 12px;
            padding: 32px 28px;
            margin: 24px 0;
            box-shadow: 6px 6px 0 rgba(45, 106, 79, 0.08);
            position: relative;
        }

        .card-title {
            font-size: 1.6rem;
            color: #2d6a4f;
            margin-bottom: 20px;
            border-left: 6px solid #b9944e;
            padding-left: 16px;
            font-weight: 600;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }

        .img-card {
            background: #f9f0e0;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #dcc9a6;
        }

        .img-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .img-card .caption {
            padding: 14px 16px;
            font-size: 0.95rem;
            color: #4a3a2a;
        }

        /* 新闻 */
        .news-item {
            padding: 20px 0;
            border-bottom: 1px dashed #dcc9a6;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-date {
            color: #8a7a5a;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
            background: #e8dcc8;
            display: inline-block;
            padding: 2px 12px;
            border-radius: 12px;
            margin-bottom: 6px;
        }

        .news-title {
            font-size: 1.2rem;
            color: #2d6a4f;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .news-summary {
            color: #5a4a3a;
        }

        /* FAQ */
        .faq-item {
            margin: 16px 0;
            padding: 18px 20px;
            background: #f9f0e0;
            border-radius: 8px;
            border-left: 4px solid #b9944e;
        }

        .faq-q {
            font-weight: 600;
            color: #2d6a4f;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .faq-a {
            color: #4a3a2a;
        }

        /* GEO */
        .geo-text {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 16px;
            text-indent: 2em;
        }

        /* 页脚 */
        .footer {
            background: #2d3a2a;
            color: #dcc9a6;
            padding: 40px 0 24px;
            margin-top: 48px;
            border-top: 6px solid #b9944e;
        }

        .footer a {
            color: #e8d5a3;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer .info {
            text-align: center;
            font-size: 0.85rem;
            line-height: 1.8;
        }

        .footer .copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid #4a5a3a;
            font-size: 0.85rem;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 1.8rem; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .nav-links { gap: 6px 12px; }
            .nav-links a { font-size: 14px; padding: 4px 10px; }
        }

        /* 做旧纹理 */
        .card, .faq-item, .img-card {
            background-image: repeating-linear-gradient(45deg, rgba(45, 106, 79, 0.02) 0px, rgba(45, 106, 79, 0.02) 2px, transparent 2px, transparent 4px);
        }

        .btn {
            display: inline-block;
            background: #2d6a4f;
            color: #fcf3e0;
            padding: 12px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #b9944e;
            transition: all 0.3s;
        }

        .btn:hover {
            background: #3a7a5f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
        }

        .stats-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #2d6a4f;
        }

        .stats-label {
            font-size: 1rem;
            color: #7a5a2a;
        }

        .partner-logo {
            background: #f9f0e0;
            border: 1px solid #dcc9a6;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: #5a4a3a;
        }

        .testimonial {
            background: #f9f0e0;
            border-radius: 8px;
            padding: 20px;
            border: 1px solid #dcc9a6;
            font-style: italic;
        }

        .testimonial .author {
            font-weight: 600;
            margin-top: 12px;
            color: #2d6a4f;
        }