.attractions-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 30px auto;
}

.attractions-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.attraction-slide {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 10px;
}

.attraction-item {
  flex: 1 1 280px;
  max-width: 300px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.attraction-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.attraction-content {
  padding: 15px;
  background-color: #fff;
}

.attraction-content h3 {
  margin-top: 0;
  color: #333;
  font-size: 1.2rem;
}

.attraction-content .heading-line {
  width: 50px;
  height: 3px;
  background-color: #59b706;
  margin: 10px 0;
}

.attraction-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.attraction-content .btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #59b706;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.attraction-content .btn:hover {
  background-color: #4a9805;
}

.nav-attractions {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-attractions.prev-attractions { left: 10px; }
.nav-attractions.next-attractions { right: 10px; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .attraction-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .nav-attractions {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}