select {
  padding: 0.5rem;
  background-color: transparent;
  font-size: 1rem;
}
.slider-container {
  width: 50%;
  justify-content: center;
}
.img-container-courses {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

select {
  padding: 0.7rem;
  font-size: 1rem;
  width: 35%;
}
select option {
  font-size: 0.8rem;
}

.tour-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.tour-card {
  background: white;
  width: 95%;
  max-width: 1000px;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.tour-card h2 {
  color: #1e8449;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: row;
}

.section-info-container .section-info {
  width: 50%;
}
.section-info {
  padding: 1rem;
  border-left: 3px solid #e1e1e1;
  text-align: center;
}

.description {
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  line-height: 1.6;
}

.section-info-container {
  width: 100%;
  display: flex;
}

.icon-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  justify-content: center;
  /*width: 50%;*/
}

.icon-container img.icon {
  vertical-align: middle;
}

.price {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #27ae60;
}

.book-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #27ae60;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

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

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.photo-gallery img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
}

ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

a[href^="/uploads"], a[href^="/download"] {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  transition: all 0.2s;
}

a[href^="/uploads"]:hover, a[href^="/download"]:hover {
  background: #eaeaea;
  border-color: #999;
}

.hidden {
  display: none;
}

.title, .subtitle, h2 {
  text-align: center;
}
.btn-l {
  position:absolute;
  left:0%;
  top: 50%;
}
.btn-r {
  position:absolute;
  right:0%;
  top: 50%;
}

footer .icon-container {
  text-align: left;
  justify-content: left;
}

/* Responsive */
@media (max-width: 768px) {
  select {
    width: 95%;
  }
  .section-info-container .section-info {
    width: 100%;
  }
  .section-info-container {
    display: block;
  }
  .slider-container {
    width: 100%;
  }
  .btn-l {
    position:absolute;
    left:0%;
    top: 50%;
  }
  .btn-r {
    position:absolute;
    right: 0;
    top: 50%;
  }
  .flex {
    flex-direction: column;
  }

  .section-info {
    border-left: none;
    border-top: 3px solid #e1e1e1;
  }

  .photo-gallery img {
    width: 100%;
    max-width: 300px;
  }
}




