﻿:root {
            --primary: rgb(48,209,88);
            --primary-dark: rgb(38,180,75);
            --bg-color: #f8f9fc;
            --text-main: #2c3e50;
            --text-light: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
        body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .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: #111; white-space: nowrap; }
        
        .header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
        .mobile-toggle svg { width: 28px; height: 28px; fill: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 200; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 201; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; cursor: pointer; }
        .drawer-close svg { width: 24px; height: 24px; fill: var(--text-main); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
        .drawer-nav a { font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid #f1f5f9; display: block; }

        .about-hero { background: var(--white); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
        .about-title { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
        .about-subtitle { font-size: 18px; color: var(--text-light); max-width: 800px; 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-text h3 { font-size: 28px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .about-text h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--primary); border-radius: 2px; }
        .about-text p { font-size: 16px; color: var(--text-light); margin-bottom: 20px; }
        .about-img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        .mission-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }
        .m-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; border-top: 4px solid var(--primary); }
        .m-card-num { font-size: 48px; font-weight: 900; color: rgba(48,209,88,0.2); margin-bottom: 10px; line-height: 1; }
        .m-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
        .m-card p { color: var(--text-light); font-size: 15px; }

        .footer { background: #1e293b; color: #cbd5e1; padding: 60px 0 20px; }
        .footer-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 40px; }
        .footer-brand { flex: 1; min-width: 300px; max-width: 400px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
        .link-group h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .link-group a { font-size: 14px; transition: color 0.3s; }
        .link-group a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; }

        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .mission-cards { grid-template-columns: 1fr; }
        }