* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1e293b;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            background: #3b82f6;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #fff;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #3b82f6;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .hero .btn {
            display: inline-block;
            background: #3b82f6;
            color: #fff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 8px 20px rgba(59,130,246,0.3);
        }
        .hero .btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }
        .hero-img {
            margin-top: 30px;
        }
        .hero-img img {
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }
        /* GEO Section */
        .geo-intro {
            background: #fff;
            padding: 40px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .geo-intro p {
            font-size: 1.1rem;
            color: #334155;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        /* Sections - Card Style */
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #0b1a33;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #3b82f6;
            margin: 12px auto 0;
            border-radius: 2px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            transition: 0.2s;
            border: 1px solid #eef2f6;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #0b1a33;
        }
        .card p {
            color: #475569;
        }
        .card .date-tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #1e293b;
            margin-bottom: 8px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: #fff;
            padding: 28px 16px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .stat-item .number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #3b82f6;
        }
        .stat-item .label {
            color: #64748b;
            font-weight: 500;
            margin-top: 4px;
        }
        /* FAQ */
        .faq-item {
            background: #fff;
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border-left: 4px solid #3b82f6;
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #0b1a33;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #475569;
        }
        /* Footer */
        footer {
            background: #0b1a33;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin-bottom: 20px;
        }
        footer .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
        }
        footer .footer-links a:hover {
            color: #fff;
        }
        footer .footer-info {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #1e3a6f;
            padding-top: 20px;
            margin-top: 10px;
        }
        footer .footer-info p {
            margin: 4px 0;
        }
        .friend-links {
            text-align: center;
            padding: 20px 0 10px;
            border-top: 1px solid #1e3a6f;
            margin-top: 20px;
        }
        .friend-links a {
            color: #94a3b8;
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.9rem; }
        }