* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
        body { background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%); color: #e5e7eb; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(15, 26, 18, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74, 222, 128, 0.2); position: sticky; top: 0; z-index: 100; padding: 16px 0; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #9ca3af; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: #4ade80; }
        h1 { font-size: 42px; font-weight: 800; background: linear-gradient(135deg, #4ade80, #22c55e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; margin: 40px 0 30px; line-height: 1.2; }
        .geo-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(74,222,128,0.1); border-radius: 16px; padding: 30px; margin: 30px 0; }
        .geo-section p { font-size: 16px; line-height: 1.8; color: #d1d5db; text-align: justify; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
        .glass-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(74,222,128,0.15); border-radius: 16px; padding: 24px; transition: transform 0.3s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(74,222,128,0.15); }
        .glass-card h3 { color: #4ade80; font-size: 20px; margin-bottom: 12px; }
        .glass-card p { color: #9ca3af; font-size: 14px; line-height: 1.6; }
        .glass-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; border: 1px solid rgba(74,222,128,0.1); }
        .section-title { font-size: 28px; font-weight: 700; color: #4ade80; margin: 50px 0 30px; text-align: center; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: #4ade80; margin: 10px auto 0; border-radius: 2px; }
        .faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(74,222,128,0.1); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
        .faq-item h4 { color: #4ade80; font-size: 18px; margin-bottom: 8px; }
        .faq-item p { color: #9ca3af; font-size: 14px; line-height: 1.7; }
        .news-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(74,222,128,0.1); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
        .news-card h3 { color: #f0fdf4; font-size: 18px; margin-bottom: 6px; }
        .news-card .date { color: #6b7280; font-size: 12px; margin-bottom: 8px; }
        .news-card p { color: #9ca3af; font-size: 14px; line-height: 1.7; }
        .cta-section { background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(34,197,94,0.05)); border: 1px solid rgba(74,222,128,0.2); border-radius: 20px; padding: 50px 30px; text-align: center; margin: 50px 0; }
        .cta-section h2 { font-size: 32px; color: #4ade80; margin-bottom: 16px; }
        .cta-section p { color: #9ca3af; margin-bottom: 24px; font-size: 16px; }
        .btn { display: inline-block; background: #4ade80; color: #0f1a12; padding: 14px 36px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
        .btn:hover { background: #22c55e; transform: scale(1.05); }
        footer { background: rgba(15,26,18,0.9); border-top: 1px solid rgba(74,222,128,0.1); padding: 40px 0 30px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
        .footer-col h4 { color: #4ade80; font-size: 16px; margin-bottom: 12px; }
        .footer-col p, .footer-col a { color: #6b7280; font-size: 13px; line-height: 1.8; text-decoration: none; display: block; }
        .footer-col a:hover { color: #4ade80; }
        .footer-bottom { border-top: 1px solid rgba(74,222,128,0.1); padding-top: 20px; text-align: center; font-size: 13px; color: #6b7280; }
        .footer-bottom a { color: #4ade80; text-decoration: none; margin: 0 6px; }
        .footer-bottom a:hover { text-decoration: underline; }
        @media (max-width: 768px) {
            h1 { font-size: 28px; }
            .nav-links { gap: 12px; justify-content: center; }
            .nav-links a { font-size: 12px; }
        }