body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.section-heading {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 600 !important;
}

.list-view {
  margin-bottom: 3rem;
}

.list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.list-item img {
  width: 450px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.list-item h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.list-item ul {
  padding-left: 20px;
}

.list-item ul li {
  margin-bottom: 5px;
}

.list-item .btn {
  margin-top: 10px;
}

.footer-custom {
  background-color: #198754;
  padding: 2rem 0;
  color: #fff;
  text-align: center;
}

.itinerary-details {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 10px;
}

.itinerary-link {
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
    text-align: left;
  }

  .list-item img {
    width: 100%;
    height: auto;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  background: none;
}

.popup-close:hover {
  color: #ff0000;
}

body.popup-active {
  overflow: hidden;
}
