body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}
header {
  background-color: #00CCFF;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
}
header img {
  height: 50px;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}
.hero {
  background: url('../assets/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.btn {
  display: inline-block;
  background-color: #00CCFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.packages {
  text-align: center;
  padding: 50px 20px;
}
.package-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.pkg {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 250px;
}
footer {
  text-align: center;
  padding: 8px;
  background: #00CCFF;
  color: #fff;
}
