﻿:root { --primary-color: rgb(30,64,175); --text-main: #333; --bg-body: #f8f9fa; --bg-white: #fff; --border-color: #e5e7eb; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: sans-serif; line-height: 1.6; color: var(--text-main); background: var(--bg-body); }
        a { text-decoration: none; color: inherit; } img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 700; color: var(--primary-color); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; } .nav-desktop a { font-weight: 500; }
        .btn-mobile-menu { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: left 0.3s; }
        .drawer-nav.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .btn-close-drawer { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-menu a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--border-color); }
        @media (max-width: 768px) { .nav-desktop { display: none; } .btn-mobile-menu { display: block; } }

        
        .dl-hero { padding: 80px 0; background: linear-gradient(180deg, #e0e7ff 0%, #f8f9fa 100%); text-align: center; }
        .dl-hero h1 { font-size: 40px; color: #1e3a8a; margin-bottom: 20px; }
        .dl-hero p { font-size: 18px; color: #4b5563; max-width: 700px; margin: 0 auto 40px; }
        
        .dl-cards { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
        @media (max-width: 768px) { .dl-cards { flex-direction: column; align-items: center; } }
        
        .dl-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); width: 100%; max-width: 350px; border: 1px solid var(--border-color); position: relative; overflow: hidden; }
        .dl-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-color); }
        .dl-icon { font-size: 48px; margin-bottom: 20px; }
        .dl-card h3 { font-size: 24px; margin-bottom: 10px; }
        .dl-card p { color: #6b7280; font-size: 14px; margin-bottom: 30px; line-height: 1.6; }
        .dl-btn { display: inline-block; width: 100%; padding: 15px 0; background: var(--primary-color); color: white; font-weight: bold; border-radius: 8px; transition: 0.3s; }
        .dl-btn:hover { background: #172554; }

        .steps-section { padding: 80px 0; background: white; }
        .steps-title { text-align: center; font-size: 30px; margin-bottom: 50px; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
        @media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
        .step-item .step-num { width: 50px; height: 50px; background: #e0e7ff; color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; margin: 0 auto 20px; }
        .step-item h4 { font-size: 18px; margin-bottom: 10px; }

        
        .footer { background: #111827; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-title { color: white; margin-bottom: 20px; } .footer-links li { margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }