body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #f0f4f8, #e0f7fa);
  color: #333;
  line-height: 1.8;
  padding-top: 0px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #4d8d47;
  /* Adjust to match your site's theme */
  padding-top: 80px;
  /* Push it down from the fixed header */
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
}

.group-tours-info {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 20px;
}

.tour-option {
  background-color: #ffffff;
  flex: 1 1 450px;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  border: 2px solid #4d8d47;
}

.tour-option h2 {
  color: #4d8d47;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.tour-option p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.tour-option ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.tour-option ul li {
  margin: 6px 0;
  color: #333;
}

@media (max-width: 768px) {
  .group-tours-info {
    flex-direction: column;
    align-items: center;
  }
  .tour-option {
    width: 90%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap");
.booking-container {
  background-color: #ffffff;
  padding: 80px 40px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.booking-container h2 {
  font-size: 2.5rem;
  color: #4d8d47;
  margin-bottom: 40px;
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.form-group {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  color: #4d8d47;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
}

.form-group input[type="date"],
.form-group input[type="number"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

button[type="submit"] {
  background-color: #43a047;
  color: white;
  padding: 16px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #4d8d47;
}

.tour-card {
  border: 2px solid #4d8d47 !important;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  background: #fff;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.book-btn {
  background-color: #4d8d47;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.book-btn:hover {
  background-color: #4d8d47;
}
