﻿:root {
            --primary-color: rgb(255, 59, 48);
            --primary-hover: rgb(220, 40, 30);
            --primary-light: rgba(255, 59, 48, 0.1);
            --text-main: #2c3e50;
            --text-muted: #6c757d;
            --bg-body: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #eaeaea;
            --container-width: 1200px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
            --radius-md: 8px;
            --radius-lg: 16px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
        .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-main); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { font-size: 16px; font-weight: 500; color: var(--text-main); }
        .nav-desktop a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .btn-primary { background: var(--primary-color); color: #fff; box-shadow: 0 4px 12px var(--primary-light); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .btn-outline { border: 1px solid var(--border-color); background: transparent; color: var(--text-main); }
        .btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: all 0.3s; overflow-y: auto; display: flex; flex-direction: column; }
        .drawer.active { left: 0; box-shadow: var(--shadow-md); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 28px; cursor: pointer; color: var(--text-muted); line-height: 1; }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; border-bottom: 1px solid #f0f0f0; }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary-color); }

        
        .hero { padding: 80px 0; background: linear-gradient(135deg, #ffffff 0%, #fff5f4 100%); position: relative; overflow: hidden; }
        .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .hero-content h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #111; }
        .hero-content h1 span { color: var(--primary-color); }
        .hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 90%; }
        .hero-btns { display: flex; gap: 20px; }
        .hero-visual { position: relative; }
        .hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); z-index: 2; position: relative; }
        .hero-visual::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; border: 2px dashed var(--primary-color); border-radius: var(--radius-lg); z-index: 1; opacity: 0.3; }
        .hero-stats { display: flex; gap: 30px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border-color); }
        .stat-item strong { display: block; font-size: 24px; color: var(--primary-color); font-weight: 700; }
        .stat-item span { font-size: 14px; color: var(--text-muted); }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
        .section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

        
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .feature-card { background: var(--bg-white); padding: 40px 30px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
        .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
        .feature-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; color: var(--primary-color); font-weight: bold; }
        .feature-card h3 { font-size: 20px; margin-bottom: 15px; }
        .feature-card p { color: var(--text-muted); font-size: 14px; }

        
        .articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
        .article-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; display: flex; flex-direction: column; }
        .article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
        .article-img { width: 100%; height: 180px; object-fit: cover; }
        .article-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .article-tags { margin-bottom: 10px; }
        .article-tags span { display: inline-block; font-size: 12px; background: var(--primary-light); color: var(--primary-color); padding: 2px 8px; border-radius: 4px; margin-right: 5px; }
        .article-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #999; border-top: 1px solid #eee; padding-top: 15px; }
        
        
        .cta-section { background: var(--primary-color); padding: 60px 0; text-align: center; color: #fff; }
        .cta-section h2 { font-size: 32px; margin-bottom: 20px; }
        .cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
        .cta-section .btn { background: #fff; color: var(--primary-color); }
        .cta-section .btn:hover { background: #f0f0f0; }

        
        .footer { background: #1a1a2e; color: #a0a0b5; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; }
        .footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
        .footer-bottom-links { display: flex; justify-content: center; gap: 20px; }

        @media (max-width: 992px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 36px; }
            .hero-content p { margin: 0 auto 30px; }
            .hero-btns { justify-content: center; }
            .hero-stats { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-desktop, .header-actions .btn-outline { display: none; }
            .menu-toggle { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
            .section { padding: 50px 0; }
        }