﻿:root { --primary: rgb(225,112,85); --primary-hover: rgb(200, 90, 65); --primary-light: rgba(225,112,85, 0.1); --text-dark: #2d3436; --text-gray: #636e72; --bg-body: #f8f9fa; --bg-white: #ffffff; --border: #eaedf1; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC', sans-serif; background: var(--bg-body); color: var(--text-dark); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 20px; font-weight: 800; color: #111; white-space: nowrap; }
        .desktop-nav ul { display: flex; gap: 24px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 12px; align-items: center; }
        .btn { padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; display: inline-block; }
        .btn-primary { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
        .btn-primary:hover { background: var(--primary-hover); }
        .btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        
        .mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 999; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
        .mobile-nav li { margin-bottom: 16px; font-weight: 500; }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border); }

        .site-footer { background: #1e272e; color: #d2dae2; padding: 70px 0 20px; font-size: 14px; margin-top: 0; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .brand-col .logo { background: #fff; padding: 8px 16px; border-radius: 8px; margin-bottom: 20px; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li, .footer-contact li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }

        
        .about-hero { background: linear-gradient(to right, #111, #333); color: #fff; padding: 100px 0; text-align: center; }
        .about-hero h1 { font-size: 40px; margin-bottom: 16px; color: var(--primary); }
        .about-hero p { font-size: 18px; opacity: 0.8; max-width: 600px; margin: 0 auto; }
        
        .about-section { padding: 80px 0; background: #fff; }
        .about-grid { display: flex; align-items: center; gap: 50px; }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 32px; margin-bottom: 24px; color: #111; }
        .about-text p { margin-bottom: 16px; font-size: 16px; color: var(--text-gray); text-align: justify; }
        .about-img { flex: 1; }
        .about-img img { border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

        .values-section { padding: 80px 0; background: var(--bg-body); }
        .section-title { text-align: center; font-size: 32px; margin-bottom: 50px; color: #111; }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .value-card { background: #fff; padding: 40px 30px; border-radius: 12px; text-align: center; border-bottom: 3px solid transparent; transition: 0.3s; }
        .value-card:hover { border-bottom-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .value-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 10px; line-height: 1; }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; color: #111; }
        .value-card p { font-size: 14px; color: var(--text-gray); }

        .timeline-section { padding: 80px 0; background: #fff; }
        .timeline { max-width: 800px; margin: 0 auto; position: relative; border-left: 2px solid var(--primary-light); padding-left: 40px; }
        .timeline-item { position: relative; margin-bottom: 40px; }
        .timeline-item::before { content: ''; position: absolute; left: -47px; top: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--primary-light); }
        .timeline-year { font-size: 20px; font-weight: bold; color: var(--primary); margin-bottom: 8px; }
        .timeline-title { font-size: 18px; font-weight: bold; margin-bottom: 8px; }
        .timeline-desc { color: var(--text-gray); }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions.desktop-only { display: none; }
            .mobile-toggle { display: block; }
            .about-grid { flex-direction: column; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .values-grid { grid-template-columns: 1fr; }
        }