﻿:root { --primary: rgb(67,56,202); --primary-light: rgba(67,56,202, 0.1); --primary-hover: rgb(55,48,163); --text-main: #0f172a; --text-sub: #475569; --text-muted: #94a3b8; --bg-body: #f8fafc; --bg-card: #ffffff; --border-color: #e2e8f0; --radius-md: 12px; --radius-lg: 20px; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-main); background: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(226, 232, 240, 0.5); } .header.scrolled { background: #ffffff; box-shadow: var(--shadow-sm); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; } .logo img { display: block; height: 36px; width: auto; max-width: 150px; object-fit: contain; flex-shrink: 0; } .logo span { display: inline-block; font-size: 20px; font-weight: 700; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .desktop-nav ul { display: flex; gap: 30px; } .desktop-nav a { font-size: 15px; font-weight: 500; } .desktop-nav a:hover { color: var(--primary); }
        .header-action { display: flex; align-items: center; gap: 15px; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 500; cursor: pointer; transition: 0.3s; } .btn-primary { background: var(--primary); color: #fff; } .btn-primary:hover { background: var(--primary-hover); } .btn-outline { border: 1px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary-light); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; width: 24px; } .menu-toggle span { display: block; height: 2px; background: var(--text-main); }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 999; transition: 0.3s; } .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; } .drawer-nav.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; } .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; } .drawer-body ul li { margin-bottom: 15px; } .drawer-body ul li a { display: block; font-size: 16px; font-weight: 500; padding: 8px 0; }
        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 0 30px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; } .footer-brand .logo span { color: #fff; } .footer-brand p { font-size: 14px; margin-top: 20px; color: #94a3b8; } .footer-col h4 { color: #fff; margin-bottom: 20px; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { font-size: 14px; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #64748b; } .footer-links a { margin-left: 15px; }

        
        .about-hero { padding: 160px 0 100px; background: linear-gradient(to right, #0f172a, #1e293b); color: #fff; text-align: center; position: relative; overflow: hidden; }
        .about-hero::after { content:''; position:absolute; right:-10%; top:-50%; width:50%; height:200%; background:radial-gradient(ellipse, rgba(67,56,202,0.4) 0%, transparent 70%); pointer-events:none; }
        .about-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 1;}
        .about-hero p { font-size: 18px; color: #94a3b8; max-width: 700px; margin: 0 auto; position: relative; z-index: 1;}
        
        .about-section { padding: 80px 0; }
        .content-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .content-text h2 { font-size: 32px; font-weight: 700; margin-bottom: 24px; color: var(--text-main); }
        .content-text p { font-size: 16px; color: var(--text-sub); margin-bottom: 16px; }
        .content-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
        
        .principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
        .principle-card { background: #fff; padding: 40px 30px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-color); }
        .pc-num { font-size: 48px; font-weight: 800; color: var(--primary-light); line-height: 1; margin-bottom: 20px; font-family: impact, sans-serif; }
        .principle-card h3 { font-size: 20px; margin-bottom: 15px; }
        .principle-card p { font-size: 14px; color: var(--text-sub); }

        .disclaimer-box { background: #fffbe4; border: 1px solid #fef08a; padding: 40px; border-radius: var(--radius-md); text-align: center; margin-top: 40px; }
        .disclaimer-box h3 { color: #b45309; font-size: 24px; margin-bottom: 15px; }
        .disclaimer-box p { color: #92400e; font-size: 15px; }

        @media (max-width: 1024px) { .content-wrap { grid-template-columns: 1fr; } .principles { grid-template-columns: 1fr; gap: 20px; } }
        @media (max-width: 768px) { .desktop-nav, .header-action .btn-outline { display: none; } .menu-toggle { display: flex; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }