﻿:root { --primary-color: rgb(15,118,110); --primary-hover: rgb(13,100,93); --primary-light: rgba(15,118,110,0.05); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-card: #ffffff; --border-color: #e5e7eb; --header-h: 72px; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; color: var(--text-main); background: #fff; line-height: 1.6; }
        a { color: inherit; text-decoration: none; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-weight: 500; cursor: pointer; transition: all 0.3s; }
        .btn-primary { background: var(--primary-color); color: #fff; }
        
        
        .header { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); z-index: 100; height: var(--header-h); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
        .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; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--primary-color); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--primary-color); }
        .header-actions { display: flex; gap: 15px; }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; }
        
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer-active .drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px dashed var(--border-color); }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); display: inline-block; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6; }

        
        .about-hero { padding: 100px 0; background: var(--bg-body); text-align: center; }
        .about-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; color: #111; }
        .about-hero h1 span { color: var(--primary-color); }
        .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; }
        
        .story-section { padding: 80px 0; }
        .story-layout { display: flex; align-items: center; gap: 60px; }
        .story-content { flex: 1; }
        .story-title { font-size: 32px; font-weight: 700; margin-bottom: 20px; }
        .story-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
        .story-img { flex: 1; position: relative; }
        .story-img img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .story-img::before { content: ''; position: absolute; inset: -15px; border: 2px dashed var(--primary-color); border-radius: 25px; opacity: 0.3; z-index: -1; }

        .value-section { background: var(--primary-color); color: #fff; padding: 80px 0; }
        .value-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 50px; }
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .value-card { background: rgba(255,255,255,0.1); padding: 40px; border-radius: 16px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); }
        .value-num { font-size: 48px; font-weight: 900; opacity: 0.2; margin-bottom: -20px; }
        .value-card h3 { font-size: 24px; margin-bottom: 15px; }
        .value-card p { opacity: 0.9; }

        @media (max-width: 992px) {
            .story-layout { flex-direction: column; text-align: center; }
            .value-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .menu-toggle { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
        }