﻿:root { --primary-color: rgb(90,200,250); --primary-light: rgba(90,200,250,0.1); --text-dark: #1e293b; --text-normal: #475569; --text-light: #94a3b8; --bg-body: #f8fafc; --bg-white: #ffffff; --border-color: #e2e8f0; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-normal); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        ul { list-style: none; } img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header .container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-weight: 500; color: var(--text-dark); position: relative; padding: 5px 0; }
        .nav-desktop a:hover { color: var(--primary-color); }
        .menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: var(--text-dark); }
        
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: all 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; } .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-light); }
        .drawer-nav { padding: 20px 0; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }

        
        .about-hero { background: var(--text-dark); color: white; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
        .about-hero::after { content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 120%; height: 100px; background: var(--bg-body); border-radius: 50%; }
        .about-title { font-size: 40px; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 2; }
        .about-subtitle { font-size: 18px; opacity: 0.8; max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }

        .about-section { padding: 60px 0; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-text h2 { font-size: 30px; color: var(--text-dark); margin-bottom: 20px; }
        .about-text p { margin-bottom: 15px; font-size: 16px; }
        .about-visual { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #e2e8f0; height: 400px; display: flex; justify-content: center; align-items: center; }
        
        .core-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .value-card { background: var(--bg-white); padding: 40px 30px; border-radius: 8px; text-align: center; border: 1px solid var(--border-color); }
        .value-card h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 15px; }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-about .logo span { color: white; }
        .footer-desc { margin-top: 20px; font-size: 14px; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }
        .footer-meta-links { display: flex; gap: 15px; }

        @media (max-width: 768px) {
            .nav-desktop { display: none; } .menu-btn { display: block; }
            .grid-2 { grid-template-columns: 1fr; } .core-values { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }