section {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--main-color);
}

section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.tour-selection {
  background-color: #f5f7fa;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tour-card {
  background: white;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
}

.tour-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--main-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.tour-info {
  padding: 20px;
}

.tour-info h3 {
  margin-bottom: 10px;
  color: var(--main-color);
}

.tour-duration {
  color: #333;
  margin-bottom: 15px;
}

.tour-description {
  margin-bottom: 20px;
}

.booking-form-section {
  background-color: white;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--main-color);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.tour-details-section {
  background-color: #f5f7fa;
}

.details-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.details-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab-btn {
  flex: 1;
  padding: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--main-color);
  color: white;
}

.tab-pane {
  padding: 30px;
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3{
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.itinerary-day {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
  border-bottom: none;
}

.itinerary-day h4 {
  margin-bottom: 10px;
  color: var(--main-color);
}

.details-content ul {
  list-style: none;
}

.details-content li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.details-content li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--main-color);
}

.review {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.review:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author {
  font-weight: bold;
}

.review-rating {
  color: #ea4335;
}

@media (max-width: 768px) {
  section h2 {
    font-size: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .details-tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1 0 50%;
  }
}