
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}
header {
  background: rgb(252, 252, 252);
  color: rgb(7, 0, 0);
  padding: 20px;
  text-align: center;
}
.logo {
  height: 120px;
}
.tagline {
  font-style: italic;
  margin-top: 5px;
}
.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.highlights ul, .features ul {
  padding: 0 20px;
}
.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}
.gallery-images img {
  height: 150px;
  object-fit: cover;
  border: 2px solid #ccc;
}
.brochure-btn, .whatsapp-btn {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 10px 15px;
  margin: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}
