﻿:root {
      --primary-color: rgb(147, 51, 234);
      --primary-hover: rgb(126, 34, 206);
      --deep-sea-ink: #0B1120;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --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-dark); background-color: #F8FAFC; line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    
    
    header { background: #FFFFFF; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
    .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 { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--text-dark); }
    .nav-menu { display: flex; gap: 24px; align-items: center; }
    .nav-menu a { font-size: 15px; font-weight: 600; color: var(--text-dark); padding: 8px 12px; border-radius: 6px; }
    .nav-menu a:hover { color: var(--primary-color); background: rgba(147,51,234,0.05); }
    .nav-btn { background: var(--primary-color); color: #FFF !important; padding: 8px 18px !important; border-radius: 8px; font-weight: 600; }
    .hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: var(--transition); backdrop-filter: blur(4px); }
    .drawer { position: fixed; top: 0; left: -320px; width: 320px; height: 100%; background: #FFF; z-index: 1001; transition: var(--transition); padding: 30px 24px; display: flex; flex-direction: column; gap: 30px; }
    .drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
    .drawer-open .drawer { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--text-dark); padding: 12px; border-radius: 8px; border-bottom: 1px solid var(--border-color); }

    
    .about-banner { background: linear-gradient(135deg, #1E1B4B 0%, var(--deep-sea-ink) 100%); color: #FFF; text-align: center; padding: 80px 20px; }
    .about-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
    .about-banner p { font-size: 18px; opacity: 0.8; max-width: 600px; margin: 0 auto; }

    
    .about-section { max-width: 900px; margin: 60px auto; padding: 0 20px; }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
    .intro-box h2 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
    .intro-box p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
    
    
    .timeline-title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 40px; color: var(--text-dark); }
    .timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 30px; }
    .timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--border-color); }
    .timeline-item { position: relative; margin-bottom: 40px; }
    .timeline-dot { position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary-color); border: 3px solid #FFF; }
    .timeline-date { font-size: 14px; font-weight: 700; color: var(--primary-color); margin-bottom: 6px; }
    .timeline-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .timeline-content p { font-size: 14px; color: var(--text-muted); }

    
    footer { background: #0F172A; color: #94A3B8; padding: 70px 20px 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: #FFFFFF; }
    .footer-brand p { font-size: 14px; }
    .footer-links h4 { color: #FFFFFF; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links ul a { font-size: 14px; }
    .footer-links ul a:hover { color: #FFFFFF; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .hamburger { display: block; }
      .intro-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
    }