body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #38bdf8;
  color: black;
  border-radius: 20px;
  text-decoration: none;
}

/* ABOUT */
.about {
  padding: 50px;
  text-align: center;
}

/* SERVICES */
.services {
  background: #f1f5f9;
  padding: 50px;
  text-align: center;
}

.service-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.service-box div {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

/* PRICING */
.pricing {
  padding: 50px;
  text-align: center;
}

.price-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.price-box div {
  background: #38bdf8;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  background: #0f172a;
  color: white;
  padding: 50px;
  text-align: center;
}