* {
            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, #ffffff 0%, #f5f7fa 100%);
            color: #1a1a2e;
            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(12px);
            border-bottom: 1px solid rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0a2540;
            letter-spacing: -0.3px;
        }
        .logo span {
            color: #4a90d9;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s, border-bottom 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .nav-links a:hover {
            color: #4a90d9;
            border-bottom-color: #4a90d9;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin: 40px 0 20px;
            color: #0a2540;
            text-align: center;
        }
        h1 small {
            font-size: 1rem;
            font-weight: 300;
            color: #5a6a7a;
            display: block;
            margin-top: 10px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 48px 0 24px;
            color: #0a2540;
            border-left: 5px solid #4a90d9;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 16px 0 8px;
            color: #1e2a3a;
        }
        p {
            margin-bottom: 16px;
            color: #2c3e50;
        }
        .geo-text {
            max-width: 850px;
            margin: 0 auto 40px;
            text-align: center;
            font-size: 1.05rem;
            background: #f9fafc;
            padding: 24px 30px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            border: 1px solid #eef1f5;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 20px;
            padding: 24px 20px;
            transition: all 0.25s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }
        .card:hover {
            box-shadow: 0 12px 28px rgba(0,0,0,0.04);
            transform: translateY(-3px);
            border-color: #d0d9e5;
        }
        .card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 14px;
            background: #eef1f5;
        }
        .card h3 {
            margin-top: 0;
        }
        .stats-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 28px;
            padding: 36px 30px;
            margin: 30px 0;
        }
        .stat-item {
            text-align: center;
            min-width: 140px;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0a2540;
            line-height: 1.1;
        }
        .stat-label {
            color: #5a6a7a;
            font-size: 0.95rem;
            margin-top: 4px;
        }
        .advantages-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .advantage-item {
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 20px;
            padding: 24px;
        }
        .faq-item {
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: #0a2540;
        }
        .faq-answer {
            color: #2c3e50;
        }
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .news-item {
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 20px;
            padding: 20px;
            transition: all 0.2s;
        }
        .news-item img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            border-radius: 12px;
            background: #eef1f5;
            margin-bottom: 12px;
        }
        .news-date {
            font-size: 0.8rem;
            color: #8a9aa8;
            margin-bottom: 6px;
        }
        .news-item h3 {
            font-size: 1.05rem;
            margin: 6px 0;
        }
        .news-item p {
            font-size: 0.92rem;
            color: #4a5a6a;
        }
        .footer {
            background: #f2f5f9;
            border-top: 1px solid #e0e6ed;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .footer-info p {
            margin-bottom: 6px;
            font-size: 0.9rem;
            color: #2c3e50;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .footer-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #4a90d9;
        }
        .footer-bottom {
            border-top: 1px solid #dce2ea;
            margin-top: 24px;
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #5a6a7a;
        }
        .testimonial-card {
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 20px;
            padding: 28px;
            text-align: center;
            max-width: 350px;
            margin: 0 auto;
        }
        .testimonial-card img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 12px;
        }
        .testimonial-card cite {
            display: block;
            color: #8a9aa8;
            font-style: normal;
            margin-top: 8px;
        }
        .cta-box {
            background: #0a2540;
            color: white;
            border-radius: 28px;
            padding: 48px 36px;
            text-align: center;
            margin: 40px 0;
        }
        .cta-box h2 {
            color: white;
            border-left: none;
            margin-top: 0;
        }
        .cta-box p {
            color: #cbd5e1;
        }
        .cta-btn {
            display: inline-block;
            background: #4a90d9;
            color: white;
            padding: 14px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: background 0.2s;
        }
        .cta-btn:hover {
            background: #357abd;
        }
        @media (max-width: 640px) {
            h1 { font-size: 1.8rem; }
            .header-inner { flex-direction: column; gap: 12px; }
            .nav-links { gap: 12px; justify-content: center; }
            .nav-links a { font-size: 0.85rem; }
        }