/* Add these styles for the new sections */

/* Why Choose LeveAli Section */
.why-choose-section {
  background-color: var(--orange);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.why-choose-section h2 {
  margin-bottom: 50px;
  color: var(--white);
}

.benefit-item {
  margin-bottom: 30px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

/* Who Is Interested Section */
.who-interested-section {
  padding: 60px 0;
  background-color: var(--white);
  text-align: center;
}

.who-interested-section h2 {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.who-interested-section p {
  font-size: 18px;
  color: var(--medium-gray);
  margin-bottom: 50px;
}

.business-type {
  background-color: #f4f4f4;
  padding: 30px 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.business-type:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.business-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.business-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.business-type hr {
  width: 50px;
  height: 3px;
  background-color: var(--orange);
  border: none;
  margin: 0 auto;
}

/* Carousel indicators for business types */
.business-carousel-indicators {
  margin-top: 30px;
}

.business-carousel-indicators .carousel-indicators {
  position: static;
  margin-bottom: 0;
}

.business-carousel-indicators .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
}

.business-carousel-indicators .carousel-indicators button.active {
  background-color: var(--orange);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .why-choose-section h2,
  .who-interested-section h2 {
    /* font-size: 28px; */
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .business-type {
    margin-bottom: 15px;
  }
}
