/* Basic reset and typography */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Arial,Helvetica,sans-serif;color:#333;line-height:1.5;background:#fafafa}
a{color:inherit}

.topbar{display:flex;align-items:center;justify-content:space-between;padding:14px 28px;background:#ffffff;border-bottom:1px solid #eee}
.brand{font-weight:800;font-size:28px;color:#c62828}
.nav-links{list-style:none;display:flex;gap:20px;margin-left:24px}
.nav-links a{color:#444;text-decoration:none;font-weight:600}
.phone{font-weight:700;color:#222}

.hero-placeholder{height:380px;background:linear-gradient(180deg,#f2f2f2 0%,#e9e9e9 100%);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#9b9b9b;margin:22px 28px}

.section{padding:40px 28px}
.section h2,.section h3{margin-bottom:12px;color:#222}

.banner{background-image:linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),url('');background-size:cover;background-position:center;color:#fff;padding:36px 28px;border-radius:6px;margin:0 28px;display:flex;align-items:center;justify-content:space-between}
.banner h2{font-size:26px;margin:0}
.emoji-cards{display:flex;gap:14px}
.emoji-card{background:rgba(255,255,255,0.12);padding:14px;border-radius:8px;min-width:120px;text-align:center;backdrop-filter: blur(2px)}
.emoji-card div{margin-top:8px;font-weight:700}

.products{display:flex;gap:18px;flex-wrap:wrap;margin-top:12px}
.product-box{width:220px;height:140px;background:#f0f0f0;border:2px dashed #d0d0d0;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#9a9a9a;font-weight:700}

.contact p{margin:8px 0}

footer{background:#424242;color:#eee;padding:30px 28px;margin-top:28px;border-top:4px solid #2b2b2b}
footer p{margin:6px 0}

/* Responsive */
@media (max-width:900px){
  .topbar{flex-direction:column;gap:12px;align-items:flex-start}
  .nav-links{flex-wrap:wrap}
  .hero-placeholder{height:260px;margin:18px}
  .banner{flex-direction:column;align-items:flex-start;gap:12px}
  .products{justify-content:center}
}

@media (max-width:480px){
  .brand{font-size:22px}
  .nav-links{gap:10px;font-size:14px}
  .product-box{width:46%;height:120px}
}

/* Utility */
.container{max-width:1100px;margin:0 auto}
*{box-sizing:border-box;margin:0;padding:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial}
body{color:#222;background:#f9f9fb;line-height:1.6}
.site-header{background:linear-gradient(135deg,#0f4c81,#1fb6ff);color:#fff;padding:40px 20px}
.nav{display:flex;justify-content:space-between;align-items:center;max-width:1000px;margin:0 auto}
.nav-links{list-style:none;display:flex;gap:16px}
.nav-links a{color:#fff;text-decoration:none}
.brand{font-weight:700;font-size:1.25rem}
.hero{padding:40px 0;text-align:left;max-width:1000px;margin:0 auto}
.hero h1{font-size:2.25rem;margin-bottom:8px}
.hero p{opacity:0.95;margin-bottom:16px}
.btn{display:inline-block;background:#fff;color:#0f4c81;padding:10px 18px;border-radius:6px;text-decoration:none;font-weight:600}
.section{padding:40px 20px;max-width:1000px;margin:0 auto;background:#fff;border-radius:8px;margin-top:20px}
.section h2{margin-bottom:10px}
.contact p{margin-bottom:8px}
.site-footer{padding:20px;text-align:center;color:#666;margin-top:20px}