body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}
.hero {
  background: linear-gradient(to right, #00b4db, #0083b0);
  color: white;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.cta-btn {
  background-color: white;
  color: #0083b0;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.cta-btn:hover {
  background-color: #e0f7fa;
}
.packages {
  padding: 50px 20px;
}
.package-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.package {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
}
.package img {
  width: 100%;
  height: auto;
}
.package h3 {
  color: #0083b0;
  margin: 15px 0 10px;
}
footer {
  background-color: #0083b0;
  color: white;
  padding: 20px;
  margin-top: 40px;
}
