﻿:root {
      --primary-color: rgb(3,105,161);
      --bg-dark: #0a0f1d;
      --bg-card: #131c35;
      --glacier-blue: #0ea5e9;
      --silver-white: #f1f5f9;
      --deep-sea: #0f172a;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-color: rgba(14, 165, 233, 0.2);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    
    header {
      background-color: rgba(10, 15, 29, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, var(--silver-white), var(--glacier-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .nav-links { display: flex; gap: 24px; align-items: center; }
    .nav-links a { font-size: 15px; color: var(--text-muted); }
    .nav-links a:hover { color: var(--glacier-blue); }
    .nav-btn { background: linear-gradient(135deg, var(--primary-color), var(--glacier-blue)); color: white; padding: 8px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; }
    .menu-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }

    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s ease; }
    .mobile-drawer.active { left: 0; }
    .drawer-backdrop { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 280px; height: 100%; background: var(--bg-dark); border-right: 1px solid var(--border-color); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .close-drawer { background: none; border: none; color: var(--text-main); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    .about-hero {
      padding: 160px 24px 80px;
      text-align: center;
      background: radial-gradient(circle at center, rgba(3,105,161,0.2) 0%, rgba(10,15,29,0) 80%);
    }
    .about-title { font-size: 42px; font-weight: 800; color: var(--silver-white); margin-bottom: 20px; }
    .about-subtitle { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

    .about-content {
      max-width: 900px;
      margin: 0 auto 100px;
      padding: 0 24px;
    }
    .about-section {
      margin-bottom: 60px;
    }
    .about-section h2 {
      font-size: 26px;
      color: var(--silver-white);
      margin-bottom: 20px;
      border-left: 4px solid var(--glacier-blue);
      padding-left: 12px;
    }
    .about-section p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .stat-matrix {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .stat-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
    }
    .stat-num { font-size: 36px; font-weight: 800; color: var(--glacier-blue); margin-bottom: 8px; }
    .stat-label { font-size: 14px; color: var(--text-muted); }

    
    footer { background-color: var(--deep-sea); border-top: 1px solid var(--border-color); padding: 80px 24px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; max-width: 300px; }
    .footer-links-group h4 { font-size: 16px; color: var(--silver-white); margin-bottom: 24px; }
    .footer-links-group ul { list-style: none; }
    .footer-links-group ul li { margin-bottom: 12px; }
    .footer-links-group ul li a { font-size: 14px; color: var(--text-muted); }
    .footer-links-group ul li a:hover { color: var(--glacier-blue); }
    .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; align-items: center; font-size: 12px; color: var(--text-muted); }

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