* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #f5efe6;
            color: #3a2e1f;
            line-height: 1.8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航 */
        .navbar {
            background-color: #2d6a4f;
            padding: 12px 0;
            border-bottom: 3px solid #d4a373;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .navbar .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: #f5efe6;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #3a2e1f;
        }

        .nav-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #f5efe6;
            text-decoration: none;
            font-size: 1rem;
            padding: 6px 14px;
            border: 1px solid transparent;
            border-radius: 30px;
            transition: all 0.3s;
            background: rgba(255,255,255,0.08);
        }

        .nav-links a:hover {
            background: #d4a373;
            color: #2d6a4f;
            border-color: #d4a373;
        }

        /* Hero */
        .hero {
            background: linear-gradient(145deg, #2d6a4f 0%, #3d8b5e 100%);
            color: #f5efe6;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "♠♥♦♣";
            font-size: 10rem;
            opacity: 0.06;
            position: absolute;
            top: -30px;
            left: -20px;
            transform: rotate(-15deg);
            letter-spacing: 30px;
        }

        .hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 3px 3px 0 #1b3d2e;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 通用区块 */
        section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
            color: #2d6a4f;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: "✦";
            display: block;
            font-size: 1.4rem;
            color: #d4a373;
            margin-top: 6px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
        }

        .card {
            background: #fcf8f0;
            border: 1px solid #e0d5c0;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 6px 6px 0 rgba(45, 106, 79, 0.12);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 10px 10px 0 rgba(45, 106, 79, 0.18);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 16px;
            border: 2px solid #d4a373;
        }

        .card h3 {
            color: #2d6a4f;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .card p {
            color: #5c4b37;
            font-size: 0.95rem;
        }

        .date-tag {
            display: inline-block;
            background: #d4a373;
            color: #f5efe6;
            font-size: 0.8rem;
            padding: 2px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        /* 新闻列表 */
        .news-list .card {
            padding: 20px 24px 24px;
        }

        /* FAQ */
        .faq-item {
            background: #fcf8f0;
            border-left: 5px solid #2d6a4f;
            padding: 18px 24px;
            margin-bottom: 16px;
            border-radius: 0 12px 12px 0;
            box-shadow: 3px 3px 0 rgba(45,106,79,0.06);
        }

        .faq-item h4 {
            color: #2d6a4f;
            font-size: 1.1rem;
            margin-bottom: 8px;
            cursor: pointer;
        }

        .faq-item p {
            color: #4a3e2e;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
            text-align: center;
        }

        .stat-box {
            background: #fcf8f0;
            border: 2px solid #d4a373;
            border-radius: 50% 50% 30% 30%;
            padding: 30px 16px;
            box-shadow: 0 8px 0 #2d6a4f;
        }

        .stat-box .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2d6a4f;
        }

        .stat-box .label {
            font-size: 1rem;
            color: #5c4b37;
        }

        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px 40px;
        }

        .partner-logos span {
            font-size: 1.1rem;
            color: #4a3e2e;
            background: #fcf8f0;
            padding: 8px 22px;
            border-radius: 40px;
            border: 1px solid #d4a373;
        }

        /* 用户口碑 */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
        }

        .testimonial {
            background: #fcf8f0;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid #e0d5c0;
            font-style: italic;
            position: relative;
        }

        .testimonial::before {
            content: "❝";
            font-size: 2.4rem;
            color: #d4a373;
            position: absolute;
            top: -6px;
            left: 12px;
        }

        .testimonial .author {
            margin-top: 14px;
            font-style: normal;
            font-weight: bold;
            color: #2d6a4f;
        }

        /* 品牌故事 */
        .brand-story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }

        .brand-story-content .text {
            flex: 2;
            min-width: 280px;
        }

        .brand-story-content .image {
            flex: 1;
            min-width: 200px;
        }

        .brand-story-content img {
            width: 100%;
            border-radius: 16px;
            border: 3px solid #d4a373;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #2d6a4f 0%, #3d8b5e 100%);
            color: #f5efe6;
            text-align: center;
            padding: 70px 20px;
            border-radius: 40px 40px 0 0;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 28px;
        }

        .cta-btn {
            background: #d4a373;
            color: #2d6a4f;
            border: none;
            padding: 14px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background: #f5efe6;
            color: #2d6a4f;
            transform: scale(1.02);
        }

        /* 页脚 */
        footer {
            background-color: #1f3d30;
            color: #d1d1c6;
            padding: 40px 0 20px;
            font-size: 0.95rem;
        }

        footer a {
            color: #d4a373;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 24px;
        }

        footer .footer-info {
            text-align: center;
            line-height: 2;
        }

        footer .copyright {
            text-align: center;
            margin-top: 20px;
            border-top: 1px solid #3a5a4a;
            padding-top: 20px;
            font-size: 0.85rem;
        }

        /* 通用 */
        .geo-text {
            font-size: 1.05rem;
            max-width: 900px;
            margin: 0 auto 30px;
            text-align: center;
            line-height: 1.9;
        }

        .img-round {
            border-radius: 12px;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 1.8rem; }
            .nav-links { justify-content: center; margin-top: 10px; }
            .navbar .container { flex-direction: column; }
        }