﻿:root { --primary-color: rgb(255, 59, 48); --primary-hover: rgb(220, 40, 30); --primary-light: rgba(255, 59, 48, 0.1); --text-main: #2c3e50; --text-muted: #6c757d; --bg-body: #f8f9fa; --bg-white: #ffffff; --border-color: #eaeaea; --container-width: 1200px; --shadow-sm: 0 2px 8px rgba(0,0,0,0.05); --shadow-md: 0 8px 24px rgba(0,0,0,0.08); --radius-md: 8px; --radius-lg: 16px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
        .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: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { font-size: 16px; font-weight: 500; color: var(--text-main); }
        .nav-desktop a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .btn-outline { border: 1px solid var(--border-color); background: transparent; color: var(--text-main); }
        .btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: all 0.3s; overflow-y: auto; display: flex; flex-direction: column; }
        .drawer.active { left: 0; box-shadow: var(--shadow-md); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 28px; cursor: pointer; color: var(--text-muted); line-height: 1; }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; border-bottom: 1px solid #f0f0f0; }

        .footer { background: #1a1a2e; color: #a0a0b5; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
        .footer-bottom-links { display: flex; justify-content: center; gap: 20px; }

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

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

        .about-section { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-text h2 { font-size: 32px; margin-bottom: 20px; position: relative; padding-left: 20px; }
        .about-text h2::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 6px; background: var(--primary-color); border-radius: 4px; }
        .about-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 20px; line-height: 1.8; }
        .about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
        
        .core-values { background: var(--bg-white); padding: 80px 0; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .value-card { padding: 40px 30px; text-align: center; border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: all 0.3s; }
        .value-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
        .value-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 20px; line-height: 1; }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; color: #111; }
        .value-card p { color: var(--text-muted); font-size: 14px; }

        @media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }