.service-nav-btn {
    /* Ensure the button has a defined height */
    height: 50px; /* Or any appropriate height */

    /* Center the text horizontally */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Other existing styles (keep these) */
    padding: 0 10px; /* Add horizontal padding if needed */
    background-color: transparent; /* Or whatever background you have */
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%; /* Make the button take up the full width of its container */
    text-align: center; /* Alternative way to center, but flex is preferred for vertical */
}

/* .service-nav-btn:hover {
  background-color: #f0f0f0;
} */