main h1 {
    text-align: center;
}
main h2 {
    text-align: center;
    margin-top: 20px; 
}

.travel-nav {
  font-size: 16px;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.travel-nav button {
  all: unset;
  cursor: pointer;
  color: #355779;
  font-weight: 500;
  margin-right: 18px;
  transition: color 0.3s ease;
  position: relative;
}

.travel-nav button:hover {
  color: #007bff;
}

.travel-nav button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.travel-nav button:hover::after {
  width: 100%;
}

.travel-label {
  color: #000;
  font-weight: 600;
  margin-right: 10px;
}

.image-all {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.1);
}
