* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 100%); color: #1e293b; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(52,211,153,0.15); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; flex-wrap: wrap; }
        .logo { font-size: 1.3rem; font-weight: 700; background: linear-gradient(135deg, #34d399, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #1e293b; font-weight: 500; padding: 6px 14px; border-radius: 40px; transition: all 0.2s; background: rgba(52,211,153,0.08); }
        .nav-links a:hover { background: #34d399; color: #fff; box-shadow: 0 4px 12px rgba(52,211,153,0.4); }
        h1 { font-size: 2.6rem; margin: 40px 0 16px; background: linear-gradient(135deg, #0f172a, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; }
        h2 { font-size: 2rem; margin: 40px 0 20px; color: #0f172a; position: relative; display: inline-block; }
        h2:after { content: ''; display: block; width: 60px; height: 4px; background: #34d399; border-radius: 4px; margin-top: 6px; }
        .card { background: rgba(255,255,255,0.8); backdrop-filter: blur(6px); border-radius: 24px; padding: 28px; box-shadow: 0 6px 30px rgba(0,0,0,0.04); margin-bottom: 28px; transition: all 0.2s; border: 1px solid rgba(52,211,153,0.15); }
        .card:hover { box-shadow: 0 12px 40px rgba(52,211,153,0.12); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .img-fluid { max-width: 100%; border-radius: 20px; height: auto; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
        .tag { background: #34d399; color: #fff; border-radius: 40px; padding: 4px 14px; font-size: 0.8rem; display: inline-block; }
        .faq-item { border-bottom: 1px solid rgba(52,211,153,0.2); padding: 16px 0; }
        .faq-item h3 { color: #0f172a; font-size: 1.15rem; margin-bottom: 6px; }
        .faq-item p { color: #334155; }
        .news-item { border-bottom: 1px solid rgba(52,211,153,0.15); padding: 20px 0; }
        .news-item h3 { color: #0f172a; margin-bottom: 6px; font-size: 1.2rem; }
        .news-item .date { color: #34d399; font-weight: 600; font-size: 0.9rem; }
        .news-item p { color: #334155; }
        footer { background: #0f172a; color: #cbd5e1; padding: 40px 0 20px; margin-top: 50px; border-radius: 40px 40px 0 0; }
        footer a { color: #34d399; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 20px 0; }
        .footer-info { text-align: center; font-size: 0.9rem; line-height: 2; }
        .cta-button { display: inline-block; background: linear-gradient(135deg, #34d399, #0ea5e9); color: #fff; padding: 14px 40px; border-radius: 60px; font-weight: 600; text-decoration: none; box-shadow: 0 6px 20px rgba(52,211,153,0.3); transition: 0.2s; }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(52,211,153,0.4); }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .badge { display: inline-block; background: #34d399; color: #fff; padding: 2px 12px; border-radius: 30px; font-size: 0.8rem; }
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } h1 { font-size: 2rem; } }