﻿:root { --primary: rgb(220,38,38); --primary-light: rgba(220,38,38,0.1); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; 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: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .nav-links { display: none; }
        .nav-links a { font-size: 16px; font-weight: 500; padding: 10px 15px; border-radius: 6px; }
        .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-btn { display: block; background: none; border: none; cursor: pointer; padding: 5px; }
        .menu-btn svg { width: 28px; height: 28px; }
        @media (min-width: 768px) { .nav-links { display: flex; align-items: center; gap: 10px; } .menu-btn { display: none; } }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-white); z-index: 100; transition: var(--transition); box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
        .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; cursor: pointer; color: var(--text-muted); }
        .drawer-close svg { width: 24px; height: 24px; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }

        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: white; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }

        
        .page-banner { background: var(--primary); padding: 80px 0; text-align: center; color: white; position: relative; overflow: hidden; }
        .page-banner::after { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80') center/cover; opacity: 0.15; z-index: 0; }
        .page-banner .container { position: relative; z-index: 1; }
        .page-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
        .page-banner p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        .about-section { padding: 80px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
        @media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
        .about-text h2 { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 20px; position: relative; padding-left: 20px; }
        .about-text h2::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 6px; background: var(--primary); border-radius: 4px; }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
        .about-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
        .about-img img { width: 100%; display: block; }
        .about-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }

        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
        .value-card { background: var(--bg-white); padding: 40px 30px; border-radius: 16px; text-align: center; box-shadow: var(--shadow-md); border-top: 4px solid var(--primary); }
        .value-number { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 20px; line-height: 1; }
        .value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #111; }
        .value-card p { color: var(--text-muted); font-size: 15px; }