/* ===== Premium Layout ===== */
.content{
  max-width: 1100px;
  margin: auto;
}

/* Hero polish */
.content h1:first-of-type{
  font-weight: 800;
  margin-top: 30px;
}
.content h1:first-of-type + p{
  font-size: 1.1rem;
  max-width: 720px;
}

/* Trust line */
hr{
  max-width: 900px;
  margin: 50px auto;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* Cards (services + why us) */
.features{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 24px;
  margin-top: 25px;
}
.features > div{
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Buttons */
a.button{
  background: linear-gradient(135deg,#ff9800,#ff6a00);
  border-radius: 30px;
  padding: 12px 26px;
  font-weight: 600;
  color: #fff !important;
}
