* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: linear-gradient(145deg, #0f1a12, #1a3a2a); color: #e0f0e0; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; min-height: 100vh; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 20px; }
        /* nav */
        .nav-bar { background: rgba(15, 26, 18, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74, 222, 128, 0.2); position: sticky; top: 0; z-index: 100; padding: 12px 20px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; align-items: center; }
        .nav-links a { color: #c0e0c0; text-decoration: none; font-weight: 500; padding: 6px 12px; border-radius: 30px; transition: all 0.3s; font-size: 0.95rem; border: 1px solid transparent; }
        .nav-links a:hover { color: #4ade80; background: rgba(74, 222, 128, 0.1); border-color: #4ade80; }
        /* h1 */
        h1 { font-size: 2.6rem; font-weight: 700; text-align: center; background: linear-gradient(135deg, #4ade80, #a7f3d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 40px 0 20px; letter-spacing: 1px; }
        /* glass card */
        .glass { background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(8px); border: 1px solid rgba(74, 222, 128, 0.2); border-radius: 28px; padding: 30px; margin-bottom: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 15px rgba(74,222,128,0.08); transition: transform 0.2s; }
        .glass:hover { border-color: #4ade80; box-shadow: 0 8px 40px rgba(74,222,128,0.15); }
        h2 { font-size: 1.9rem; color: #4ade80; margin-bottom: 20px; border-left: 4px solid #4ade80; padding-left: 16px; }
        h3 { font-size: 1.3rem; color: #a7f3d0; margin: 20px 0 10px; }
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; }
        .img-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(74, 222, 128, 0.15); transition: 0.3s; }
        .img-grid img:hover { transform: scale(1.02); border-color: #4ade80; }
        /* stats */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: rgba(74, 222, 128, 0.05); border-radius: 20px; padding: 20px 10px; border: 1px solid rgba(74, 222, 128, 0.1); }
        .stat-number { font-size: 2.4rem; font-weight: 700; color: #4ade80; }
        .stat-label { font-size: 0.95rem; color: #b0d0b0; margin-top: 6px; }
        /* advantages */
        .adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
        .adv-card { background: rgba(255,255,255,0.03); border-radius: 20px; padding: 24px; border-left: 3px solid #4ade80; }
        .adv-card h3 { color: #4ade80; }
        /* faq */
        .faq-item { border-bottom: 1px solid rgba(74, 222, 128, 0.1); padding: 18px 0; }
        .faq-question { font-weight: 600; font-size: 1.15rem; color: #a7f3d0; cursor: default; }
        .faq-answer { margin-top: 10px; color: #c0e0c0; padding-left: 10px; }
        /* news */
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .news-card { background: rgba(255,255,255,0.03); border-radius: 20px; padding: 20px; border: 1px solid rgba(74, 222, 128, 0.08); transition: 0.3s; }
        .news-card:hover { border-color: #4ade80; }
        .news-date { font-size: 0.8rem; color: #6a8a6a; margin-bottom: 8px; }
        .news-title { font-size: 1.1rem; font-weight: 600; color: #e0f0e0; margin-bottom: 8px; }
        .news-summary { color: #b0d0b0; font-size: 0.95rem; }
        /* footer */
        footer { margin-top: 60px; padding: 40px 0 20px; border-top: 1px solid rgba(74, 222, 128, 0.15); text-align: center; color: #8aaa8a; font-size: 0.85rem; }
        footer a { color: #4ade80; text-decoration: none; margin: 0 6px; }
        footer a:hover { text-decoration: underline; }
        .footer-links { margin: 16px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
        .btn { display: inline-block; background: #4ade80; color: #0f1a12; font-weight: 700; padding: 12px 36px; border-radius: 60px; text-decoration: none; transition: 0.3s; border: none; cursor: pointer; font-size: 1.05rem; }
        .btn:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(74,222,128,0.3); }
        .flex-center { display: flex; justify-content: center; margin: 30px 0; }
        .geo-text { color: #c0e0c0; }
        @media (max-width: 640px) { h1 { font-size: 1.8rem; } .glass { padding: 20px; } }