﻿:root { --primary: rgb(94,92,230); --primary-light: rgba(94,92,230,0.1); --text-main: #1a202c; --text-sub: #4a5568; --bg-body: #f7fafc; --border: #e2e8f0; --radius: 12px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: #fff; color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .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); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; color: var(--text-sub); }
        .desktop-nav a:hover { color: var(--primary); }
        .header-action { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        .btn-primary { background: var(--primary); color: #fff; }
        .menu-toggle { display: none; cursor: pointer; }
        .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 998; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 999; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 28px; cursor: pointer; }
        .drawer-nav { padding: 20px; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border); }
        .site-footer { background: #1a202c; color: #a0aec0; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-logo span { color: #fff; }

        
        .about-hero { padding: 100px 0; background: var(--bg-body); text-align: center; }
        .about-hero h1 { font-size: 42px; margin-bottom: 20px; }
        .about-hero p { font-size: 18px; color: var(--text-sub); max-width: 700px; margin: 0 auto; }
        
        .about-section { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .about-content h2 { font-size: 32px; margin-bottom: 24px; color: var(--primary); }
        .about-content p { font-size: 16px; margin-bottom: 16px; color: var(--text-sub); }
        
        .core-values { background: var(--bg-body); padding: 80px 0; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .value-card { background: #fff; padding: 40px; border-radius: var(--radius); text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
        .value-number { font-size: 48px; font-weight: 800; color: var(--primary-light); margin-bottom: 10px; }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; }

        @media (max-width: 768px) {
            .desktop-nav, .header-action .btn { display: none; }
            .menu-toggle { display: block; }
            .about-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }