﻿:root {
            --primary: rgb(48,209,88);
            --primary-hover: #2bb94d;
            --primary-light: rgba(48,209,88,0.1);
            --text-main: #111827;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-md: 8px;
            --radius-lg: 16px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .header { background: var(--bg-card); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header-inner { 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: 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; letter-spacing: -0.5px; }
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; color: var(--text-main); padding: 8px 0; position: relative; }
        .desktop-nav a:hover { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-card); z-index: 999; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
        .drawer-active .mobile-drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .mobile-drawer { left: 0; }
        .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; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav ul { display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 18px; font-weight: 500; padding: 10px; border-radius: var(--radius-md); }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        
        .footer { background: #0f172a; color: #9ca3af; padding: 60px 0 30px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #9ca3af; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; }

        
        .about-hero { background: #111827 url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; padding: 100px 0; color: #fff; text-align: center; position: relative; }
        .about-hero::before { content: ''; position: absolute; inset: 0; background: rgba(17, 24, 39, 0.85); }
        .about-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
        .about-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
        .about-subtitle { font-size: 18px; color: #9ca3af; }

        .about-section { padding: 80px 0; background: #fff; }
        .about-section-alt { padding: 80px 0; background: var(--bg-body); }
        .text-image-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .block-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; position: relative; padding-bottom: 15px; }
        .block-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--primary); border-radius: 2px; }
        .block-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
        .block-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

        
        .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .process-card { background: var(--bg-body); padding: 40px 30px; border-radius: var(--radius-md); text-align: center; position: relative; }
        .process-step { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary); color: #fff; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 4px solid #fff; }
        .process-card h4 { font-size: 20px; margin: 15px 0; }
        .process-card p { font-size: 14px; color: var(--text-muted); }

        @media (max-width: 992px) {
            .text-image-block { grid-template-columns: 1fr; gap: 40px; }
            .process-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .footer-grid { grid-template-columns: 1fr; }
            .about-title { font-size: 32px; }
        }