﻿:root {
            --primary: rgb(2,132,199);
            --primary-hover: rgb(2,100,160);
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --text-main: #0f172a;
            --text-sub: #475569;
            --border: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-main); 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; }

        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 70px; display: flex; justify-content: space-between; align-items: center; }
        .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(--primary); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; font-size: 16px; }
        .header-action { display: flex; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; }
        .btn-primary { background: var(--primary); color: #fff; }
        .mobile-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-overlay.active { opacity: 1; visibility: visible; }
        .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 { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }

        .about-hero { background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1920') center/cover; position: relative; padding: 120px 20px; color: #fff; text-align: center; }
        .about-hero::before { content: ''; position: absolute; inset: 0; background: rgba(15, 23, 42, 0.85); }
        .about-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
        .about-hero h1 { font-size: 42px; margin-bottom: 20px; }
        .about-hero p { font-size: 18px; opacity: 0.9; }

        .container { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
        
        .story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
        .story-text h2 { font-size: 32px; margin-bottom: 20px; color: var(--primary); }
        .story-text p { font-size: 16px; color: var(--text-sub); margin-bottom: 15px; }
        .story-img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); overflow: hidden; }

        .values-section { background: var(--bg-card); padding: 60px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .values-section h2 { text-align: center; font-size: 32px; margin-bottom: 50px; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .value-item { text-align: center; }
        .value-icon { width: 80px; height: 80px; background: rgba(2,132,199,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 20px; }
        .value-item h3 { font-size: 20px; margin-bottom: 15px; }
        .value-item p { color: var(--text-sub); }

        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 20px 30px; margin-top: 80px;}
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand p { margin-top: 20px; max-width: 300px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; }
        .footer-nav li { margin-bottom: 12px; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; }

        @media (max-width: 992px) { .story-section, .values-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { .desktop-nav, .header-action { display: none; } .mobile-toggle { display: block; } .values-section { padding: 30px; } .footer-grid { grid-template-columns: 1fr; } }