/* Products Section Styles */
.products-section {
  padding: 60px 0;
  background-color: #F5F5F5;
}

.products-section .section-subtitle {
  color: #110F0D;
  margin-bottom: 32px;
}

.products-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #0E0E0E;
  opacity: 0.9;
  margin-bottom: 60px;
  max-width: 555px;
  margin-left: auto;
  margin-right: auto;
}

.product-item {
  padding: 40px 20px;
}

.product-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.product-icon img {
  max-width: 55px;
  max-height: 52px;
  object-fit: contain;
}

.product-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #110F0D;
  opacity: 0.9;
  margin: 0;
}

/* Mobile Products */
@media screen and (max-width: 640px) {
  .products-section {
    padding: 60px 0;
  }
  
  .products-description {
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 40px;
  }
  
  .product-item {
    padding: 10px 15px;
    margin-bottom: 0;
  }
  
  .product-icon {
    margin-bottom: 20px;
    /* height: 50px; */
    display: inline-block;
    padding-right: 20px;
    width: 20%;
  }

  .product-title {
    display: inline-block;
    text-align: left;
    width: 75%;
  }
  
  .product-icon img {
    max-width: 45px;
    max-height: 42px;
  }
}
