* {
            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: #e2f0e6;
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            justify-content: center;
            align-items: center;
        }

        .nav-links a {
            color: #c0d9c8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 8px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.08);
            border-color: rgba(74, 222, 128, 0.25);
        }

        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 48px 24px 16px;
            background: linear-gradient(135deg, #4ade80 0%, #a7f3d0 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Section cards */
        .section-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.12);
            border-radius: 24px;
            padding: 40px 32px;
            margin: 32px 0;
            box-shadow: 0 0 24px rgba(74, 222, 128, 0.04);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }

        .section-card:hover {
            box-shadow: 0 0 40px rgba(74, 222, 128, 0.08);
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #4ade80;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 20px;
            padding: 24px;
            transition: all 0.25s;
        }

        .glass-card:hover {
            border-color: #4ade80;
            transform: translateY(-4px);
            box-shadow: 0 12px 28px -8px rgba(74, 222, 128, 0.15);
        }

        .glass-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 16px;
            background: #1a3a2a;
        }

        .glass-card h3 {
            font-size: 1.2rem;
            color: #d4f0dc;
            margin-bottom: 8px;
        }

        .glass-card p {
            color: #b0cbb8;
            font-size: 0.95rem;
        }

        .badge-date {
            font-size: 0.8rem;
            color: #6f9a7a;
            background: rgba(74, 222, 128, 0.08);
            padding: 2px 12px;
            border-radius: 16px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
        }

        /* Footer */
        footer {
            background: rgba(15, 26, 18, 0.9);
            border-top: 1px solid rgba(74, 222, 128, 0.12);
            padding: 48px 24px 32px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-grid h4 {
            color: #4ade80;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .footer-grid a {
            color: #b0cbb8;
            text-decoration: none;
            display: block;
            margin: 6px 0;
            font-size: 0.9rem;
        }

        .footer-grid a:hover {
            color: #4ade80;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            color: #6f9a7a;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: #8faf9a;
            text-decoration: none;
            margin: 0 8px;
        }

        .footer-bottom a:hover {
            color: #4ade80;
        }

        /* faq */
        .faq-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.08);
            padding: 18px 0;
        }

        .faq-item h4 {
            color: #d4f0dc;
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .faq-item p {
            color: #b0cbb8;
            font-size: 0.95rem;
            padding-left: 8px;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #4ade80;
            line-height: 1.1;
        }

        .stat-label {
            color: #8faf9a;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        img {
            max-width: 100%;
            display: block;
        }

        @media (max-width: 640px) {
            h1 {
                font-size: 1.8rem;
                padding: 32px 16px 12px;
            }
            .section-card {
                padding: 24px 16px;
            }
        }