* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }
        body { background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%); color: #1a2e3a; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; padding: 12px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .nav-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #2d3748; font-weight: 500; font-size: 15px; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.2s; }
        .nav-links a:hover { border-bottom-color: #34d399; color: #0f766e; }
        h1 { font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, #0f766e, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; margin: 40px 0 12px; letter-spacing: 1px; }
        .subhead { text-align: center; font-size: 1.1rem; color: #4a5568; margin-bottom: 40px; }
        .card { background: rgba(255,255,255,0.85); backdrop-filter: blur(4px); border-radius: 20px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(52, 211, 153, 0.08); border: 1px solid rgba(52, 211, 153, 0.15); margin-bottom: 32px; transition: transform 0.2s; }
        .card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(52, 211, 153, 0.12); }
        .card-title { font-size: 1.5rem; font-weight: 600; color: #0f766e; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
        .img-fluid { width: 100%; height: auto; border-radius: 12px; object-fit: cover; margin: 12px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .stat-number { font-size: 2.2rem; font-weight: 700; color: #0f766e; }
        .stat-label { color: #4a5568; font-size: 0.95rem; }
        .tag { background: #d1fae5; color: #065f46; padding: 4px 12px; border-radius: 30px; font-size: 0.8rem; display: inline-block; }
        .news-item { padding: 18px 0; border-bottom: 1px solid #e8f5f0; }
        .news-item:last-child { border-bottom: none; }
        .news-date { font-size: 0.85rem; color: #6b7280; margin-bottom: 4px; }
        .news-title { font-weight: 600; font-size: 1.1rem; color: #1a2e3a; margin-bottom: 6px; }
        .news-summary { color: #4a5568; font-size: 0.95rem; }
        .faq-q { font-weight: 600; color: #0f766e; margin-top: 16px; cursor: pointer; }
        .faq-a { color: #4a5568; margin: 6px 0 12px 0; padding-left: 12px; border-left: 3px solid #34d399; }
        .footer { background: #1a2e3a; color: #cbd5e1; padding: 40px 20px 20px; margin-top: 48px; border-radius: 20px 20px 0 0; }
        .footer a { color: #a7f3d0; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .friend-links { margin: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
        .btn-cta { display: inline-block; background: linear-gradient(135deg, #34d399, #0f766e); color: #fff; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3); transition: 0.2s; }
        .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4); }
        .partner-logo { background: #f0fdfa; border-radius: 12px; padding: 12px; text-align: center; border: 1px solid #d1fae5; }
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 1.8rem; } .nav-links { gap: 16px; } }