﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --bg-deep: #060a13;
      --bg-dark: #0a0f1d;
      --bg-card: #111827;
      --bg-light: #f8fafc;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --text-light: #f8fafc;
      --silver-white: #e2e8f0;
      --card-border: rgba(255, 255, 255, 0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.7; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    
    .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
    .logo span { display: inline-block; font-size: 18px; font-weight: 800; line-height: 1; color: var(--text-light); white-space: nowrap; }
    .header-light .logo span { color: var(--text-dark); }

    
    header { background: var(--bg-deep); border-bottom: 1px solid rgba(255,255,255,0.05); position: sticky; top: 0; z-index: 100; transition: var(--transition); }
    header.header-light { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #e2e8f0; backdrop-filter: blur(10px); }
    header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-list { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-list a { color: var(--silver-white); text-decoration: none; font-size: 15px; font-weight: 500; transition: var(--transition); }
    .nav-list a:hover { color: var(--primary); }
    .header-light .nav-list a { color: var(--text-dark); }
    .header-light .nav-list a:hover { color: var(--primary); }
    
    
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: var(--transition); }
    .header-light .menu-toggle span { background: var(--text-dark); }
    .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; opacity: 0; transition: var(--transition); }
    .drawer-overlay.active { display: block; opacity: 1; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-dark); border-right: 1px solid var(--card-border); z-index: 1001; transition: var(--transition); padding: 30px 24px; display: flex; flex-direction: column; gap: 40px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 28px; color: var(--text-light); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: var(--silver-white); text-decoration: none; font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-nav a:hover { color: var(--primary); }

    
    .about-hero { background: radial-gradient(circle at top, #1e293b, var(--bg-deep)); color: var(--text-light); padding: 80px 0; text-align: center; }
    .about-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 16px; }
    .about-hero p { color: var(--silver-white); font-size: 16px; max-width: 680px; margin: 0 auto; opacity: 0.9; }

    
    .about-section { padding: 80px 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-img { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
    .about-img img { width: 100%; height: auto; display: block; }
    .about-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; color: var(--text-dark); position: relative; padding-bottom: 12px; }
    .about-content h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); }
    .about-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }

    
    .values-section { background-color: var(--bg-deep); color: var(--text-light); padding: 80px 0; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
    .value-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 16px; padding: 36px; text-align: center; transition: var(--transition); }
    .value-card:hover { transform: translateY(-5px); border-color: var(--primary); }
    .value-num { font-size: 40px; font-weight: 800; color: var(--primary); margin-bottom: 16px; display: block; }
    .value-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-light); }
    .value-desc { color: var(--silver-white); font-size: 14px; opacity: 0.8; }

    
    footer { background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 30px; color: var(--silver-white); }
    .footer-grid { 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: var(--text-muted); font-size: 14px; line-height: 1.6; }
    .footer-title { font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 24px; position: relative; }
    .footer-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary); }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
    .footer-links a:hover { color: var(--primary); padding-left: 4px; }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: var(--text-muted); }
    .footer-contact span { display: inline-flex; align-items: center; gap: 8px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-muted); }

    
    @media (max-width: 992px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-list { display: none; }
      .menu-toggle { display: flex; }
      .footer-grid { grid-template-columns: 1fr; }
    }