* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e2e8f0;
            min-height: 100vh;
            line-height: 1.7;
        }
        a {
            color: #4ade80;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a7f3d0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* nav */
        .nav-bar {
            background: rgba(15, 25, 18, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 0;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #4ade80;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        /* headings */
        h1, h2, h3 {
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        h1 {
            font-size: 2.6rem;
            margin: 40px 0 20px;
            background: linear-gradient(to right, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #4ade80;
            border-left: 4px solid #4ade80;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.3rem;
            margin: 20px 0 12px;
            color: #a7f3d0;
        }
        .section-card {
            background: rgba(26, 58, 42, 0.4);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 24px;
            padding: 32px 28px;
            margin: 30px 0;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            transition: transform 0.2s;
        }
        .section-card:hover {
            border-color: #4ade80;
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
            margin-top: 20px;
        }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        @media (max-width: 900px) {
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            h1 { font-size: 2rem; }
        }
        @media (max-width: 600px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .nav-links { gap: 12px; }
        }
        .stat-item {
            background: rgba(15, 25, 18, 0.6);
            border-radius: 20px;
            padding: 24px 18px;
            text-align: center;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #4ade80;
        }
        .feature-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 40px;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 20px;
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
            color: #0f1a12;
        }
        .news-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            padding: 18px 0;
        }
        .news-item:last-child { border-bottom: none; }
        .news-date {
            font-size: 0.85rem;
            color: #86efac;
            margin-bottom: 6px;
        }
        .faq-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            padding: 18px 0;
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-q {
            font-weight: 600;
            color: #4ade80;
            cursor: default;
        }
        .faq-a {
            margin-top: 12px;
            padding-left: 10px;
            border-left: 2px solid rgba(74, 222, 128, 0.2);
        }
        .footer {
            background: rgba(15, 25, 18, 0.8);
            border-top: 1px solid rgba(74, 222, 128, 0.15);
            padding: 40px 0 30px;
            margin-top: 60px;
            font-size: 0.9rem;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 20px 0;
        }
        .footer .links a {
            color: #86efac;
        }
        .footer .info {
            text-align: center;
            color: #9ca3af;
            line-height: 2;
        }
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .partner-grid img {
            width: 100px;
            height: 60px;
            object-fit: contain;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            padding: 8px;
            border: 1px solid rgba(74,222,128,0.1);
        }
        /* testimonials */
        .testimonial-card {
            background: rgba(15, 25, 18, 0.5);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 10px;
        }
        .testimonial-author {
            font-weight: 600;
            color: #4ade80;
        }
        .highlight-badge {
            display: inline-block;
            background: rgba(74,222,128,0.1);
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #4ade80;
            border: 1px solid rgba(74,222,128,0.2);
            margin-bottom: 8px;
        }
        .intro-text {
            font-size: 1.1rem;
            max-width: 900px;
            line-height: 1.8;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
        }
        .flex-center {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }