/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

/* TYPOGRAPHY */
body{
  font-family:system-ui,sans-serif;
  background:#f8fafc;
  color:#0f172a;
  line-height:1.6;
}

/* HEADER */
.site-header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
}

.logo{
  font-size:1.4rem;
  font-weight:800;
  color:#1d4ed8;
}

/* NAV */
nav a{
  margin-left:18px;
  font-weight:500;
}

nav a.active{
  color:#1d4ed8;
}

/* HERO */
.page-hero{
  background:linear-gradient(135deg,#1d4ed8,#1e40af);
  color:#fff;
  padding:60px 20px;
}

/* CONTAINERS */
.container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.service-box{
  background:#fff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.price{
  color:#1d4ed8;
  font-weight:700;
}

/* TABLE */
table{
  width:100%;
  border-collapse:collapse;
}

th,td{
  border:1px solid #e5e7eb;
  padding:12px;
}

/* FORM */
.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:12px;
  margin-bottom:14px;
}

/* FOOTER */
.site-footer{
  background:#020617;
  color:#cbd5f5;
  text-align:center;
  padding:30px;
}
