﻿:root { --primary: rgb(52,168,83); --primary-hover: #2b8b44; --primary-light: rgba(52,168,83,0.08); --text-main: #1e293b; --text-muted: #64748b; --bg-body: #f8fafc; --bg-white: #ffffff; --border-light: #e2e8f0; --shadow-sm: 0 1px 3px rgba(0,0,0,0.1); --radius-md: 12px; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; } a { text-decoration: none; color: inherit; transition: 0.3s; } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; padding: 15px 0; } .header .container { display: flex; align-items: center; justify-content: space-between; } .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; } .logo img { display: block; height: 36px; 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-weight: 500; font-size: 15px; color: var(--text-muted); position: relative; } .nav-desktop a:hover { color: var(--primary); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; } .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; } .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; } .drawer-mask.active { opacity: 1; visibility: visible; } .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s; display: flex; flex-direction: column; overflow-y: auto; } .mobile-drawer.active { left: 0; } .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; } .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; } .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; border-bottom: 1px solid var(--border-light); }
        .footer { background: #1e293b; color: #cbd5e1; padding: 60px 0 30px; mt-auto; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-brand .logo span { color: #fff; } .footer-title { color: #fff; font-size: 16px; margin-bottom: 20px; } .footer-links li { margin-bottom: 12px; } .footer-links a:hover { color: var(--primary); } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; opacity: 0.6; }

        
        .about-hero { background: linear-gradient(to right, var(--bg-white), var(--primary-light)); padding: 80px 0; border-bottom: 1px solid var(--border-light); }
        .about-hero h1 { font-size: 40px; margin-bottom: 20px; color: var(--text-main); }
        .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; }
        
        .content-section { padding: 80px 0; background: var(--bg-white); }
        .content-section:nth-child(even) { background: var(--bg-body); }
        .split-row { display: flex; align-items: center; gap: 60px; }
        .split-row.reverse { flex-direction: row-reverse; }
        .split-text { flex: 1; }
        .split-text h2 { font-size: 30px; margin-bottom: 20px; color: var(--primary); }
        .split-text p { margin-bottom: 16px; font-size: 16px; color: var(--text-muted); }
        .split-img { flex: 1; }
        .split-img img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
        
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .value-card { background: var(--bg-white); padding: 40px 30px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-light); }
        .value-card .num { font-size: 48px; font-weight: 800; color: var(--primary-light); margin-bottom: 10px; line-height: 1; }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; position: relative; z-index: 1; margin-top: -30px; }
        .value-card p { color: var(--text-muted); font-size: 14px; }

        @media (max-width: 992px) { .split-row, .split-row.reverse { flex-direction: column; } .values-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } }
        @media (max-width: 768px) { .nav-desktop { display: none; } .menu-toggle { display: flex; } .about-hero h1 { font-size: 32px; } }