/* Service Features Section Styles */
.partner-section .lead, .vendor-features-section .lead {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.partner-section h3, .vendor-features-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #3E4B5C;
  margin-bottom: 30px;
}

/* Feature Icon Box Styles */
.feature-icon-box {
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-icon-box.bordered {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Container Styles */
.feature-icon-box .icon-container {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-icon-box .icon-container img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.vendor-features-section .feature-icon-box {
  padding-top: 80px;
  margin: 0px 15px;
}

.vendor-features-section .listing-container {
  max-width: 1000px;
}

/* Typography Styles */
.feature-icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.feature-icon-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Color Classes */
.color-orange {
  color: #D97C37;
}

.color-dark {
  color: #3E4B5C;
}

/* Shadow Classes */
.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .partner-section h3, .vendor-features-section h3 {
    font-size: 24px;
  }
  
  .feature-icon-box {
    margin-bottom: 20px;
    padding: 25px 15px;
  }
  
  .feature-icon-box .icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-icon-box .icon-container img {
    width: 35px;
    height: 35px;
  }
  
  .feature-icon-box h4 {
    font-size: 18px;
  }
  
  .feature-icon-box p {
    font-size: 14px;
  }
}
