* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}
header {
  background-color: #003366;
  color: white;
  padding: 20px 0;
  text-align: center;
}
header h1 {
  margin-bottom: 5px;
}
main {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}
.services, .contact {
  margin-bottom: 30px;
}
.services ul {
  list-style: disc;
  padding-left: 20px;
}
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 10px 0;
}
a {
  color: #0073e6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking input,
.booking textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.booking button {
  background-color: #0073e6;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.booking button:hover {
  background-color: #005bb5;
}

.yep {
  margin-bottom: 30px;
}
.yep h2 {
  margin-bottom: 15px;
  color: #003366;
}
.yep .images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.yep .images img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}