* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e5ede8;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Navigation */
        .navbar {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a {
            color: #b0c9b5;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s, border-bottom 0.3s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .nav-links a:hover {
            color: #4ade80;
            border-bottom-color: #4ade80;
        }
        /* Hero */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 70%;
            height: 120%;
            background: radial-gradient(circle, rgba(74,222,128,0.08), transparent 70%);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f0fdf4, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto 32px;
            color: #b0c9b5;
        }
        .hero-img {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(74,222,128,0.15);
            border: 1px solid rgba(74,222,128,0.2);
        }
        /* Section common */
        section {
            padding: 72px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 48px;
            text-align: center;
            background: linear-gradient(135deg, #86efac, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .glass-card {
            background: rgba(26, 58, 42, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            padding: 28px 24px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 48px rgba(74,222,128,0.2);
            border-color: #4ade80;
        }
        .glass-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #4ade80;
        }
        .glass-card p {
            color: #cbd5d0;
            font-size: 0.95rem;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: rgba(26, 58, 42, 0.6);
            border-radius: 16px;
            padding: 32px 16px;
            border: 1px solid rgba(74,222,128,0.15);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #4ade80;
            line-height: 1.2;
        }
        .stat-label {
            color: #9bb8a6;
            margin-top: 8px;
            font-size: 1rem;
        }
        /* News */
        .news-list {
            display: grid;
            gap: 32px;
        }
        .news-item {
            background: rgba(26, 58, 42, 0.4);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid rgba(74,222,128,0.1);
            transition: background 0.3s;
        }
        .news-item:hover {
            background: rgba(26, 58, 42, 0.7);
        }
        .news-date {
            font-size: 0.85rem;
            color: #86efac;
            margin-bottom: 8px;
            display: block;
        }
        .news-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #e5ede8;
        }
        .news-summary {
            color: #a3b8ac;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 28px;
            background: rgba(26, 58, 42, 0.3);
            border-radius: 16px;
            padding: 24px;
            border-left: 4px solid #4ade80;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            color: #4ade80;
            margin-bottom: 10px;
        }
        .faq-answer {
            color: #cbd5d0;
            font-size: 0.95rem;
        }
        /* Footer */
        .footer {
            background: rgba(15, 26, 18, 0.9);
            border-top: 1px solid rgba(74,222,128,0.1);
            padding: 40px 0 28px;
            margin-top: 48px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .footer-links a {
            color: #9bb8a6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #4ade80;
        }
        .footer-info {
            text-align: center;
            color: #6b8a78;
            font-size: 0.85rem;
        }
        .footer-info p {
            margin-bottom: 6px;
        }
        .badge {
            display: inline-block;
            background: rgba(74,222,128,0.12);
            color: #86efac;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            border: 1px solid rgba(74,222,128,0.2);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .nav-links { gap: 16px; flex-wrap: wrap; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .img-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 32px 0;
        }
        .img-row img {
            flex: 1;
            min-width: 200px;
            object-fit: cover;
            border: 1px solid rgba(74,222,128,0.1);
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 600;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 20px rgba(74,222,128,0.3);
        }
        .cta-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(74,222,128,0.5);
        }
        .text-center {
            text-align: center;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #4ade80, transparent);
            margin: 40px 0;
        }