/* Simple, clean styles */
:root{
  --bg:#f7fbff;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#0ea5a4;
  --accent-2:#7dd3fc;
  --radius:12px;
}
*{box-sizing:border-box}
body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; background:var(--bg); color:#0f172a; line-height:1.5}
.container{max-width:1000px;margin:0 auto;padding:28px}
.hero{background:linear-gradient(135deg,var(--accent),var(--accent-2));color:white;padding:56px 0;border-bottom-left-radius:24px;border-bottom-right-radius:24px}
.hero h1{font-size:2.2rem;margin:0 0 8px}
.tagline{opacity:0.95;margin:0 0 16px}
.cta .btn{margin-right:10px}
.btn{display:inline-block;padding:10px 16px;border-radius:10px;background:white;color:#052d32;text-decoration:none;font-weight:600}
.btn-outline{background:transparent;border:2px solid rgba(255,255,255,0.25);color:white}
.card{background:var(--card);padding:20px;border-radius:var(--radius);box-shadow:0 6px 18px rgba(2,6,23,0.06);margin:20px 0}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.grid img{width:84px;height:84px}
.gallery{display:flex;gap:12px;flex-wrap:wrap}
.gallery img{width:220px;height:150px;object-fit:cover;border-radius:10px}
label{display:block;margin-bottom:10px}
input,textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef2}
.site-footer{padding:20px 0;text-align:center;color:var(--muted);font-size:0.95rem}
.muted{color:var(--muted);font-size:0.9rem}
@media(max-width:720px){
  .grid{grid-template-columns:1fr}
  .gallery img{width:100%;height:140px}
}
