* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #e0f7f0 0%, #f0fdf8 100%); color: #1a2e2a; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(52,211,153,0.3); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
        .nav-links a { color: #1a2e2a; text-decoration: none; font-weight: 500; padding: 6px 14px; border-radius: 20px; transition: 0.3s; }
        .nav-links a:hover { background: #34d399; color: white; }
        header { text-align: center; padding: 60px 20px 30px; }
        h1 { font-size: 2.6rem; color: #0f3d34; margin-bottom: 16px; letter-spacing: 1px; }
        .subtitle { font-size: 1.1rem; color: #2f6b5e; max-width: 800px; margin: 0 auto 30px; }
        .geo-text { background: rgba(255,255,255,0.7); border-radius: 24px; padding: 30px 28px; margin: 20px 0 40px; box-shadow: 0 4px 16px rgba(52,211,153,0.12); font-size: 1.05rem; }
        .geo-text p { margin-bottom: 16px; }
        .section-title { font-size: 1.9rem; color: #0f3d34; text-align: center; margin: 56px 0 30px; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: #34d399; margin: 12px auto 0; border-radius: 4px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 20px 0; }
        .card { background: white; border-radius: 20px; padding: 24px; box-shadow: 0 6px 20px rgba(0,0,0,0.04); transition: 0.3s; border: 1px solid rgba(52,211,153,0.15); }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(52,211,153,0.15); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
        .card h3 { font-size: 1.25rem; margin-bottom: 10px; color: #0f3d34; }
        .card p { color: #3a5e54; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
        .stat-item { text-align: center; background: white; padding: 28px 16px; border-radius: 20px; box-shadow: 0 4px 12px rgba(52,211,153,0.08); }
        .stat-number { font-size: 2.4rem; font-weight: 700; color: #34d399; }
        .stat-label { color: #2f6b5e; margin-top: 6px; }
        .faq-item { background: white; border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
        .faq-question { font-weight: 600; font-size: 1.1rem; color: #0f3d34; margin-bottom: 8px; }
        .faq-answer { color: #3a5e54; }
        .news-card { background: white; border-radius: 20px; padding: 22px; margin-bottom: 20px; box-shadow: 0 4px 14px rgba(52,211,153,0.06); }
        .news-date { font-size: 0.85rem; color: #6b8f84; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 600; color: #0f3d34; margin-bottom: 8px; }
        .news-summary { color: #3a5e54; }
        footer { background: #0f3d34; color: #d6f0e8; padding: 40px 20px 20px; margin-top: 60px; border-radius: 40px 40px 0 0; }
        footer a { color: #80d4b8; text-decoration: none; }
        footer a:hover { color: white; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin: 16px 0; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; font-size: 0.9rem; }
        .partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
        .partner-item { background: white; border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
        .testimonial { background: white; border-radius: 20px; padding: 28px; text-align: center; box-shadow: 0 4px 16px rgba(52,211,153,0.08); }
        .cta-section { background: linear-gradient(135deg, #34d399, #14b8a6); border-radius: 32px; padding: 48px 32px; text-align: center; color: white; margin: 40px 0; }
        .cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
        .cta-section p { font-size: 1.1rem; margin-bottom: 24px; opacity: 0.9; }
        .btn { display: inline-block; background: white; color: #0f3d34; padding: 14px 40px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
        @media (max-width: 640px) { h1 { font-size: 1.8rem; } .nav-links { gap: 12px; } .nav-links a { font-size: 0.9rem; padding: 4px 10px; } }