﻿:root { --primary: rgb(15,157,88); --primary-hover: #0c8248; --primary-light: rgba(15,157,88,0.1); --text-main: #1a1a1a; --text-gray: #666666; --bg-light: #f4f7f6; --white: #ffffff; --border: #eaeaea; --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); color: var(--text-main); line-height: 1.6; background-color: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header { border-bottom: 1px solid var(--border); background: var(--white); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.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: 18px; font-weight: 800; line-height: 1; color: #111; white-space: nowrap; }
.desktop-nav ul { display: flex; gap: 30px; }
.desktop-nav a { font-size: 16px; font-weight: 500; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-size: 16px; font-weight: 500; transition: all 0.3s; cursor: pointer; }
.btn-primary { background-color: var(--primary); color: var(--white); border: 1px solid var(--primary); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

.drawer-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--white); z-index: 1000; transition: left 0.3s ease; overflow-y: auto; display: flex; flex-direction: column; }
.mobile-drawer.active { left: 0; }
.drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--text-main); padding: 5px; }
.mobile-nav { padding: 20px 0; }
.mobile-nav ul li a { display: block; padding: 15px 24px; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 500; }

.about-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); color: var(--white); padding: 100px 0; text-align: center; }
.about-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; }
.about-hero p { font-size: 20px; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.about-content { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 25px; color: var(--text-main); }
.about-text p { font-size: 16px; color: var(--text-gray); margin-bottom: 20px; line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.stat h3 { font-size: 36px; color: var(--primary); font-weight: 800; margin-bottom: 5px; line-height: 1; }
.stat p { font-size: 14px; color: var(--text-gray); margin: 0; }
.about-img { position: relative; }
.about-img img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; display: block; }
.about-img::before { content: ''; position: absolute; top: -20px; right: -20px; bottom: 20px; left: 20px; border: 2px solid var(--primary); border-radius: 20px; z-index: -1; }

.values-section { background: var(--bg-light); padding: 80px 0; }
.values-header { text-align: center; margin-bottom: 50px; }
.values-header h2 { font-size: 36px; font-weight: 800; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); text-align: center; }
.value-icon { width: 80px; height: 80px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-card h3 { font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.value-card p { color: var(--text-gray); }

.footer { background: #1a1a1a; color: #ffffff; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo span { color: #ffffff; }
.footer-desc { margin-top: 20px; color: #a0a0a0; font-size: 14px; line-height: 1.8; }
.footer-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #ffffff; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links a { color: #a0a0a0; transition: color 0.3s; font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { color: #a0a0a0; font-size: 14px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #333; padding: 20px 0; text-align: center; color: #666; font-size: 14px; }

@media (max-width: 992px) {
  .desktop-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; margin-bottom: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 36px; }
  .about-stats { flex-direction: column; gap: 20px; }
}