﻿:root { --primary: rgb(101,163,13); --primary-hover: rgb(85,138,11); --primary-light: rgba(101,163,13,0.08); --text-main: #1f2937; --text-sub: #4b5563; --text-light: #9ca3af; --bg-main: #ffffff; --bg-gray: #f9fafb; --border-color: #e5e7eb; --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05); --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); --radius: 8px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif; color: var(--text-main); line-height: 1.6; background: var(--bg-main); }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
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; }
.site-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { font-weight: 500; font-size: 16px; color: var(--text-main); }
.desktop-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; background: var(--primary); color: #fff !important; font-weight: 600; border-radius: var(--radius); transition: all 0.3s; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 200; }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 210; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 8px rgba(0,0,0,0.1); }
.mobile-drawer.active { left: 0; }
.drawer-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
.drawer-close { background: none; border: none; font-size: 28px; color: var(--text-main); cursor: pointer; }
.drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
.drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.drawer-nav .drawer-btn { background: var(--primary); color: #fff; text-align: center; border-radius: var(--radius); padding: 12px; border: none; margin-top: 10px; }


.about-hero { background: linear-gradient(rgba(101,163,13,0.9), rgba(85,138,11,0.9)), url('https://images.unsplash.com/photo-1518186285589-2f7649de83e0?auto=format&fit=crop&q=80&w=1920') center/cover; padding: 100px 0; text-align: center; color: #fff; }
.about-hero h1 { font-size: 42px; margin-bottom: 20px; }
.about-hero p { font-size: 18px; max-width: 700px; margin: 0 auto; opacity: 0.9; }

.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(--text-main); }
.about-text p { font-size: 16px; color: var(--text-sub); margin-bottom: 15px; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; display: block; }

.core-values { background: var(--bg-gray); padding: 80px 0; }
.values-header { text-align: center; margin-bottom: 50px; }
.values-header h2 { font-size: 32px; margin-bottom: 15px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: #fff; padding: 40px 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); }
.value-number { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 20px; line-height: 1; }
.value-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--text-main); }
.value-card p { color: var(--text-sub); font-size: 14px; }


.site-footer { background: #111827; color: #d1d5db; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo span { color: #fff; }
.footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #9ca3af; max-width: 300px; }
.link-group h4 { color: #fff; font-size: 16px; margin-bottom: 20px; font-weight: 600; }
.link-group ul { display: flex; flex-direction: column; gap: 10px; }
.link-group a { font-size: 14px; color: #9ca3af; }
.link-group a:hover { color: var(--primary); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 14px; color: #6b7280; background: #0b0f19; }

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .desktop-nav, .header-actions .btn-primary { display: none; }
  .menu-toggle { display: block; width: 24px; height: 24px; }
}