* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e0f0e5;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(74, 222, 128, 0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #b0d4c0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 60px 0 30px;
            line-height: 1.2;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            color: #4ade80;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #4ade80, transparent);
            border-radius: 2px;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(74, 222, 128, 0.05);
            transition: transform 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(74, 222, 128, 0.5);
            box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(74, 222, 128, 0.1);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 20px;
        }
        img {
            max-width: 100%;
            border-radius: 14px;
            display: block;
            height: auto;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .img-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 30px 0;
        }
        .img-gallery img {
            width: 220px;
            height: 160px;
            object-fit: cover;
        }
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 30px rgba(74, 222, 128, 0.5);
        }
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            border-left: 3px solid #4ade80;
        }
        .faq-item h4 {
            color: #4ade80;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .news-item {
            padding: 25px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(74, 222, 128, 0.08);
        }
        .news-item h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #c0e8d0;
        }
        .news-date {
            font-size: 0.85rem;
            color: #6a9a7a;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #a0c0b0;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .tag {
            display: inline-block;
            background: rgba(74, 222, 128, 0.12);
            color: #4ade80;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 8px;
        }
        footer {
            background: rgba(15, 26, 18, 0.9);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 30px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #8aaa9a;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #4ade80;
        }
        .footer-info {
            text-align: center;
            color: #6a8a7a;
            font-size: 0.85rem;
            line-height: 2;
        }
        .footer-info p {
            margin: 5px 0;
        }
        .hero-section {
            padding: 80px 0 40px;
            text-align: center;
        }
        .hero-section p {
            max-width: 800px;
            margin: 20px auto;
            color: #b0d4c0;
            font-size: 1.1rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(74, 222, 128, 0.08);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #8aaa9a;
            font-size: 0.95rem;
        }
        .advantage-item {
            text-align: center;
            padding: 30px 20px;
        }
        .advantage-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.06), transparent);
            border-radius: 30px;
            margin: 40px 0;
        }
        .geo-text {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(74, 222, 128, 0.1);
            color: #c0d8c8;
            font-size: 1rem;
            line-height: 1.8;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .nav-links {
                gap: 12px;
            }
            .img-gallery img {
                width: 160px;
                height: 120px;
            }
        }