﻿:root {
      --primary: rgb(52,168,83);
      --primary-hover: rgb(40,140,70);
      --glacier-blue: #1D7BFF;
      --glacier-deep: #0A2540;
      --silver-white: #F8FAFC;
      --dark-navy: #0d131a;
      --text-main: #333333;
      --text-muted: #666666;
      --border-color: #E2E8F0;
      --container-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background-color: var(--silver-white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
    
    
    .site-header { background: rgba(13, 25, 41, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .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: #FFF; white-space: nowrap; }
    .desktop-nav { display: flex; gap: 24px; }
    .desktop-nav a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: 4px; }
    .desktop-nav a:hover { color: #FFF; background: rgba(255,255,255,0.1); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: #FFF; margin: 5px 0; transition: 0.3s; }
    
    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; pointer-events: none; transition: 0.3s; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #0A2540; z-index: 1002; transition: 0.3s; display: flex; flex-direction: column; padding: 20px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
    .drawer-close { font-size: 28px; color: #FFF; background: none; border: none; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 15px; }
    .drawer-nav a { color: #FFF; font-size: 16px; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }

    
    .about-cover { background: linear-gradient(135deg, var(--glacier-deep) 0%, #112240 100%); color: #FFF; text-align: center; padding: 80px 0; }
    .about-cover h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
    .about-cover p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; }

    
    .section-padding { padding: 80px 0; }
    .about-main { background: #FFF; margin: -40px auto 60px; max-width: 1000px; padding: 50px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 15px 40px rgba(0,0,0,0.05); position: relative; z-index: 5; }
    .about-text h2 { font-size: 26px; font-weight: 800; color: var(--dark-navy); margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
    .about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 25px; }
    
    
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
    .value-card { border: 1px solid var(--border-color); padding: 30px; border-radius: 10px; text-align: center; background: var(--silver-white); }
    .value-card-icon { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
    .value-card h3 { font-size: 18px; font-weight: 700; color: var(--dark-navy); margin-bottom: 10px; }
    .value-card p { font-size: 14px; color: var(--text-muted); }

    
    .timeline { max-width: 800px; margin: 50px auto 0; position: relative; }
    .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-color); transform: translateX(-50%); }
    .timeline-item { display: flex; justify-content: flex-end; padding: 25px 0; width: 50%; position: relative; }
    .timeline-item:nth-child(even) { align-self: flex-start; justify-content: flex-start; margin-left: 50%; }
    .timeline-item:nth-child(odd) { margin-right: 50%; }
    .timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 4px solid #FFF; position: absolute; right: -8px; top: 30px; z-index: 5; }
    .timeline-item:nth-child(even) .timeline-dot { left: -8px; right: auto; }
    .timeline-content { background: #FFF; border: 1px solid var(--border-color); padding: 20px; border-radius: 10px; width: 90%; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
    .timeline-content h4 { font-size: 16px; font-weight: 700; color: var(--dark-navy); margin-bottom: 8px; }
    .timeline-content p { font-size: 13px; color: var(--text-muted); }

    
    .site-footer { background: #0A192F; color: #A0AEC0; padding: 80px 0 30px; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand p { line-height: 1.6; margin-bottom: 20px; }
    .footer-col h5 { font-size: 16px; font-weight: 700; color: #FFF; margin-bottom: 20px; position: relative; }
    .footer-col h5::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary); margin-top: 8px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a:hover { color: #FFF; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
    .footer-bottom p { font-size: 13px; }
    .footer-meta-links { display: flex; gap: 20px; }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .nav-toggle { display: block; }
      .about-main { padding: 25px; margin-top: -20px; }
      .values-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 20px; }
      .timeline-item { width: 100%; margin-left: 0 !important; margin-right: 0 !important; justify-content: flex-start; padding-left: 40px; }
      .timeline-dot { left: 12px !important; right: auto !important; }
      .timeline-content { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
    }