﻿:root { --primary: rgb(0, 122, 255); --text-main: #1d1d1f; --text-muted: #86868b; --bg-body: #ffffff; --border-color: #e5e5ea; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        ul, li { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 15px; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-toggle { display: none; cursor: pointer; padding: 10px; }
        .mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 5px 0; }
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 998; transition: 0.3s; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 999; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-body a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }

        .about-hero { padding: 100px 0; text-align: center; background: #f9f9fb; }
        .about-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
        .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
        
        .about-content { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
        .about-grid:nth-child(even) { direction: rtl; }
        .about-grid:nth-child(even) .text-block { direction: ltr; }
        .text-block h2 { font-size: 32px; font-weight: 700; margin-bottom: 24px; }
        .text-block p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
        .img-block img { border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        
        .values-section { background: var(--text-main); color: #fff; padding: 80px 0; text-align: center; }
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
        .value-card { padding: 40px 30px; background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
        .value-card .icon { font-size: 40px; margin-bottom: 20px; color: var(--primary); }
        .value-card h3 { font-size: 20px; margin-bottom: 12px; }
        .value-card p { font-size: 14px; color: #a1a1aa; }

        .footer { background: #111; color: #fff; padding: 60px 0 30px; }
        .footer-widgets { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer .logo span { color: #fff; }
        .widget-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; color: #fff; }
        .widget-links li { margin-bottom: 12px; }
        .widget-links a { color: #a1a1aa; font-size: 14px; }
        .footer-bottom { border-top: 1px solid #333; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #a1a1aa; }

        @media (max-width: 992px) {
            .about-grid, .values-grid { grid-template-columns: 1fr; }
            .about-grid:nth-child(even) { direction: ltr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .footer-widgets { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }