﻿:root { --primary: rgb(236, 72, 153); --primary-dark: rgb(219, 39, 119); --bg-dark: #0b1121; --bg-darker: #050811; --bg-light: #f8fafc; --text-white: #ffffff; --text-gray: #9ca3af; --text-dark: #111827; --border-color: #374151; --font-main: sans-serif; --transition: all 0.3s ease; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: var(--font-main); color: var(--text-dark); background: var(--bg-light); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background-color: var(--bg-darker); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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-white); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { color: var(--text-gray); font-size: 15px; font-weight: 500; }
        .nav-desktop a:hover { color: var(--primary); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn-primary { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 600; }
        .btn-outline { border: 1px solid var(--border-color); color: var(--text-white); padding: 9px 23px; border-radius: 6px; }
        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; padding: 5px; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 999; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-darker); z-index: 1000; transition: var(--transition); display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { background: none; border: none; color: var(--text-gray); font-size: 24px; }
        .drawer-nav { padding: 20px; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 12px 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.05); }

        
        .page-banner { background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover; position: relative; padding: 100px 0; color: #fff; text-align: center; }
        .page-banner::before { content: ''; position: absolute; inset: 0; background: rgba(11,17,33,0.85); }
        .page-banner-content { position: relative; z-index: 1; }
        .page-banner h1 { font-size: 40px; margin-bottom: 20px; color: var(--primary); }
        
        .about-section { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-text h2 { font-size: 32px; margin-bottom: 20px; color: var(--bg-dark); }
        .about-text p { color: #4b5563; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
        .about-img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        .stats-wrap { background: var(--bg-dark); color: #fff; padding: 60px 0; margin-top: 40px; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-item h3 { font-size: 40px; color: var(--primary); margin-bottom: 10px; font-weight: 800; }
        .stat-item p { color: var(--text-gray); }

        
        .footer { background: var(--bg-dark); color: #fff; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand p { color: var(--text-gray); margin-top: 20px; font-size: 14px; }
        .footer-title { font-size: 18px; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-gray); font-size: 14px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color); color: var(--text-gray); font-size: 14px; }

        @media (max-width: 768px) {
            .nav-desktop, .header-actions { display: none; }
            .mobile-menu-btn { display: block; }
            .about-grid, .stats-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }