body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 60px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.nav-book-btn {
  padding: 8px 16px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.service-header {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 30px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.4);
}

.service-content {
  padding: 40px;
  background: white;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-content p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.service-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.service-content ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-img {
  margin-top: 30px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
 .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 50px;
        background: #005bac;
        color: white;
      }
      .top-bar img {
        height: 40px;
      }