﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(255,184,108);
      --dark-bg: #0A1128;
      --light-bg: #F4F7FC;
      --text-dark: #111827;
      --text-light: #F3F4F6;
      --text-gray: #6B7280;
      --border-color: #E5E7EB;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-dark); background-color: #ffffff; line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    
    header { background-color: var(--dark-bg); color: var(--text-light); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
    .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; line-height: 1; color: var(--text-light); white-space: nowrap; }
    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-links a { font-size: 15px; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta { background-color: var(--primary); color: #fff; padding: 8px 18px; border-radius: 6px; font-weight: bold; }
    .menu-btn { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }

    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background-color: var(--dark-bg); color: var(--text-light); z-index: 200; padding: 25px; transition: left 0.3s ease; display: flex; flex-direction: column; gap: 30px; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    
    .page-banner { background: linear-gradient(135deg, var(--dark-bg) 0%, #102A43 100%); color: var(--text-light); padding: 60px 20px; text-align: center; }
    .page-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
    .page-banner p { font-size: 18px; color: #A0AEC0; max-width: 700px; margin: 0 auto; }

    
    .about-section { padding: 80px 20px; }
    .about-container { max-width: 1000px; margin: 0 auto; }
    .about-block { display: flex; flex-direction: column; gap: 40px; margin-bottom: 60px; }
    .about-block h2 { font-size: 28px; font-weight: bold; border-left: 5px solid var(--primary); padding-left: 15px; margin-bottom: 20px; }
    .about-block p { font-size: 16px; color: var(--text-dark); line-height: 1.8; margin-bottom: 15px; }

    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
    .grid-card { background: var(--light-bg); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); }
    .grid-card h3 { font-size: 20px; font-weight: bold; margin-bottom: 10px; color: var(--primary); }
    .grid-card p { font-size: 14px; color: var(--text-gray); }

    
    footer { background-color: var(--dark-bg); color: var(--text-light); padding: 60px 20px 20px 20px; border-top: 2px solid var(--primary); font-size: 14px; }
    .footer-grid { 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 p { color: #A0AEC0; }
    .footer-title { font-size: 16px; font-weight: bold; color: #fff; margin-bottom: 20px; border-left: 3px solid var(--primary); padding-left: 10px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { color: #A0AEC0; }
    .footer-links a:hover { color: var(--accent); padding-left: 5px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; color: #6B7280; }

    @media (max-width: 768px) {
      .menu-btn { display: block; }
      .nav-links { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    }