﻿:root {
      --primary-color: rgb(14,116,144);
      --primary-hover: rgb(11,90,113);
      --glacier-blue: #1D7BFF;
      --silver-white: #F8FAFC;
      --deep-ocean: #0B132B;
      --ocean-ink: #1C2541;
      --text-main: #334155;
      --text-muted: #64748B;
      --bg-light: #F1F5F9;
      --border-color: #E2E8F0;
    }
    * { 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 ease; }
    
    
    .site-header { background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: 70px; }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 20px; }
    
    .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
    .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; line-height: 1; color: var(--primary-color); white-space: nowrap; }
    
    .desktop-nav { display: flex; align-items: center; gap: 24px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-main); padding: 8px 12px; border-radius: 6px; }
    .desktop-nav a:hover { color: var(--primary-color); background: var(--bg-light); }
    
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--text-main); cursor: pointer; }
    
    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; }
    .mobile-drawer.active { left: 0; }
    .drawer-backdrop { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
    .drawer-content { position: relative; width: 80%; max-width: 300px; height: 100%; background: #ffffff; display: flex; flex-direction: column; padding: 20px; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .close-drawer { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
    .drawer-nav a { font-size: 16px; font-weight: 600; padding: 10px 15px; border-radius: 8px; color: var(--text-main); }
    .drawer-nav a:hover { background: var(--bg-light); color: var(--primary-color); }

    
    .page-banner { background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--primary-color) 100%); color: #ffffff; padding: 60px 20px; text-align: center; }
    .page-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
    .page-subtitle { font-size: 16px; opacity: 0.9; }

    
    .about-container { max-width: 900px; margin: 60px auto; padding: 0 20px; }
    .brand-story { margin-bottom: 50px; }
    .brand-story h2 { font-size: 24px; font-weight: 800; color: var(--deep-ocean); margin-bottom: 20px; border-left: 5px solid var(--primary-color); padding-left: 15px; }
    .brand-story p { font-size: 16px; color: var(--text-main); line-height: 1.8; margin-bottom: 20px; text-indent: 2em; }
    
    
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
    .pillar-card { background: #ffffff; border: 1px solid var(--border-color); padding: 30px 20px; border-radius: 12px; text-align: center; }
    .pillar-icon { font-size: 36px; margin-bottom: 15px; display: inline-block; }
    .pillar-title { font-size: 16px; font-weight: 700; color: var(--deep-ocean); margin-bottom: 10px; }
    .pillar-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

    
    .site-footer { background: var(--deep-ocean); color: #94A3B8; padding: 60px 20px 30px 20px; border-top: 1px solid #1E293B; font-size: 14px; margin-top: 80px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 15px; }
    .footer-brand .logo span { color: #ffffff; }
    .footer-brand p { font-size: 13px; line-height: 1.6; max-width: 320px; }
    .footer-links-group h4 { color: #ffffff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
    .footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links-group a { color: #94A3B8; }
    .footer-links-group a:hover { color: #ffffff; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 12px; }
    .footer-seo-links { display: flex; gap: 15px; flex-wrap: wrap; }

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