﻿:root {
            --theme-base: rgb(223, 230, 233);
            --theme-light: rgba(223, 230, 233, 0.3);
            --theme-dark: #b2bec3;
            --primary-accent: #d63031;
            --bg-color: #f8f9fa;
            --text-main: #2d3436;
            --text-muted: #636e72;
            --white: #ffffff;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .head-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .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; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; padding: 5px 0; border-bottom: 2px solid transparent; }
        .desktop-nav a:hover { color: var(--primary-accent); border-color: var(--primary-accent); }
        .menu-btn { display: none; background: none; border: none; padding: 10px; }
        .menu-btn 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); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 1000; transition: var(--transition); display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-head { padding: 20px; border-bottom: 1px solid var(--theme-base); display: flex; justify-content: space-between; align-items: center; background: var(--theme-light); }
        .drawer-close { font-size: 28px; background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 0; font-size: 18px; border-bottom: 1px solid #f0f0f0; }

        
        .about-hero { background: var(--theme-base); padding: 80px 0; text-align: center; }
        .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: 800px; margin: 0 auto; }
        
        .about-content { padding: 80px 0; background: var(--white); }
        .about-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
        .about-row:nth-child(even) { flex-direction: row-reverse; }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 30px; margin-bottom: 20px; color: var(--text-main); position: relative; padding-bottom: 15px; }
        .about-text h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--primary-accent); }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }
        .about-img { flex: 1; border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
        
        .values-sec { background: var(--bg-color); padding: 80px 0; }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
        .value-card { background: var(--white); padding: 40px 20px; text-align: center; border-radius: var(--border-radius); border-top: 4px solid var(--theme-dark); transition: var(--transition); }
        .value-card:hover { border-top-color: var(--primary-accent); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .value-card h3 { font-size: 20px; margin-bottom: 15px; }
        .value-card p { font-size: 14px; color: var(--text-muted); }

        
        footer { background: #1e272e; color: #d2dae2; padding: 60px 0 20px; }
        .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .foot-about .logo span { color: var(--white); }
        .foot-about p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #808e9b; }
        .foot-title { font-size: 18px; color: var(--white); margin-bottom: 20px; font-weight: bold; }
        .foot-links li { margin-bottom: 10px; }
        .foot-links a { color: #808e9b; font-size: 15px; }
        .foot-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #2f3640; font-size: 14px; color: #808e9b; }

        @media (max-width: 992px) {
            .about-row, .about-row:nth-child(even) { flex-direction: column; text-align: center; }
            .about-text h2::after { left: 50%; transform: translateX(-50%); }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-btn { display: block; }
            .foot-grid { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: 1fr; }
        }