body {
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.section-wrapper {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 32px;
  color: #c40000;
  text-align: center;
  margin-bottom: 40px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c40000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 5px;
  z-index: 10;
}

.slider-btn:hover {
  background-color: #f1c40f;
  color: black;
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  background-color: #f9f9f9;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #c40000;
}

.tour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tour-card {
  background: #fff;
  border-radius: 12px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

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

.tour-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tour-card h3 {
  color: #c40000;
  font-size: 20px;
  margin: 10px 0 5px;
}

.tour-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
}

.tour-card .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #ffc107;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tour-card .btn:hover {
  background-color: #e6aa00;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.soldout {
  background-color: #c40000;
}

.limited {
  background-color: #ffc107;
  color: black;
}

.see-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.see-more-btn {
  padding: 10px 20px;
  background-color: #d52b1e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.see-more-btn:hover {
  background-color: #bb2419;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.benefit-box {
  background-color: #fff;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box .icon {
  font-size: 40px;
  color: #d52b1e;
  margin-bottom: 15px;
}

.benefit-box h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 15px;
  color: #555;
}

.achievement-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.achievement-box {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.3s ease;
  text-align: center;
}

.achievement-box:hover {
  transform: scale(1.05);
}

.counter {
  font-size: 40px;
  color: #c40000;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.achievement-box p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .benefits-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .tour-card {
    width: 90%;
  }
  .slider-btn {
    padding: 8px 12px;
    font-size: 18px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .achievement-grid {
    gap: 20px;
  }
}