        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background-color: #f9fbf8;
            color: #2e3b2e;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #1f3b2c;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- 顶部导航栏 --- */
        .navbar {
            background-color: #ffffffda;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 40, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #d1e0cf;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 2rem;
            color: #3f7852;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 600;
            font-family: 'Quicksand', sans-serif;
            color: #1e4a2f;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            font-weight: 500;
        }

        .nav-links a {
            text-decoration: none;
            color: #2d4a33;
            font-size: 1.1rem;
            transition: color 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }

        .nav-links a:hover {
            color: #598b4c;
            border-bottom-color: #7daf72;
        }

        /* 移动端适配 */
        @media (max-width: 700px) {
            .nav-container {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
        }

        /* --- 英雄横幅 (欢迎区) --- */
        .hero {
            background: linear-gradient(135deg, #e9f3e6 0%, #d4e8d1 100%);
            padding: 60px 20px;
            border-radius: 0 0 50px 50px;
            margin-bottom: 40px;
            box-shadow: inset 0 -8px 12px -8px rgba(80, 100, 70, 0.1);
        }

        .hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero-text {
            flex: 1 1 300px;
        }

        .hero-text h2 {
            font-size: 3.2rem;
            line-height: 1.2;
            color: #1d4e2a;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 #ffffff90;
        }

        .hero-text p {
            font-size: 1.3rem;
            font-weight: 300;
            color: #2c5a34;
            margin-bottom: 20px;
        }

        .hero-btn {
            display: inline-block;
            background-color: #427d4e;
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 14px -6px #5d8d68;
            transition: 0.2s;
            border: 1px solid #34653e;
        }

        .hero-btn:hover {
            background-color: #2b6236;
            transform: translateY(-3px);
            box-shadow: 0 14px 18px -8px #3d6e48;
        }

        .hero-image {
            flex: 1 1 300px;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            width: 380px;
            border-radius: 30px;
            box-shadow: 20px 20px 0 #9bba94;
            border: 4px solid white;
            transition: transform 0.3s;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }

        /* --- 简介卡片 --- */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 60px 0 30px;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #8bb582;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .intro-card {
            background: white;
            border-radius: 40px;
            padding: 40px 30px;
            box-shadow: 0 20px 30px -10px rgba(60, 90, 60, 0.15);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin-bottom: 30px;
            border: 1px solid #deecdb;
        }

        .intro-text {
            flex: 2 1 300px;
            font-size: 1.2rem;
        }

        .intro-text p {
            margin-bottom: 15px;
        }

        .intro-highlight {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .highlight-item {
            background: #ebf5e8;
            border-radius: 50px;
            padding: 8px 18px;
            font-weight: 500;
            color: #23552e;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .intro-stats {
            flex: 1 1 200px;
            background: #f0f9ee;
            border-radius: 30px;
            padding: 25px;
            text-align: center;
            border: 2px dashed #9cc09c;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #2b743b;
            line-height: 1;
        }

        /* --- 风光 gallery 网格 (三图) --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .gallery-item {
            background-color: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 25px -12px #90a890;
            transition: all 0.25s;
            border: 1px solid #cde2d0;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 30px -12px #618b61;
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: 0.3s;
        }

        .gallery-item:hover img {
            scale: 1.05;
        }

        .gallery-caption {
            padding: 18px 15px 20px;
            background: white;
        }

        .gallery-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 6px;
        }

        .gallery-caption p {
            color: #47654a;
        }

        /* --- 特色板块 (住宿 / 美食) 卡片行 --- */
        .features-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0 20px;
        }

        .feature-card {
            flex: 1 1 280px;
            background: #ffffff;
            border-radius: 30px;
            padding: 30px 20px;
            box-shadow: 0 8px 20px #e0eedd;
            border: 1px solid #bcddb6;
            transition: 0.2s;
            text-align: center;
        }

        .feature-card:hover {
            background: #f4fff2;
        }

        .feature-icon {
            font-size: 3.2rem;
            color: #49855c;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .feature-list {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #c7e0c2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list i {
            color: #488a4e;
            width: 24px;
        }

        /* --- 村庄动态 (新闻/事件) --- */
        .news-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 900px;
            margin: 40px auto;
        }

        .news-item {
            background: white;
            border-radius: 60px;
            padding: 18px 28px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 5px 15px #deecdb;
            border-left: 8px solid #74a57f;
        }

        .news-date {
            background: #397d49;
            color: white;
            border-radius: 40px;
            padding: 8px 22px;
            font-weight: 600;
            font-size: 1.1rem;
            min-width: 110px;
            text-align: center;
        }

        .news-content {
            flex: 1;
            font-size: 1.2rem;
        }

        .news-content a {
            color: #1c5829;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px dotted;
        }

        /* --- 页脚 --- */
        .footer {
            background: #1f3523;
            color: #dbebd2;
            margin-top: 80px;
            padding: 50px 0 30px;
            border-radius: 50px 50px 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-about {
            flex: 2 1 260px;
        }

        .footer-about h4 {
            color: #b7dcb0;
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .footer-links {
            flex: 1 1 150px;
        }

        .footer-links h4, .footer-social h4 {
            color: #cbe8c3;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #c5e0bd;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-social i {
            font-size: 2rem;
            margin-right: 15px;
            color: #b7e0af;
            transition: 0.2s;
        }

        .footer-social i:hover {
            color: white;
            transform: scale(1.1);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            font-size: 0.95rem;
            color: #96ab91;
        }

        hr {
            border: none;
            border-top: 1px solid #3e613b;
            margin: 30px 0 10px;
        }

        /* 小点缀 */
        .tagline {
            font-style: italic;
        }
        