/* Global */
:root {
  --accent:#0b74de;
  --muted:#6b6b6b;
  --radius:12px;
  --shadow:0 8px 24px rgba(0,0,0,0.08);
  font-family:Inter,Arial,Helvetica,sans-serif;
}

body {
  margin:0;
  background:#f8fbff;
  color:#111;
  line-height:1.6;
}

.wrap {
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* Header */
.site-header .wrap {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand a {
  color:#000;
  text-decoration:none;
  font-size:24px;
  font-weight:700;
}

.main-nav a {
  margin-left:15px;
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
}

.main-nav a.active {
  color:var(--accent);
}

/* Hero */
.hero {
  background:linear-gradient(90deg,#dcecff,#f6f9ff);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-bottom:25px;
}

.cta {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:var(--radius);
  text-decoration:none;
  font-weight:600;
}

/* Features */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.features-grid article {
  background:#fff;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Services */
.service {
  background:#fff;
  padding:20px;
  margin-bottom:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Gallery */
.gallery {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery img {
  width:260px;
  height:160px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.muted {
  color:var(--muted);
  font-size:14px;
}

/* Footer */
.site-footer {
  padding:20px 0;
  text-align:center;
  color:var(--muted);
}

/* Centered */
.centered {
  text-align:center;
  padding:40px;
}

/* Mobile */
@media(max-width:600px) {
  .gallery img {
    width:100%;
  }
}
