* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

header {
  background: #ffffffd3;
  color: white;
  padding: 15px 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav h2 {
  font-size: 22px;
  color: #964B00;
}

nav a {
  color: rgb(71, 99, 255);
  text-decoration: none;
  margin-left: 18px;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, #f5f9ff, #fbffff);
  color: #964B00;
  padding: 100px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 45px;
  color: #000000;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  max-width: 750px;
  margin: 10px auto;
}

.tagline {
  color: #964B00;
  font-weight: bold;
  margin-bottom: 15px;
}

.buttons {
  margin: 25px 0;
}

.btn {
  display: inline-block;
  background: #ffb703;
  color: #222;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 5px;
}

.btn-light {
  background: #ffb703;
}

.info {
  font-weight: bold;
}

section {
  padding: 60px 40px;
  text-align: center;
}

section h2 {
  font-size: 32px;
  color: #8b1e1e;
  margin-bottom: 25px;
}

.about p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.box h3 {
  color: #006d77;
  margin-bottom: 15px;
}

.box ul {
  padding-left: 20px;
}

.box li {
  margin-bottom: 8px;
}

.extra {
  background: #fff3d6;
}

.extra-list,
.why-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.extra-list span,
.why-list span {
  background: white;
  padding: 12px 18px;
  border-radius: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-weight: bold;
}

.why {
  background: white;
}

.offers {
  background: #006d77;
  color: white;
}

.offers h2 {
  color: white;
}

.offers p {
  font-size: 20px;
  margin: 10px;
}

.contact {
  background: #fdfdfd;
}

.contact h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.contact p {
  font-size: 18px;
  margin: 8px;
}

.contact a {
  color: #8b1e1e;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px;
}

footer p {
  margin: 5px;
}

@media (max-width: 900px) {
  .service-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 15px 20px;
  }

  nav {
    text-align: center;
    display: block;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

  section {
    padding: 45px 20px;
  }

  .service-boxes {
    grid-template-columns: 1fr;
  }
}