﻿:root {
            --primary-color: rgb(17,24,39);
            --accent-color: #f59e0b;
            --accent-hover: #d97706;
            --text-light: #f3f4f6;
            --text-muted: #9ca3af;
            --bg-card: rgba(31, 41, 55, 0.7);
            --border-color: rgba(75, 85, 99, 0.4);
            --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--primary-color);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 8px;
        }
        .btn-primary { background: var(--gradient-accent); color: #fff; border: none; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5); }
        .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(--accent-color); white-space: nowrap; letter-spacing: 1px; }
        .site-header { background: rgba(17, 24, 39, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 75px; }
        .nav-desktop { display: flex; align-items: center; gap: 24px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-light); opacity: 0.85; position: relative; padding: 6px 0; }
        .nav-desktop a:hover, .nav-desktop a.active { opacity: 1; color: var(--accent-color); }
        .nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-color); transition: width 0.3s ease; }
        .nav-desktop a:hover::after { width: 100%; }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; width: 30px; }
        .menu-toggle span { display: block; width: 100%; height: 3px; background-color: var(--text-light); border-radius: 2px; transition: 0.3s; }
        .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 149; }
        .nav-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: rgb(17,24,39); border-right: 1px solid var(--border-color); z-index: 150; display: flex; flex-direction: column; transition: left 0.3s ease; padding: 24px; }
        .nav-drawer.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
        .drawer-close { background: none; border: none; font-size: 28px; color: var(--text-light); cursor: pointer; }
        .nav-mobile { display: flex; flex-direction: column; gap: 20px; }
        .nav-mobile a { font-size: 16px; font-weight: 600; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .nav-mobile a:hover { color: var(--accent-color); }
        .drawer-footer { margin-top: auto; padding-top: 20px; }
        .site-footer { background: #0b0f19; border-top: 1px solid var(--border-color); padding: 60px 0 30px; margin-top: 80px; }
        .footer-container { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
        .footer-brand .footer-desc { margin-top: 16px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
        .footer-nav-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 8px; }
        .footer-nav-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent-color); }
        .footer-nav-col ul { list-style: none; }
        .footer-nav-col ul li { margin-bottom: 12px; }
        .footer-nav-col ul li a { color: var(--text-muted); font-size: 14px; }
        .footer-nav-col ul li a:hover { color: var(--accent-color); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }
        .page-banner { background: linear-gradient(180deg, rgba(31, 41, 55, 0.4) 0%, rgba(17, 24, 39, 1) 100%); padding: 60px 0; border-bottom: 1px solid var(--border-color); }
        .banner-title { font-size: 32px; font-weight: 800; background: linear-gradient(to right, #fff, var(--accent-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .about-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; padding: 80px 0; align-items: center; }
        .about-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; color: var(--accent-color); }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
        .about-visual img { border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
        .values-section { background: rgba(31, 41, 55, 0.3); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .value-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 30px; text-align: center; }
        .value-num { font-size: 40px; font-weight: 800; color: var(--accent-color); margin-bottom: 16px; }
        .value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
        @media (max-width: 992px) {
            .about-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .value-grid { grid-template-columns: 1fr; }
        }