
/* --- Your new button styles --- */
.whatsapp-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #40f09e; /* Exact green from your image */
    color: #000000 !important; /* Black text - added !important to be sure */
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.whatsapp-inquiry-btn:hover {
    background-color: #35c983; /* A slightly darker green for hover */
    color: #000000 !important;
    text-decoration: none;
}

.whatsapp-inquiry-btn svg {
    margin-right: 8px; /* Space between icon and text */
    fill: #000000; /* Explicitly set icon fill to black */
}
/* --- End of new styles --- */