﻿:root {
            --primary: rgb(101,163,13);
            --primary-dark: #4d7c0f;
            --primary-light: #ecfccb;
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --header-h: 72px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; height: var(--header-h); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
        .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(--primary); white-space: nowrap; letter-spacing: 1px; }
        
        .desktop-nav { display: flex; gap: 24px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        
        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); background: none; border: none; }
        
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 10px rgba(0,0,0,0.1); }
        .mobile-drawer.active { left: 0; }
        .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; background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 12px 0; font-size: 16px; border-bottom: 1px dashed var(--border-color); font-weight: 500; }
        
        
        .hero { background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
        .hero::after { content: ''; position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: radial-gradient(circle at center, rgba(101,163,13,0.15) 0%, transparent 70%); pointer-events: none; }
        .hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
        .hero-text { flex: 1; max-width: 600px; }
        .hero-text h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
        .hero-text h1 span { color: var(--primary); }
        .hero-text p { font-size: 18px; color: #9ca3af; margin-bottom: 30px; }
        .hero-btns { display: flex; gap: 16px; }
        .btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; background: var(--primary); color: #fff; font-weight: bold; border-radius: 8px; box-shadow: 0 4px 14px rgba(101,163,13,0.4); }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }
        .btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border: 2px solid rgba(255,255,255,0.2); color: #fff; font-weight: bold; border-radius: 8px; }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
        .hero-img { flex: 1; display: flex; justify-content: flex-end; }
        .hero-img img { max-width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); }
        
        
        .trust-bar { background: #fff; padding: 30px 0; border-bottom: 1px solid var(--border-color); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .trust-item h4 { font-size: 24px; color: var(--primary); margin-bottom: 5px; font-weight: 800; }
        .trust-item p { font-size: 14px; color: var(--text-muted); }

        
        .section { padding: 60px 0; }
        .section-header { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; }
        .section-header h2 { font-size: 28px; font-weight: 800; position: relative; padding-left: 16px; }
        .section-header h2::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 4px; background: var(--primary); border-radius: 2px; }
        .section-header p { color: var(--text-muted); margin-top: 8px; font-size: 15px; }
        .section-more { font-size: 14px; color: var(--primary); font-weight: 500; }
        
        
        .hot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .hot-card { background: #fff; border-radius: 12px; overflow: hidden; display: flex; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); border: 1px solid var(--border-color); transition: transform 0.3s; }
        .hot-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: var(--primary-light); }
        .hot-img { width: 40%; flex-shrink: 0; overflow: hidden; position: relative; }
        .hot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .hot-card:hover .hot-img img { transform: scale(1.05); }
        .hot-info { padding: 20px; width: 60%; display: flex; flex-direction: column; }
        .hot-info h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .hot-info h3 a:hover { color: var(--primary); }
        .hot-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .meta-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #9ca3af; border-top: 1px solid var(--border-color); padding-top: 12px; }
        .meta-tags { color: var(--primary); font-weight: 500; }

        
        .news-bg { background: #fff; }
        .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .news-card { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; background: var(--bg-body); transition: all 0.3s; }
        .news-card:hover { border-color: var(--primary); background: #fff; box-shadow: 0 10px 20px rgba(101,163,13,0.08); }
        .news-img { height: 160px; overflow: hidden; }
        .news-img img { width: 100%; height: 100%; object-fit: cover; }
        .news-info { padding: 16px; }
        .news-info h3 { font-size: 16px; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-info h3 a:hover { color: var(--primary); }
        .news-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
        .news-desc { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        
        .cta-section { background: var(--primary); color: #fff; padding: 60px 0; text-align: center; }
        .cta-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
        .cta-inner p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .cta-btn { display: inline-block; padding: 14px 32px; background: #fff; color: var(--primary); font-weight: bold; border-radius: 30px; font-size: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .cta-btn:hover { transform: scale(1.05); color: var(--primary-dark); }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.8; color: #9ca3af; }
        .footer-title { color: #fff; font-size: 16px; font-weight: bold; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 14px; color: #6b7280; display: flex; justify-content: space-between; align-items: center;}
        .footer-bottom-links a { margin-left: 15px; }
        .footer-bottom-links a:hover { color: var(--primary); }

        @media (max-width: 992px) {
            .hot-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-inner { flex-direction: column; text-align: center; }
            .hero-btns { justify-content: center; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .hero { padding: 40px 0; }
            .hero-text h1 { font-size: 32px; }
            .footer-bottom { flex-direction: column; gap: 10px; }
        }