
/* Simple CSS to imitate Wanway-like layout. Replace images and tweak as needed. */
:root{--maxw:1100px;--accent:#0b6ef6;--muted:#666;}
*{box-sizing:border-box}
body{font-family:Arial,Helvetica,sans-serif;line-height:1.5;margin:0;color:#222}
.container{max-width:var(--maxw);margin:0 auto;padding:20px}
.site-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.logo img{height:48px}
.main-nav a{margin-left:18px;text-decoration:none;color:#222;font-weight:600}
.hero{background:#f7f9ff;padding:30px 0;border-bottom:1px solid #eee}
.hero-inner{display:flex;gap:20px;align-items:center}
.hero-banner{width:320px;height:180px;object-fit:cover;border-radius:6px}
.hero-text h1{margin:0 0 10px;font-size:28px}
.btn{display:inline-block;margin-top:12px;padding:10px 16px;background:var(--accent);color:#fff;border-radius:6px;text-decoration:none}
.features{padding:30px 0}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.card{background:#fff;padding:14px;border-radius:8px;border:1px solid #eee;text-align:center}
.card img{max-width:100%;height:140px;object-fit:contain}
.page-header{padding:20px 0;border-bottom:1px solid #eee;margin-bottom:18px}
.product-list .product-item{display:flex;gap:16px;align-items:center;padding:12px 0;border-bottom:1px solid #f0f0f0}
.product-item img{width:120px;height:80px;object-fit:contain}
.solutions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.solution-card{background:#fff;padding:16px;border-radius:8px;border:1px solid #eee}
.news-list .news-item{padding:12px 0;border-bottom:1px solid #f0f0f0}
.about-content{padding:12px 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-card{background:#fff;padding:12px;border-radius:8px;border:1px solid #eee}
.map-placeholder{height:180px;background:#fafafa;border:1px dashed #ddd;display:flex;align-items:center;justify-content:center;color:var(--muted)}
.site-footer{background:#111;color:#ddd;padding:20px 0;margin-top:30px}
.site-footer .footer-inner{display:flex;gap:20px;justify-content:space-between}
.site-footer a{color:#9ecbff;text-decoration:none}
@media(max-width:700px){
  .hero-inner{flex-direction:column;text-align:center}
  .main-nav{display:none}
  .contact-grid{grid-template-columns:1fr}
  .site-footer .footer-inner{flex-direction:column;gap:12px}
}
