﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(225,112,85);
      --dark: #0B132B;
      --light: #F4F7FC;
      --white: #ffffff;
      --text: #2D3748;
      --text-muted: #718096;
      --transition: all 0.3s ease;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; background: var(--light); color: var(--text); line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    
    header { background: rgba(11, 19, 43, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--white); }
    .nav-desktop { display: flex; align-items: center; gap: 32px; }
    .nav-desktop a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; padding: 6px 0; }
    .nav-desktop a:hover { color: var(--primary); }
    .menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); backdrop-filter: blur(4px); }
    .drawer { position: fixed; top: 0; left: -320px; width: 320px; height: 100%; background: var(--dark); color: var(--white); z-index: 2001; transition: var(--transition); display: flex; flex-direction: column; padding: 24px; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
    .drawer-close svg { width: 24px; height: 24px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.8); }

    
    .inner-banner { background: radial-gradient(circle at 50% 30%, rgba(29, 123, 255, 0.15) 0%, rgba(11, 19, 43, 0) 70%), var(--dark); color: var(--white); padding: 140px 0 60px; text-align: center; }

    
    .about-content { padding: 80px 0; background: var(--white); }
    .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-text h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
    .about-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
    .about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

    
    .values-section { padding: 100px 0; background: var(--light); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
    .value-card { background: var(--white); padding: 40px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.03); }
    .value-icon { font-size: 32px; margin-bottom: 20px; }
    .value-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .value-card p { color: var(--text-muted); font-size: 14px; }

    
    footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 80px 0 40px; font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 24px; position: relative; padding-bottom: 8px; }
    .footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
    .footer-logo-area { display: flex; flex-direction: column; gap: 16px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; text-align: center; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-bottom-links { display: flex; gap: 24px; }

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