<!-- WhatsApp Chat Button -->
<a href="https://wa.me/15127021304?text=Hello%20I%20need%20help%20with%20your%20services" 
   target="_blank" 
   rel="noopener noreferrer" 
   class="whatsapp-button">
    💬 Chat on WhatsApp
</a>

<style>
/* WhatsApp Button Styling */
.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #1ebe5d;
}
</style>