* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: #f5efe6; color: #2c3e2d; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(145deg, #2d6a4f 0%, #3b7859 100%); padding: 20px 0; border-bottom: 4px solid #d4a373; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo h1 { color: #fefae0; font-size: 1.8rem; letter-spacing: 2px; text-shadow: 2px 2px 0 #1b4332; }
        .logo h1 span { color: #d4a373; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #fefae0; text-decoration: none; font-size: 1rem; padding: 8px 16px; border-radius: 30px; background: rgba(255,255,255,0.1); transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
        .nav-links a:hover { background: #d4a373; color: #2d6a4f; border-color: #d4a373; }
        .hero { background: url('/img/home.webp') no-repeat center/cover; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; position: relative; }
        .hero::after { content: ''; position: absolute; inset: 0; background: rgba(45, 106, 79, 0.7); }
        .hero-content { position: relative; z-index: 2; color: #fefae0; max-width: 800px; }
        .hero-content h2 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 2px 2px 0 #1b4332; }
        .hero-content p { font-size: 1.2rem; margin-bottom: 30px; line-height: 1.8; }
        .btn { display: inline-block; padding: 14px 40px; background: #d4a373; color: #2d6a4f; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1rem; transition: all 0.3s; border: 2px solid #d4a373; }
        .btn:hover { background: transparent; color: #fefae0; border-color: #fefae0; }
        .section { padding: 60px 0; }
        .section-title { text-align: center; font-size: 2rem; color: #2d6a4f; margin-bottom: 40px; position: relative; }
        .section-title::after { content: ''; display: block; width: 80px; height: 3px; background: #d4a373; margin: 12px auto 0; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .card { background: #fff9f0; border: 1px solid #e2d5c0; border-radius: 16px; padding: 24px; box-shadow: 6px 6px 0 rgba(45, 106, 79, 0.08); transition: transform 0.3s; }
        .card:hover { transform: translateY(-4px); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; border: 2px solid #d4a373; }
        .card h3 { color: #2d6a4f; margin-bottom: 12px; font-size: 1.3rem; }
        .card p { color: #4a5d4e; font-size: 0.95rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
        .stat-item { background: #fff9f0; padding: 30px 20px; border-radius: 16px; border: 1px solid #e2d5c0; }
        .stat-number { font-size: 2.5rem; font-weight: bold; color: #d4a373; }
        .stat-label { color: #2d6a4f; margin-top: 8px; font-size: 1rem; }
        .faq-item { background: #fff9f0; border: 1px solid #e2d5c0; border-radius: 12px; margin-bottom: 16px; padding: 20px; }
        .faq-item h4 { color: #2d6a4f; cursor: pointer; font-size: 1.1rem; }
        .faq-item p { margin-top: 12px; color: #4a5d4e; line-height: 1.8; }
        .footer { background: #2d6a4f; color: #fefae0; padding: 40px 0; margin-top: 40px; border-top: 4px solid #d4a373; }
        .footer a { color: #d4a373; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer .friend-links { margin: 20px 0; font-size: 0.9rem; }
        .footer .friend-links a { margin: 0 8px; }
        .footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; margin-top: 20px; font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; }
        .news-list { display: grid; gap: 24px; }
        .news-item { background: #fff9f0; border: 1px solid #e2d5c0; border-radius: 16px; padding: 24px; }
        .news-item h3 { color: #2d6a4f; margin-bottom: 8px; }
        .news-item .date { color: #8a9b8e; font-size: 0.9rem; margin-bottom: 12px; display: block; }
        .news-item p { color: #4a5d4e; }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; gap: 16px; }
            .hero-content h2 { font-size: 2rem; }
        }