
        .button {
            /* Green */
            border: none;
            color: white;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: bpointer;
        }

        .button5 {
            border-radius: 50%;
        }

            .show-read-more .more-text{
                display: none;
            }

        /* General Styling for FAQ Section by CLINTON */
        .section-faq {
            padding: 20px;
            margin-top: 40px;
            background-color: #ffffff;
            border-radius: 8px;
        }

        .entry-section-header {
            margin-bottom: 20px;
        }

        .title-section {
          
            color: #333333;
            margin: 0;
        }

        /* Styling for FAQ List */
        .listing-faq {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .listing-item {
            border-bottom: 1px solid #ddd;
            margin-bottom: 10px;
            padding-bottom: 10px;
        }

        .header-faq {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            
            
            color: #007bff;
        }

        .icon-faq {
            font-size: 20px;
             font-weight: bold;
        }

        .content-faq {
            display: none;
            padding-top: 10px;
        }

        .answer-text {
            margin: 0;
            
            color: #444444;
        }

        /* Styling for Expanded FAQ */
        .listing-item.active .content-faq {
            display: block;
        }

        .listing-item.active .icon-faq i {
            transform: rotate(45deg);
        }
        



@media (max-width: 768px) {
    .cart-btn {
        position: fixed;
        top: 0px;
        left: 0;   
        right: 0; 
        width: 100%; 
        z-index: 1000;
        font-size: 24px;
        padding: 10px 16px;
        text-align:center; 

    }
}

@media (min-width: 769px) {
.cart-btn {
    position: absolute;
    right: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    padding: 5px 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
}

.cart-btn.fixed {
    position: fixed; /* Becomes fixed when scrolled past */
    top: 0px;
    right: 30px;
}


