* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: #f5efe6; color: #3a2e1a; line-height: 1.8; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #2d6a4f; border-bottom: 4px solid #b5863a; padding: 20px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        header h1 { font-size: 1.6rem; color: #fae3b4; text-align: center; letter-spacing: 2px; text-shadow: 2px 2px 0 #1a3b2c; }
        .nav-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 15px; }
        .nav-links a { color: #fae3b4; text-decoration: none; font-size: 1rem; padding: 6px 14px; border: 1px solid #b5863a; border-radius: 4px; background: rgba(255,255,255,0.08); transition: 0.3s; }
        .nav-links a:hover { background: #b5863a; color: #1a3b2c; }
        .hero { background: linear-gradient(135deg, #2d6a4f 0%, #b5863a 100%); padding: 60px 0; text-align: center; margin: 30px 0; border-radius: 8px; color: #fae3b4; }
        .hero h2 { font-size: 2.2rem; margin-bottom: 20px; letter-spacing: 3px; }
        .hero p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }
        .geo-intro { background: #fffaf0; padding: 40px 20px; border-radius: 8px; margin: 30px 0; border-left: 6px solid #2d6a4f; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        .geo-intro p { font-size: 1.05rem; text-indent: 2em; }
        .section-title { font-size: 1.8rem; color: #2d6a4f; border-bottom: 3px solid #b5863a; padding-bottom: 10px; margin: 40px 0 30px; display: inline-block; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 30px 0; }
        .card { background: #fffaf0; border: 1px solid #d4c5a0; border-radius: 6px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); transition: 0.3s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(45,106,79,0.15); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; margin-bottom: 12px; border: 2px solid #d4c5a0; }
        .card h3 { color: #2d6a4f; margin-bottom: 8px; font-size: 1.25rem; }
        .card p { font-size: 0.95rem; color: #4a3e2a; }
        .news-item { background: #fffaf0; padding: 20px; margin-bottom: 16px; border-radius: 6px; border-left: 4px solid #b5863a; }
        .news-item .date { font-size: 0.85rem; color: #7a6e4a; margin-bottom: 6px; display: block; }
        .news-item h3 { color: #2d6a4f; font-size: 1.2rem; }
        .news-item p { margin-top: 6px; }
        .faq-item { background: #fffaf0; padding: 20px; margin-bottom: 14px; border-radius: 6px; border: 1px solid #d4c5a0; }
        .faq-item h3 { color: #2d6a4f; font-size: 1.1rem; cursor: pointer; }
        .faq-item p { margin-top: 10px; color: #4a3e2a; }
        .stats { display: flex; justify-content: space-around; flex-wrap: wrap; background: #2d6a4f; color: #fae3b4; padding: 40px 20px; border-radius: 8px; margin: 30px 0; }
        .stats .stat-item { text-align: center; padding: 10px; }
        .stats .stat-item .num { font-size: 2.5rem; font-weight: bold; }
        .stats .stat-item .label { font-size: 1rem; margin-top: 4px; }
        .testimonial { background: #fffaf0; border-left: 6px solid #b5863a; padding: 20px; margin: 20px 0; border-radius: 0 6px 6px 0; }
        .testimonial p { font-style: italic; color: #4a3e2a; }
        .testimonial .author { text-align: right; color: #2d6a4f; margin-top: 10px; font-weight: bold; }
        .cta { background: #b5863a; text-align: center; padding: 40px 20px; border-radius: 8px; margin: 30px 0; }
        .cta h2 { color: #1a3b2c; font-size: 1.8rem; }
        .cta a { display: inline-block; margin-top: 16px; background: #2d6a4f; color: #fae3b4; padding: 12px 30px; border-radius: 6px; text-decoration: none; font-size: 1.1rem; border: 2px solid #fae3b4; transition: 0.3s; }
        .cta a:hover { background: #1a3b2c; }
        footer { background: #2d6a4f; color: #fae3b4; padding: 40px 0; margin-top: 40px; border-top: 4px solid #b5863a; }
        footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 20px; }
        footer .footer-links a { color: #fae3b4; text-decoration: none; font-size: 0.95rem; }
        footer .footer-links a:hover { text-decoration: underline; }
        footer .footer-info { text-align: center; font-size: 0.9rem; border-top: 1px solid #4a7a5f; padding-top: 20px; }
        footer .friend-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 16px 0; }
        footer .friend-links a { color: #fae3b4; text-decoration: none; }
        @media (max-width: 768px) { header h1 { font-size: 1.2rem; } .nav-links { gap: 12px; } .hero h2 { font-size: 1.6rem; } }