﻿:root {
      --primary: rgb(99, 102, 241);
      --primary-hover: rgb(79, 70, 229);
      --accent: #1D7BFF;
      --bg-dark: #0F172A;
      --bg-light: #F8FAFC;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --glacier-blue: #E0F2FE;
      --silver-white: #F1F5F9;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text-main); background-color: var(--bg-light); }
    a { color: inherit; text-decoration: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--text-main); }

    
    .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); height: 70px; display: flex; align-items: center; }
    .header .container { display: flex; justify-content: space-between; align-items: center; }
    .nav-menu { display: flex; gap: 30px; align-items: center; }
    .nav-menu a { font-weight: 500; color: var(--text-main); padding: 8px 0; }
    .nav-btn { background: var(--primary); color: #fff !important; padding: 10px 22px !important; border-radius: 6px; }

    .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .menu-toggle span { display: block; width: 25px; height: 2px; background: var(--text-main); }

    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 300px; height: 100vh; background: #fff; box-shadow: 4px 0 20px rgba(0,0,0,0.1); z-index: 1099; transition: 0.4s; padding: 30px 24px; display: flex; flex-direction: column; gap: 40px; }
    .mobile-drawer.active { left: 0; }
    .mobile-drawer .logo-area { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
    .close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 20px; }
    .mobile-nav-links a { font-size: 16px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
    .mobile-drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.4); z-index: 1098; opacity: 0; visibility: hidden; transition: 0.3s; }
    .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }

    
    .about-hero { background: radial-gradient(120% 120% at 50% 10%, var(--bg-dark) 40%, #1e293b 100%); color: #fff; padding: 80px 0; text-align: center; }
    .about-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 15px; }
    .about-hero p { color: #94A3B8; max-width: 600px; margin: 0 auto; }

    .about-section { padding: 80px 0; }
    .about-content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .about-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 20px; color: var(--text-main); }
    .about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
    .about-visual { background: #E2E8F0; border-radius: 12px; height: 350px; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: bold; color: var(--accent); }

    
    .timeline-container { background: var(--silver-white); padding: 80px 0; }
    .timeline { max-width: 800px; margin: 0 auto; position: relative; }
    .timeline::after { content: ''; position: absolute; width: 2px; background: var(--border-color); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
    .timeline-item { padding: 10px 40px; position: relative; width: 50%; background: inherit; }
    .timeline-item::after { content: ''; position: absolute; width: 16px; height: 16px; right: -8px; background-color: #fff; border: 4px solid var(--accent); top: 15px; border-radius: 50%; z-index: 1; }
    .left { left: 0; }
    .right { left: 50%; }
    .right::after { left: -8px; }
    .timeline-content { padding: 20px; background: white; position: relative; border-radius: 8px; border: 1px solid var(--border-color); }
    .timeline-content h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }

    
    .footer { background: #0B0F19; color: #94A3B8; padding: 80px 0 30px; border-top: 1px solid #1E293B; margin-top: 60px; }
    .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-col h4 { color: #F8FAFC; font-size: 16px; margin-bottom: 20px; font-weight: 700; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid #1E293B; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    @media (max-width: 768px) {
      .header .nav-menu { display: none; }
      .menu-toggle { display: flex; }
      .about-content-wrapper { grid-template-columns: 1fr; }
      .timeline::after { left: 31px; }
      .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
      .timeline-item::after { left: 22px; }
      .right { left: 0%; }
    }