﻿:root { --primary: rgb(66,133,244); --primary-hover: #3367d6; --primary-light: rgba(66,133,244,0.08); --text-main: #1a1f36; --text-muted: #697386; --bg-body: #f7f9fc; --bg-surface: #ffffff; --border-color: #e3e8ee; --radius-md: 8px; --radius-lg: 16px; --container-width: 1240px; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; font-size: 15px; font-weight: 600; border-radius: var(--radius-md); cursor: pointer; border: 1px solid transparent; transition: 0.3s; }
        .btn-primary { background-color: var(--primary); color: #fff; }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

        
        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); }
        .desktop-nav { flex: 1; margin: 0 40px; display: flex; justify-content: flex-end; }
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 999; transition: transform 0.3s; display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; cursor: pointer; padding: 5px; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav li a { display: block; padding: 12px 20px; font-size: 16px; }

        
        .about-hero { background: linear-gradient(to right, #1a1f36, #2d3748); color: #fff; padding: 100px 0; text-align: center; }
        .about-hero h1 { font-size: 42px; margin-bottom: 20px; }
        .about-hero p { font-size: 18px; opacity: 0.8; max-width: 700px; margin: 0 auto; }

        
        .about-section { padding: 80px 0; background: #fff; }
        .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .story-content h2 { font-size: 32px; color: var(--primary); margin-bottom: 24px; }
        .story-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
        .story-img img { border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        
        .values { padding: 80px 0; background: var(--bg-body); }
        .section-title { text-align: center; font-size: 32px; margin-bottom: 50px; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .value-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--border-color); }
        .value-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 20px; line-height: 1; }
        .value-card h3 { font-size: 22px; margin-bottom: 15px; }
        .value-card p { color: var(--text-muted); font-size: 15px; }

        
        .site-footer { background: #1a1d20; color: #9ca3af; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo span { color: #fff; }
        .footer-desc { margin-top: 16px; font-size: 14px; }
        .footer-title { color: #fff; font-size: 16px; margin-bottom: 20px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .mobile-toggle { display: block; }
            .story-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
            .about-hero { padding: 60px 0; }
        }