* {
            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(135deg, #f0fdf4 0%, #e6f7ec 100%);
            color: #1e293b;
            line-height: 1.6;
            min-height: 100vh;
        }
        .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.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
            border-bottom: 2px solid rgba(52,211,153,0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #059669;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo img {
            height: 36px;
            width: auto;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(52,211,153,0.06);
        }
        .nav-links a:hover {
            background: #34d399;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(52,211,153,0.3);
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            text-align: center;
            padding: 50px 20px 20px;
            background: linear-gradient(135deg, #059669, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #059669;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #34d399;
            border-radius: 2px;
            margin-top: 8px;
        }
        .section {
            padding: 50px 0;
        }
        .card {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(52,211,153,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(52,211,153,0.1);
        }
        .card:hover {
            box-shadow: 0 8px 30px rgba(52,211,153,0.15);
            transform: translateY(-2px);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .image-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .image-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .image-card .caption {
            padding: 12px 16px;
            background: white;
            font-size: 0.95rem;
            color: #475569;
            font-weight: 500;
        }
        .stat-item {
            text-align: center;
            padding: 24px 16px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #059669;
            line-height: 1.2;
        }
        .stat-label {
            color: #64748b;
            font-size: 0.95rem;
            margin-top: 6px;
        }
        .faq-item {
            margin-bottom: 16px;
            border-radius: 16px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 10px rgba(52,211,153,0.05);
        }
        .faq-question {
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f0fdf4;
            transition: background 0.3s;
            font-size: 1.05rem;
        }
        .faq-question:hover {
            background: #d1fae5;
        }
        .faq-answer {
            padding: 0 24px 20px;
            color: #475569;
            line-height: 1.8;
        }
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            font-size: 0.85rem;
            color: #34d399;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #64748b;
            font-size: 0.95rem;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer a {
            color: #34d399;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: #a7f3d0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 20px;
            margin: 15px 0;
        }
        .badge {
            display: inline-block;
            background: #34d399;
            color: white;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, #059669, #34d399);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52,211,153,0.3);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52,211,153,0.4);
        }
        .hero {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-radius: 30px;
            padding: 60px 40px;
            text-align: center;
            margin: 20px 0;
        }
        .hero h2 {
            font-size: 2.2rem;
            color: #065f46;
        }
        .hero p {
            font-size: 1.1rem;
            color: #475569;
            max-width: 700px;
            margin: 20px auto;
        }
        .inline-img {
            max-width: 100%;
            border-radius: 12px;
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; padding: 30px 16px 16px; }
            .hero { padding: 30px 20px; }
            .hero h2 { font-size: 1.6rem; }
            .card { padding: 20px; }
            .stat-number { font-size: 2rem; }
        }