* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f4f7fc;
            color: #1e293b;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header & Nav */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%);
            color: #fff;
            padding: 18px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo h1 {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(to right, #f0f4ff, #9fc5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d1e0ff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #3b82f6;
        }
        /* Sections */
        section {
            margin-bottom: 48px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 32px;
            position: relative;
            display: inline-block;
            color: #0b1a33;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #3b82f6;
            border-radius: 4px;
            margin-top: 8px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eef2f8;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            background: #e2e8f0;
        }
        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: #0b1a33;
        }
        .card p {
            color: #475569;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            background: #3b82f6;
            color: #fff;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
            margin-top: 12px;
        }
        .btn:hover {
            background: #1e5bcc;
        }
        /* Hero */
        .hero {
            background: linear-gradient(145deg, #0b1a33, #1e3a6f);
            color: white;
            border-radius: 32px;
            padding: 56px 48px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 24px;
        }
        .hero-left {
            flex: 1 1 300px;
        }
        .hero-left h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-left p {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 500px;
        }
        .hero-right img {
            max-width: 400px;
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        /* Geo intro */
        .geo-intro, .geo {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .geo-intro p, .geo p {
            font-size: 1.05rem;
            color: #334155;
            line-height: 1.8;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: white;
            border-radius: 20px;
            padding: 32px 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3a6f;
        }
        .stat-item .label {
            color: #64748b;
            font-weight: 500;
            margin-top: 8px;
        }
        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .advantage-card {
            background: white;
            border-radius: 20px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 4px 14px rgba(0,0,0,0.03);
            border-top: 6px solid #3b82f6;
        }
        .advantage-card .emoji-big {
            font-size: 3rem;
            margin-bottom: 12px;
        }
        /* Brand story */
        .story {
            background: white;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }
        .story-text {
            flex: 2 1 300px;
        }
        .story-image {
            flex: 1 1 250px;
        }
        .story-image img {
            width: 100%;
            border-radius: 20px;
        }
        /* Partners */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            align-items: center;
        }
        .partner-logos img {
            height: 60px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        .partner-logos img:hover {
            opacity: 1;
        }
        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 16px;
            padding: 20px 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .faq-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0b1a33;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #475569;
            line-height: 1.7;
        }
        /* News */
        .news-item {
            background: white;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .news-item .date {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 6px;
        }
        .news-item h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #475569;
        }
        /* Reviews / Testimonials */
        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            border-left: 6px solid #3b82f6;
        }
        /* CTA */
        .cta {
            background: linear-gradient(135deg, #0b1a33, #1e3a6f);
            color: white;
            border-radius: 32px;
            padding: 56px 40px;
            text-align: center;
        }
        .cta h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .cta p {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto 24px;
        }
        /* Footer */
        footer {
            background: #0b1a33;
            color: #b0c8e8;
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        footer a {
            color: #b0c8e8;
            text-decoration: none;
        }
        footer a:hover {
            color: #fff;
        }
        footer .footer-bottom {
            width: 100%;
            text-align: center;
            border-top: 1px solid #1e3a6f;
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .friend-links {
            margin: 12px 0;
        }
        .friend-links a {
            margin: 0 8px;
        }
        /* Responsive */
        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                gap: 12px;
            }
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 32px 20px;
            }
            .hero-left h2 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }