﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --bg-dark: #121824;
      --text-light: #f8f9fa;
      --theme-grey: rgb(66,70,81);
      --body-bg: #f4f7fc;
      --card-bg: #ffffff;
      --text-main: #2b303c;
      --text-muted: #6c757d;
      --border-color: rgba(29, 123, 255, 0.12);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; background-color: var(--body-bg); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    header { background-color: #ffffff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
    .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; }
    .logo span { font-size: 18px; font-weight: 800; color: var(--theme-grey); }
    .nav-menu { display: flex; align-items: center; gap: 30px; }
    .nav-menu a { font-weight: 500; color: var(--theme-grey); font-size: 15px; }
    .nav-menu a:hover { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 15px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); border: none; }
    .btn-primary { background-color: var(--primary); color: #ffffff; }
    .btn-primary:hover { background-color: var(--primary-hover); }
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--theme-grey); cursor: pointer; }

    
    .drawer-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.5); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer-backdrop.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background-color: #ffffff; z-index: 999; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; padding: 20px; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 20px; }
    .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; overflow-y: auto; flex: 1; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--theme-grey); padding: 10px 5px; }

    
    .about-header { background: radial-gradient(circle at top, #1e293b, var(--bg-dark)); color: #ffffff; padding: 80px 0; text-align: center; }
    .about-header h1 { font-size: 36px; margin-bottom: 15px; }
    .about-header p { font-size: 18px; color: #94a3b8; max-width: 700px; margin: 0 auto; }

    .about-section { padding: 80px 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
    }
    .about-text h2 { font-size: 28px; margin-bottom: 20px; color: var(--theme-grey); }
    .about-text p { margin-bottom: 15px; color: var(--text-muted); font-size: 15px; }

    
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
    .feat-card { background-color: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 30px; box-shadow: var(--shadow-sm); }
    .feat-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--theme-grey); }
    .feat-card p { font-size: 14px; color: var(--text-muted); }

    
    footer { background-color: var(--bg-dark); color: #94a3b8; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
    .footer-brand { grid-column: span 2; }
    @media (max-width: 768px) { .footer-brand { grid-column: span 1; } }
    .footer-brand p { margin-top: 15px; font-size: 14px; }
    .footer-heading { color: #ffffff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: #ffffff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; text-align: center; font-size: 12px; }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
    }