/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

    .hide-on-mobile {
        display: inline; /* Default display */
    }
    
    @media only screen and (max-width: 767px) {
        .hide-on-mobile {
            display: none !important; /* Hide on mobile devices */
        }
    }

    ul.star-list {
        list-style-type: none; /* Remove default bullets */
        padding-left: 0; /* Remove default padding */
    }

    ul.star-list li::before {
        content: "★"; /* Star character */
        color: #ff6a01; /* Star color */
        margin-right: 8px;
        font-size:28px;
    }
