.hero-safaris {
  min-height: 50vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/Kilimanjaro Tanzania.jpg") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.safari-section {
  padding: 60px 20px;
}

.safari-section h2 {
  color: #228B22;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.safari-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 16px;
  text-align: center;
}

.safari-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.safari-images img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s ease;
}

.safari-images img:hover {
  transform: scale(1.05);
}
