body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f2f4f8;
}

h2 {
  text-align: center;
  color: #ff5722;
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.tour-item {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tour-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
  flex: 1;
}

.tour-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #2c3e50;
}

.tour-content p {
  font-size: 16px;
  color: #e74c3c;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .tour-grid {
    padding: 20px;
    grid-template-columns: 1fr;
  }


  #page-title{
    font-size: 25px;
  }
}
