﻿:root { --primary: rgb(0,184,148); --primary-hover: rgb(0,150,120); --primary-light: rgba(0,184,148,0.1); --bg-body: #f8fafc; --bg-white: #ffffff; --text-main: #0f172a; --text-body: #334155; --text-muted: #64748b; --border-color: #e2e8f0; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --radius-md: 8px; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; 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; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: none; } .desktop-nav a { padding: 8px 16px; font-weight: 500; color: var(--text-main); }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        @media (min-width: 992px) { .desktop-nav { display: flex; gap: 10px; align-items: center; } .mobile-menu-toggle { display: none; } }
        .mobile-menu-toggle { background: none; border: none; cursor: pointer; color: var(--text-main); padding: 8px; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; }
        .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: var(--transition); display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); background: #f8fafc; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 16px 24px; color: var(--text-main); border-left: 4px solid transparent; }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); border-left-color: var(--primary); }

        
        .about-hero { padding: 80px 0; background: #fff; text-align: center; }
        .about-hero h1 { font-size: 36px; color: var(--text-main); margin-bottom: 20px; }
        .about-hero p { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
        
        .about-content { padding: 60px 0; display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
        @media (min-width: 992px) { .about-content { grid-template-columns: 1fr 1fr; } }
        .about-text h2 { font-size: 28px; margin-bottom: 24px; color: var(--text-main); position: relative; padding-left: 16px; }
        .about-text h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; background: var(--primary); border-radius: 2px; }
        .about-text p { margin-bottom: 16px; font-size: 16px; color: var(--text-body); }
        .about-img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
        
        .values-section { background: var(--bg-white); padding: 80px 0; }
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .value-card { padding: 30px; border: 1px solid var(--border-color); border-radius: var(--radius-md); text-align: center; }
        .value-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 10px; line-height: 1; }
        .value-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-main); }
        
        
        .site-footer { background: #1e293b; color: #94a3b8; padding: 80px 0 0 0; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
        .footer-logo span { color: #fff; }
        .footer-links h3 { color: #fff; font-size: 18px; margin-bottom: 24px; }
        .footer-links ul li { margin-bottom: 12px; } .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #334155; padding: 24px 0; text-align: center; font-size: 14px; }