* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #077a8f;
  color: #222;
  line-height: 1.6;
  padding: 20px;
}

/* Header and Navigation */
header {
  background-color: #1e1e1e;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

header nav a:hover {
  text-decoration: underline;
}

/* Main Title & Description */
h1 {
  font-size: 26px;
  margin-top: 30px;
}

h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Service Box Styling */
.service {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service p {
  font-size: 15px;
  color: #444;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #007b00;
  margin: 10px 0;
}

/* Book Now Button */
.button, .service a {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover, .service a:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    margin-top: 10px;
  }

  .service {
    padding: 15px;
  }
}

/* Optional Footer */
footer {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #ddd;
}


