* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #f5efe6;
            color: #3a3a3a;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        header {
            background: #2d6a4f;
            padding: 15px 0;
            border-bottom: 3px solid #b7934b;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: #f5efe6;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 1px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s;
            background: rgba(255,255,255,0.08);
        }
        .nav-links a:hover {
            background: #b7934b;
            color: #1e3b2f;
        }
        /* H1 */
        h1 {
            text-align: center;
            color: #2d6a4f;
            font-size: 2.6rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #b7934b;
            text-shadow: 1px 1px 0 rgba(183, 147, 75, 0.3);
            letter-spacing: 2px;
        }
        h2 {
            color: #2d6a4f;
            border-left: 5px solid #b7934b;
            padding-left: 15px;
            margin: 40px 0 25px;
            font-size: 1.8rem;
        }
        /* 卡片做旧 */
        .card {
            background: #fcf9f2;
            border: 1px solid #dcd0b8;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 3px 3px 10px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,240,0.6);
            position: relative;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(183,147,75,0.03) 20px, rgba(183,147,75,0.03) 21px);
            border-radius: 12px;
            pointer-events: none;
        }
        /* 图片 */
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .img-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #dcd0b8;
            filter: sepia(0.2) contrast(0.9);
            transition: filter 0.3s;
        }
        .img-grid img:hover {
            filter: sepia(0) contrast(1);
        }
        /* 新闻 */
        .news-item {
            border-bottom: 1px dashed #dcd0b8;
            padding: 20px 0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            color: #b7934b;
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2d6a4f;
            margin-bottom: 8px;
        }
        .news-title a {
            color: #2d6a4f;
            text-decoration: none;
        }
        .news-title a:hover {
            color: #b7934b;
        }
        .news-summary {
            color: #555;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 25px;
            padding: 15px 20px;
            background: #fcf9f2;
            border-radius: 8px;
            border-left: 4px solid #b7934b;
        }
        .faq-q {
            font-weight: bold;
            color: #2d6a4f;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .faq-a {
            color: #444;
        }
        /* 页脚 */
        footer {
            background: #2d6a4f;
            color: #e0dccc;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #b7934b;
            text-align: center;
        }
        footer a {
            color: #e0dccc;
            text-decoration: underline;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-links {
            margin: 20px 0;
            font-size: 14px;
        }
        .footer-links a {
            margin: 0 8px;
        }
        .footer-info {
            font-size: 13px;
            line-height: 2;
        }
        .friend-links {
            margin: 25px 0 15px;
            padding: 15px 0;
            border-top: 1px solid rgba(255,255,255,0.15);
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }
        .friend-links a {
            margin: 0 5px;
        }
        /* 通用 */
        .geo-text {
            font-size: 1.05rem;
            text-indent: 2em;
            margin: 20px 0;
            color: #3a3a3a;
        }
        .cta-btn {
            display: inline-block;
            background: #b7934b;
            color: #1e3b2f;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 1px;
            transition: 0.3s;
            border: 1px solid #a07a3a;
            box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
        }
        .cta-btn:hover {
            background: #2d6a4f;
            color: #f5efe6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: #fcf9f2;
            padding: 20px 10px;
            border-radius: 10px;
            border: 1px solid #dcd0b8;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #b7934b;
        }
        .stat-label {
            color: #2d6a4f;
            margin-top: 5px;
        }
        .brand-story {
            font-style: italic;
            padding: 20px;
            background: #fcf9f2;
            border-radius: 10px;
            border: 1px solid #dcd0b8;
        }
        .timeline-item {
            border-left: 3px solid #b7934b;
            padding-left: 20px;
            margin: 20px 0;
        }
        .timeline-year {
            color: #b7934b;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 14px; }
        }