﻿:root {
      --primary: rgb(3,105,161);
      --glacier: #1D7BFF;
      --deep-sea: #0A1128;
      --sea-medium: #101F42;
      --silver-white: #F4F7FC;
      --text-dark: #1E293B;
      --text-muted: #64748B;
      --text-light: #F8FAFC;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: sans-serif; color: var(--text-dark); background-color: var(--silver-white); line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

    
    .header { background: var(--deep-sea); border-bottom: 1px solid rgba(255, 255, 255, 0.08); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
    .logo span { display: inline-block; font-size: 20px; font-weight: 800; color: var(--text-light); }
    .nav-desktop { display: flex; gap: 28px; }
    .nav-desktop a { color: #94A3B8; font-size: 15px; font-weight: 500; }
    .nav-desktop a:hover { color: var(--glacier); }
    .btn-primary-sm { background: linear-gradient(135deg, var(--glacier), var(--primary)); color: var(--text-light); padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; }
    .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-light); }

    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(10, 17, 40, 0.8); z-index: 1999; display: none; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background: var(--deep-sea); z-index: 2000; transition: left 0.3s ease; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-header { padding: 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 28px; }
    .drawer-content { flex: 1; padding: 24px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: #94A3B8; font-size: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }

    
    .about-header { background: var(--deep-sea); color: var(--text-light); padding: 80px 20px; text-align: center; }
    .about-header h1 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
    .about-header p { font-size: 18px; color: #94A3B8; max-width: 600px; margin: 0 auto; }
    
    .about-section { max-width: 1000px; margin: 60px auto; padding: 0 20px; }
    .about-card { background: #FFF; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 40px; }
    .about-card h2 { font-size: 24px; color: var(--deep-sea); margin-bottom: 16px; font-weight: 700; border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 6px; }
    .about-card p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
    
    .timeline { border-left: 3px solid var(--primary); padding-left: 20px; margin: 30px 0; }
    .timeline-item { position: relative; margin-bottom: 30px; }
    .timeline-item::before { content: ''; position: absolute; left: -27px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--glacier); border: 3px solid #FFF; }
    .timeline-year { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
    .timeline-desc { font-size: 14px; color: var(--text-muted); }

    
    .footer { background: var(--deep-sea); color: #94A3B8; border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 60px 20px 20px; margin-top: 80px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-col h4 { color: var(--text-light); 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; }
    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; font-size: 12px; text-align: center; }
    .footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

    @media (max-width: 991px) {
      .nav-desktop { display: none; }
      .mobile-menu-btn { display: flex; }
      .footer-container { grid-template-columns: 1fr; }
    }