.package-overview-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  color: var(--green);
}

.package-title {
  font-size: 2rem;
  font-weight: bold;
}

.package-sub-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.package-description {
  font-weight: 1.6rem;
}

.tour-location-section {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--green);
  padding: 0rem 5rem;
}

.gallery-container {
  flex: 0 0 50%;
  display: flex;
  flex-wrap: wrap;
  /* gap: 0.5rem; */
  max-width: 50%;
}

.img-container {
  flex: 0 0 50%;
  /* flex: 0 0 calc(50% - 0.25rem); */
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-overview-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex: 1;
}

.tour-location-section:nth-child(even) {
}

.tour-location-section:nth-child(odd) {
  background-color: var(--off-white);
}

.tour-title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}

.nights {
  font-size: 1.5rem;
}

.bullets {
  /* font-size: 1.25rem; */
}

.bullets ul {
  margin: none;
}

.tour-overview-container .footnotes {
  font-style: italic;
}

.package-pricing-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: var(--green);
  margin-bottom: 1rem;
  padding: 0rem 2rem;
}

.package-pricing-section table {
  table-layout: fixed;
}

.package-pricing-section .footnotes {
  padding: 0rem 5rem;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .tour-location-section {
    padding: 0rem 1rem;
    flex-direction: column;
  }

  .gallery-container {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .tour-overview-container {
    padding: 0rem 2rem;
  }

  .package-pricing-section .footnotes {
    padding: 0;
  }
}
