        #whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 70px;
            z-index: 1000;
        }

        #whatsapp-button a {
            display: flex;
            align-items: center;
            background-color: #25d366; /* Background color for the button */
            border-radius: 50px; /* Rounded corners for the button */
            padding: 0px; /* Space around the content */
            text-decoration: none; /* Remove underline from the link */
            color: white; /* Text color */
        }

        #whatsapp-button img {
            width: 40px; /* Size of the icon */
            height: 40px; /* Size of the icon */
            margin-right: 35px; /* Space between icon and text */
        }

        .chat-text {
            font-size: 14px; /* Size of the text */
            font-weight: bold; /* Make text bold */
            white-space: nowrap; /* Prevent the text from wrapping */
            overflow: hidden; /* Hide overflow text */
            display: inline-block; /* Ensure the text is inline */
            animation: marquee 5s alternate infinite; /* Animation properties */
        }

        @keyframes marquee {
            0% {
                transform: translateX(-15%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
		
		ul {
            list-style-type: none; /* Remove default bullets */
            padding: 0; /* Remove default padding */
            margin: 0; /* Remove default margin */
            display: flex; /* Align items in a row */
            flex-wrap: wrap; /* Allow wrapping if needed */
        }
		        li {
            margin-right: 15px; /* Space between items */
            display: flex;
            align-items: center; /* Center items vertically */
        }
        i {
            margin-right: 8px; /* Space between icon and text */
        }
		
		p {
			text-align: justify;
			    text-align: center;
		}