﻿:root {
            --primary: rgb(209,213,219);
            --primary-dark: #9ca3af;
            --primary-light: #f3f4f6;
            --accent: #f59e0b;
            --accent-red: #ef4444;
            --dark: #111827;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-100: #f3f4f6;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f9fafb; color: var(--gray-800); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        li { list-style: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; transition: all 0.3s ease; }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .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: 20px; font-weight: 800; line-height: 1; color: var(--gray-900); white-space: nowrap; letter-spacing: -0.5px; }
        
        .desktop-nav { display: flex; align-items: center; gap: 32px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--gray-600); }
        .desktop-nav a:hover, .desktop-nav a.active { color: var(--gray-900); }
        
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .nav-btn { background: var(--gray-900); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; }
        .nav-btn:hover { background: var(--gray-700); }
        
        .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 6px; }
        .mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-900); transition: 0.3s; }

        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #fff; z-index: 999; transition: all 0.3s ease; display: flex; flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg); }
        .drawer-menu.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray-500); }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--gray-700); }
        .drawer-nav a:hover { color: var(--gray-900); padding-left: 4px; }
        .drawer-footer { margin-top: auto; border-top: 1px solid var(--border); padding-top: 20px; font-size: 12px; color: var(--gray-400); }

        
        .about-banner { text-align: center; padding: 80px 0; background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%); }
        .about-banner h1 { font-size: 40px; font-weight: 800; margin-bottom: 16px; color: var(--gray-900); }
        .about-banner p { font-size: 18px; color: var(--gray-600); max-width: 680px; margin: 0 auto; }

        .about-content { padding: 80px 0; }
        .about-section { display: grid; grid-template-cols: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
        .about-section-img { background: var(--primary-light); border-radius: 24px; overflow: hidden; height: 360px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
        .about-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; color: var(--gray-900); }
        .about-section p { color: var(--gray-600); margin-bottom: 20px; font-size: 16px; }

        .values-grid { display: grid; grid-template-cols: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
        .value-card { background: #fff; padding: 32px; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }
        .value-icon { font-size: 24px; width: 48px; height: 48px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .value-card p { color: var(--gray-500); font-size: 14px; }

        
        .timeline-section { background-color: var(--primary-light); padding: 80px 0; }
        .timeline-title { text-align: center; margin-bottom: 48px; }
        .timeline-title h2 { font-size: 32px; font-weight: 800; }
        .timeline-flow { position: relative; max-width: 800px; margin: 0 auto; padding-left: 32px; border-left: 2px solid var(--primary-dark); }
        .timeline-item { position: relative; margin-bottom: 40px; }
        .timeline-item::before { content: ""; position: absolute; left: -39px; top: 6px; width: 12px; height: 12px; background: var(--gray-900); border: 2px solid #fff; border-radius: 50%; }
        .timeline-time { font-size: 14px; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; }
        .timeline-content h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
        .timeline-content p { color: var(--gray-600); font-size: 14px; }

        
        .site-footer { background: var(--gray-900); color: #fff; border-top: 1px solid var(--gray-800); padding: 80px 0 32px; }
        .footer-container { display: grid; grid-template-cols: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo { margin-bottom: 20px; }
        .footer-brand .logo span { color: #fff; }
        .brand-desc { color: var(--gray-500); font-size: 14px; line-height: 1.6; }
        .footer-link-group h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
        .footer-link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-link-group a { color: var(--gray-400); font-size: 14px; }
        .footer-link-group a:hover { color: #fff; }
        .footer-contact p { color: var(--gray-400); font-size: 14px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 32px; }
        .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-500); }

        @media (max-width: 992px) {
            .about-section { grid-template-cols: 1fr; gap: 32px; }
            .values-grid { grid-template-cols: 1fr; }
            .footer-container { grid-template-cols: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .footer-container { grid-template-cols: 1fr; gap: 32px; }
            .footer-bottom-container { flex-direction: column; gap: 16px; text-align: center; }
        }