﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --theme-silver: rgb(223,230,233);
      --dark-ink: #0B132B;
      --dark-blue: #1C2541;
      --light-bg: #F8FAFC;
      --text-main: #1E293B;
      --text-light: #64748B;
      --border-color: rgba(0,0,0,0.08);
      --card-bg: #ffffff;
      --transition: all 0.3s ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); background-color: var(--light-bg); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }

    
    .site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--dark-ink); }
    .desktop-nav { display: flex; gap: 24px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 2px solid transparent; }
    .desktop-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .nav-btn { background: var(--primary); color: #fff; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; }
    .nav-btn:hover { background: var(--primary-hover); }
    .drawer-trigger { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; }
    .drawer-trigger span { display: block; width: 25px; height: 2px; background: var(--dark-ink); }

    
    .mobile-drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; pointer-events: none; transition: var(--transition); }
    .mobile-drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background: #fff; z-index: 2000; box-shadow: 4px 0 20px rgba(0,0,0,0.15); transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; font-size: 28px; color: var(--text-light); cursor: pointer; }
    .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
    .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--text-main); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
    .drawer-nav a:hover { color: var(--primary); }
    .drawer-btn { margin-top: 10px; background: var(--primary); color: #fff; text-align: center; padding: 12px; border-radius: 6px; font-weight: 600; }

    
    .about-banner {
      background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-ink) 100%);
      color: #fff;
      padding: 100px 20px;
      text-align: center;
    }

    .about-banner h1 {
      font-size: 40px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .about-banner p {
      color: #94A3B8;
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
    }

    
    .about-container {
      max-width: 900px;
      margin: 60px auto 100px;
      padding: 0 20px;
    }

    .about-section {
      margin-bottom: 60px;
    }

    .about-section h2 {
      font-size: 28px;
      color: var(--dark-ink);
      margin-bottom: 20px;
      border-bottom: 2px solid var(--primary);
      padding-bottom: 10px;
      display: inline-block;
    }

    .about-section p {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .value-item {
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }

    .value-item .icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .value-item h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--dark-ink);
    }

    .value-item p {
      font-size: 14px;
      color: var(--text-light);
    }

    
    .timeline {
      position: relative;
      margin-top: 40px;
      padding-left: 30px;
      border-left: 2px solid var(--border-color);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 40px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -37px;
      top: 4px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary);
      border: 3px solid #fff;
    }

    .timeline-year {
      font-weight: 800;
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 6px;
    }

    .timeline-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-ink);
      margin-bottom: 8px;
    }

    .timeline-desc {
      font-size: 14px;
      color: var(--text-light);
    }

    
    .site-footer { background: var(--dark-ink); color: #94A3B8; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; padding: 80px 20px 40px; display: flex; justify-content: space-between; gap: 60px; }
    .footer-brand { flex: 1; max-width: 400px; }
    .footer-brand .logo span { color: #fff; }
    .brand-desc { margin-top: 20px; font-size: 14px; line-height: 1.6; }
    .footer-links-grid { display: grid; grid-template-columns: repeat(3, 160px); gap: 40px; }
    .footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; transition: var(--transition); }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 20px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

    @media (max-width: 768px) {
      .desktop-nav, .nav-btn { display: none; }
      .drawer-trigger { display: flex; }
      .values-grid { grid-template-columns: 1fr; }
      .footer-container { flex-direction: column; gap: 40px; }
      .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    }