.custom-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #495E31;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    max-width: 380px; /* Adjust the max-width as per your needs */
    text-align: center;
    border: 2px solid #495E31;
    transition: background-color 0.3s;
}

.custom-button:hover {
    background-color: #ffffff;
    color: #495E31 !important;;
    border: 2px solid #495E31;
}

@media only screen and (max-width: 768px) {
    .custom-button {
        max-width: 100%; /* Adjust the max-width as per your needs */
    }
}