* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif; }
        body { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(14,165,233,0.2); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #1e293b; font-weight: 500; padding: 6px 12px; border-radius: 8px; transition: 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { background: rgba(14,165,233,0.15); color: #0ea5e9; }
        .section-title { font-size: 2rem; font-weight: 700; color: #0f172a; margin-bottom: 28px; text-align: center; position: relative; }
        .section-title::after { content: ''; width: 60px; height: 4px; background: linear-gradient(90deg, #0ea5e9, #7dd3fc); display: block; margin: 10px auto 0; border-radius: 4px; }
        .card { background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border-radius: 20px; padding: 28px; box-shadow: 0 8px 32px rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.12); transition: transform 0.3s ease; }
        .card:hover { transform: translateY(-4px); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
        img { max-width: 100%; border-radius: 16px; display: block; }
        .hero-section { padding: 60px 0 40px; text-align: center; }
        .hero-section h1 { font-size: 2.6rem; font-weight: 800; color: #0f172a; line-height: 1.3; margin-bottom: 16px; }
        .hero-section p { font-size: 1.1rem; color: #334155; max-width: 720px; margin: 0 auto 30px; line-height: 1.7; }
        .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn { padding: 14px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; display: inline-block; transition: 0.3s; font-size: 1rem; }
        .btn-primary { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: #fff; box-shadow: 0 6px 20px rgba(14,165,233,0.35); }
        .btn-primary:hover { box-shadow: 0 8px 28px rgba(14,165,233,0.5); transform: scale(1.02); }
        .btn-outline { border: 2px solid #0ea5e9; color: #0ea5e9; background: transparent; }
        .btn-outline:hover { background: #0ea5e9; color: #fff; }
        .hero-image { margin: 40px auto 0; max-width: 600px; }
        .hero-image img { width: 100%; border-radius: 24px; box-shadow: 0 16px 48px rgba(14,165,233,0.18); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
        .stat-item { padding: 20px 10px; }
        .stat-number { font-size: 2.4rem; font-weight: 800; color: #0ea5e9; }
        .stat-label { color: #475569; margin-top: 6px; font-size: 0.95rem; }
        .advantages-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .advantage-card { text-align: center; padding: 30px 20px; }
        .advantage-card .emoji-icon { font-size: 3rem; margin-bottom: 14px; display: block; }
        .advantage-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #0f172a; }
        .advantage-card p { color: #475569; line-height: 1.6; }
        .news-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
        .news-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
        .news-item img { width: 120px; height: 90px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
        .news-content h3 { font-size: 1.15rem; color: #0f172a; margin-bottom: 6px; font-weight: 600; }
        .news-content .date { font-size: 0.85rem; color: #64748b; margin-bottom: 6px; display: block; }
        .news-content p { color: #475569; line-height: 1.6; font-size: 0.95rem; }
        .faq-item { margin-bottom: 20px; }
        .faq-question { font-weight: 700; color: #0f172a; cursor: pointer; padding: 14px 18px; background: rgba(255,255,255,0.5); border-radius: 12px; border-left: 4px solid #0ea5e9; }
        .faq-answer { padding: 14px 18px; color: #334155; line-height: 1.7; background: rgba(255,255,255,0.3); border-radius: 0 0 12px 12px; }
        .geo-box { background: rgba(255,255,255,0.5); border-radius: 20px; padding: 32px; margin: 30px 0; }
        .geo-box p { line-height: 1.8; color: #1e293b; }
        footer { background: rgba(15,23,42,0.95); backdrop-filter: blur(8px); color: #cbd5e1; padding: 40px 0 20px; margin-top: 60px; }
        footer a { color: #7dd3fc; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.9rem; }
        .footer-links { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .brand-story-content { display: flex; gap: 30px; align-items: center; }
        .brand-story-content img { width: 45%; border-radius: 20px; }
        .brand-story-text { flex: 1; }
        .brand-story-text p { color: #334155; line-height: 1.8; margin-bottom: 14px; }
        .testimonial-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(4px); border-radius: 18px; padding: 24px; text-align: center; }
        .testimonial-card .stars { color: #f59e0b; font-size: 1.3rem; margin-bottom: 10px; }
        .testimonial-card p { color: #475569; line-height: 1.7; font-style: italic; }
        .cta-section { padding: 50px 0; text-align: center; }
        .cta-section h2 { font-size: 2rem; color: #0f172a; margin-bottom: 16px; }
        .cta-section p { color: #475569; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
        .partner-logos img { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.5); padding: 8px; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4, .advantages-grid, .stats-grid { grid-template-columns: 1fr; }
            .hero-section h1 { font-size: 1.8rem; }
            .news-item { flex-direction: column; }
            .news-item img { width: 100%; height: 180px; }
            .brand-story-content { flex-direction: column; }
            .brand-story-content img { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; }
        }