#buttonWith {
    color: white;
    border-radius: 100px;
    width: 75px;
    height: 30px;
    font-size: 12px;
}

#buttonWithout {
    color: white;
    border-radius: 100px;
    width: 75px;
    height: 30px;
    font-size: 12px;
}

#withPricing,
#withoutPricing {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bolder;
    letter-spacing: 3px;
}

#formWith,
#formWithout {
    margin-top: 10px;
}

#formWith button,
#formWithout button {
    border: 1px solid black;
    border-radius: 100px;
    height: 50px;
    width: 300px;
    font-weight: bold;
}

.demo-button-container {
    margin-top: 20px; /* Adjust margin as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-button {
    background-color: rgb(158, 37, 0); /* Bootstrap primary color, change as needed */
    color: #fff; /* Text color */
    padding: 15px 30px; /* Adjust padding as needed */
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px; /* Adjust font size as needed */
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 80px;
    gap: 15px;
}

.demo-button:hover {
    background-color: rgb(207, 50, 2); /* Change hover color as needed */
    font-weight: bolder;
}
