﻿:root {
      --primary: rgb(13,148,136);
      --primary-dark: #0f766e;
      --primary-light: #f0fdfa;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); color: var(--text-dark); background-color: var(--bg-white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
    
    
    header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 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: 20px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
    .nav-menu { display: flex; align-items: center; gap: 28px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: var(--text-dark); }
    .nav-menu a:hover { color: var(--primary); }
    .header-right { display: flex; align-items: center; gap: 16px; }
    .btn-header { background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .btn-header:hover { background: var(--primary-dark); }
    .menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }

    
    .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-white); z-index: 999; box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: left 0.3s ease; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-overlay.active { display: block; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
    .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
    .drawer-nav { display: flex; flex-direction: column; padding: 20px; gap: 18px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); }
    .drawer-nav a:hover { color: var(--primary); }

    
    .about-banner { background: var(--primary-light); text-align: center; padding: 80px 20px; border-bottom: 1px solid var(--border); }
    .about-banner h1 { font-size: 40px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
    .about-banner p { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

    .about-content { padding: 80px 20px; }
    .container { max-width: 1000px; margin: 0 auto; }
    
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; align-items: center; }
    .intro-text h2 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
    .intro-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
    
    .intro-visual { background: var(--bg-light); border: 1px dashed var(--primary); border-radius: 12px; padding: 40px; text-align: center; }
    .intro-visual-num { font-size: 64px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 10px; }
    .intro-visual-txt { font-size: 16px; color: var(--text-dark); font-weight: 700; }

    
    .values-section { background-color: var(--bg-light); padding: 80px 20px; }
    .section-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 50px; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .value-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); }
    .value-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-weight: bold; }
    .value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    
    footer { background: #0f172a; color: #94a3b8; border-top: 1px solid #1e293b; font-size: 14px; }
    .footer-top { padding: 80px 20px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: white; }
    .footer-brand-p { font-size: 14px; line-height: 1.6; }
    .footer-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a:hover { color: white; }
    .footer-bottom { border-top: 1px solid #1e293b; padding: 30px 20px; text-align: center; }
    .footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-disclaimer { max-width: 1200px; margin: 20px auto 0; font-size: 12px; line-height: 1.8; text-align: left; opacity: 0.6; padding: 0 20px; }

    @media (max-width: 768px) {
      .nav-menu, .header-right .btn-header { display: none; }
      .menu-btn { display: block; }
      .intro-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom-container { flex-direction: column; text-align: center; }
    }