﻿:root { --primary: rgb(202, 138, 4); --bg-body: #f8fafc; --bg-surface: #ffffff; --bg-dark: #1e293b; --text-main: #0f172a; --text-muted: #64748b; --border: #e2e8f0; --radius: 8px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-dark); color: #fff; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: #fff; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { color: #cbd5e1; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-surface); z-index: 1000; transition: 0.3s transform; display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-dark); }
        .drawer-close { background: none; border: none; font-size: 28px; color: #fff; cursor: pointer; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; }

        .about-hero { background: linear-gradient(rgba(30,41,59,0.9), rgba(30,41,59,0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80') center/cover; padding: 100px 0; text-align: center; color: #fff; }
        .about-hero h1 { font-size: 40px; margin-bottom: 15px; color: var(--primary); }
        .about-hero p { font-size: 18px; max-width: 600px; margin: 0 auto; color: #cbd5e1; }

        .about-section { padding: 80px 0; background: var(--bg-surface); }
        .about-grid { display: flex; align-items: center; gap: 50px; }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 32px; margin-bottom: 20px; position: relative; padding-bottom: 15px; }
        .about-text h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--primary); }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
        .about-img { flex: 1; text-align: center; }
        .about-img img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        .values-section { padding: 80px 0; background: var(--bg-body); }
        .values-title { text-align: center; font-size: 32px; margin-bottom: 50px; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .value-card { background: #fff; padding: 40px 30px; text-align: center; border-radius: var(--radius); box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary); }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; }
        .value-num { font-size: 48px; font-weight: 900; color: rgba(202, 138, 4, 0.1); margin-bottom: -20px; }

        .footer { background: #0f172a; color: #cbd5e1; padding: 50px 0 20px; border-top: 5px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 15px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 14px; }

        @media (max-width: 992px) { .about-grid { flex-direction: column; } .values-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { .desktop-nav { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } }