﻿:root { --theme-color: rgb(255,184,108); --bg-color: #f8fafc; --text-main: #1e293b; --text-muted: #64748b; --border-color: #e2e8f0; --white: #ffffff; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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; }
        .desktop-nav { display: flex; gap: 32px; }
        .desktop-nav a { font-weight: 500; }
        .desktop-nav a:hover { color: var(--theme-color); }
        .btn { display: inline-flex; padding: 10px 24px; border-radius: 8px; font-weight: 600; background: var(--theme-color); color: #fff; }
        .mobile-menu-btn { display: none; font-size: 24px; background: none; border: none; }
        
        .drawer-mask { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
        .drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: #fff; z-index: 999; transition: left 0.3s; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

        
        .about-hero { padding: 100px 0; background: #0f172a; color: #fff; text-align: center; }
        .about-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; color: var(--theme-color); }
        .about-desc { font-size: 18px; color: #cbd5e1; max-width: 700px; margin: 0 auto; }

        .about-content { padding: 80px 0; background: #fff; }
        .grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-text h2 { font-size: 32px; margin-bottom: 24px; color: #0f172a; }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
        .about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
        
        .values-sec { padding: 80px 0; background: var(--bg-color); }
        .v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .v-card { background: #fff; padding: 40px; border-radius: 16px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 4px solid var(--theme-color); }
        .v-card h3 { font-size: 22px; margin-bottom: 16px; }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        .footer-brand .logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 24px; }
        .footer-links li { margin-bottom: 12px; list-style: none; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .grid-split, .v-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }