﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056cc;
      --accent: #00D2FF;
      --deep-bg: #070913;
      --text-light: #F3F4F6;
      --text-dark: #0B0F19;
      --text-muted: #9CA3AF;
      --body-bg: #F9FAFB;
      --card-bg: #FFFFFF;
      --theme-color: rgb(0,0,0);
      --border: #E5E7EB;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--body-bg); color: var(--text-dark); line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

    
    .site-header { background-color: var(--theme-color); border-bottom: 1px solid rgba(255,255,255,0.1); position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; }
    .header-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
    .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: 18px; font-weight: 800; color: #FFFFFF; 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 0; border-bottom: 2px solid transparent; }
    .desktop-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
    .btn-primary-sm { background-color: var(--primary); color: #fff; padding: 8px 16px; font-size: 14px; }
    .btn-primary-sm:hover { background-color: var(--primary-hover); }
    .drawer-trigger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .drawer-trigger span { display: block; width: 24px; height: 2px; background-color: #fff; }

    
    .mobile-drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
    .mobile-drawer-overlay.active { display: block; opacity: 1; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--theme-color); z-index: 999; box-shadow: 2px 0 10px rgba(0,0,0,0.5); transition: left 0.3s ease; display: flex; flex-direction: column; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
    .drawer-content { flex: 1; overflow-y: auto; padding: 20px 0; }
    .drawer-nav { display: flex; flex-direction: column; }
    .drawer-nav a { padding: 12px 24px; color: rgba(255,255,255,0.8); font-size: 16px; border-left: 3px solid transparent; }
    .drawer-nav a:hover, .drawer-nav a.active { background: rgba(255,255,255,0.05); color: var(--primary); border-left-color: var(--primary); }

    
    .about-header { background: radial-gradient(circle, #0f172a 0%, var(--deep-bg) 100%); color: #FFF; padding: 80px 20px; text-align: center; }
    .about-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
    .about-header p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
    
    .about-body { max-width: 1000px; margin: 60px auto; padding: 0 20px; }
    .about-section { margin-bottom: 50px; background: #FFF; padding: 40px; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
    .about-section h2 { font-size: 24px; color: var(--text-dark); margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
    .about-section p { color: #4B5563; font-size: 15px; line-height: 1.8; margin-bottom: 15px; }

    
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
    .value-item { background: #F9FAFB; padding: 20px; border-radius: 8px; border: 1px solid var(--border); text-align: center; }
    .value-icon { font-size: 32px; margin-bottom: 12px; }
    .value-item h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 8px; }
    .value-item p { font-size: 13px; color: #6B7280; margin: 0; }

    
    .site-footer { background-color: var(--theme-color); color: var(--text-muted); padding: 60px 0 30px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
    .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
    .footer-brand p { margin: 15px 0; color: var(--text-muted); line-height: 1.6; }
    .footer-links h4 { color: #FFF; margin-bottom: 20px; font-size: 16px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a:hover { color: #FFF; }
    .footer-bottom { max-width: 1200px; margin: 40px auto 0 auto; padding: 30px 20px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
    .footer-disclaimer { font-size: 11px; line-height: 1.8; color: #4B5563; margin-top: 20px; text-align: justify; }

    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn { display: none; }
      .drawer-trigger { display: flex; }
      .values-grid { grid-template-columns: 1fr; }
      .about-section { padding: 25px; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }