.trial-section {
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  color: #fff;
}
.trial-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: center;
  background: linear-gradient(145deg, #FFB703, #755300);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
}
.trial-info {
  flex: 1 1 300px;
}
.trial-info h1 {
  font-size: 50px;
  font-weight: 700;
}
.trial-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.trial-info p {
  font-size: 15px;
  margin: 15px 0;
}
.trial-info ul {
  list-style: none;
  padding: 0;
  font-size: 13px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.trial-info ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}
.trial-info ul li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #fff;
}
.trial-info .btnfree {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trial-info .btnfree:hover {
  background-color: #1b1b1b;
  transform: scale(1.02);
}

.carousel-wrapper {
  flex: 2 1 600px;
  position: relative;
  overflow: hidden;
}
.carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  padding: 10px 0;
}
.carousel img {
  width: 180px;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  filter: brightness(90%) blur(0.5px);
}
.carousel img:hover {
  transform: scale(1.05);
  filter: brightness(105%) blur(0);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.carousel-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}
.carousel-overlay.left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}
.carousel-overlay.right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.3), transparent);
}

@media (min-width: 768px) {
  .trial-box {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .trial-info h1 {
    font-size: 56px;
  }
  .carousel img {
    width: 200px;
    height: 300px;
  }
}
