.apply-methods-section {
  padding: 40px 5%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

/* ===== Carousel ===== */
.apply-methods-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
}

.apply-methods-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.apply-methods-track {
  display: flex;
  gap: 15px;
  transition: transform 0.4s ease;
}

/* The hidden left/right cards exist in DOM but are clipped by viewport overflow */
.carousel-offscreen {
  /* They render in the flex flow but are clipped */
}

.un_rental_slide_item {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
}

.un_rental_slide_item a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333;
  transition: opacity 0.2s;
}

.un_rental_slide_item a:hover {
  opacity: 0.8;
}

.un_rental_slide_item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.un_rental_slide_item p {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

.carousel-btn {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.2s;
  margin: 0 8px;
}

.carousel-btn:hover {
  background-color: #f0f0f0;
}

/* ===== Green Buttons ===== */
.apply-methods-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.apply-method-btn {
  display: block;
  text-decoration: none;
  background-color: #00a040;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 12px 20px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.apply-method-btn:hover {
  background-color: #008836;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .un_rental_slide_item {
    width: 220px;
  }

  .un_rental_slide_item p {
    font-size: 1.1rem;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    margin: 0 4px;
  }
}
