﻿:root {
      --primary-color: rgb(90,200,250);
      --primary-dark: #1D7BFF;
      --deep-ocean: #0A1128;
      --glacier-blue: #E8F4FD;
      --silver-white: #F4F7F6;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-main);
      background-color: var(--silver-white);
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; transition: all 0.3s; }
    img { max-width: 100%; height: auto; }

    
    .header {
      background: rgba(10, 17, 40, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: fixed;
      top: 0; left: 0; width: 100%; z-index: 1000;
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .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; color: #fff; }
    .nav-menu { display: flex; align-items: center; gap: 30px; }
    .nav-menu a { color: rgba(255, 255, 255, 0.8); font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; }
    .nav-menu a:hover { color: var(--primary-color); border-bottom-color: var(--primary-color); }
    .header-right { display: flex; align-items: center; gap: 15px; }
    .btn-nav { background: var(--primary-dark); color: #fff !important; padding: 8px 20px; border-radius: 6px; font-weight: 600; }
    .mobile-menu-btn { display: none; background: none; border: none; color: #fff; 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; top: 0; left: 0; 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(--deep-ocean); padding: 24px; display: flex; flex-direction: column; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    .drawer-header .logo span { color: #fff; }
    .close-btn { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: rgba(255,255,255,0.8); font-size: 16px; }

    
    .about-banner {
      background: linear-gradient(135deg, var(--deep-ocean) 0%, #152C55 100%);
      color: #fff;
      padding: 140px 20px 60px;
      text-align: center;
    }
    .about-banner h1 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .about-banner p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
    }

    
    .about-main {
      padding: 80px 20px;
      background: #fff;
    }
    .about-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .about-block {
      margin-bottom: 50px;
    }
    .about-block h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      border-left: 4px solid var(--primary-dark);
      padding-left: 15px;
    }
    .about-block p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 15px;
    }
    .grid-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .value-card {
      background: var(--silver-white);
      padding: 24px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
    }
    .value-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .value-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .footer {
      background: #060B18;
      color: rgba(255, 255, 255, 0.7);
      padding: 70px 20px 30px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-top {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-brand { grid-column: span 2; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand p { margin-top: 15px; font-size: 14px; line-height: 1.6; }
    .footer-links h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--primary-color); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
    .footer-meta { display: flex; gap: 20px; }

    @media (max-width: 768px) {
      .nav-menu, .header-right .btn-nav { display: none; }
      .mobile-menu-btn { display: block; }
      .footer-brand { grid-column: span 1; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }