/* Page Header Styles */
.business-header {
  background-image: url("../../img/business/distribution/banner.jpg");
  height: 40vh;
  margin-top: 0;
  background-position: center 30%;
}

/* Business Introduction Section */
.intro-content {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Product Profile Section */
.product-category {
  margin-bottom: 30px;
  text-align: center;
}

.product-category img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-category h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}

/* Core Advantages Section */
.advantage-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.advantage-icon i {
  font-size: 3.5rem;
  color: #0d6efd;
  background: linear-gradient(135deg, #0d6efd, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.advantage-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.advantage-item p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.advantage-item::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.05);
  z-index: 0;
}

/* Featured Services Section */
.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* Customer Value Section */
.customer-value {
  background-color: #fff;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .product-category img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .intro-content {
    padding: 0 15px;
  }

  .product-category {
    margin-bottom: 20px;
  }

  .advantage-item {
    padding: 2rem 1.5rem;
    margin-bottom: 20px;
  }

  .advantage-icon i {
    font-size: 2.8rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-item h3 {
    font-size: 1.4rem;
  }

  .service-item p {
    font-size: 1.1rem;
  }

  .value-item {
    padding: 1.5rem;
    margin-bottom: 20px;
  }

  .value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

/* Fancy Introduction Box */
.fancy-intro {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #0d6efd;
}

.fancy-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.fancy-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
}

.fancy-intro strong {
  color: #0d6efd;
  font-weight: 600;
}
