/* Button Styles */
.btn-coming-soon {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(255, 0, 0, 0.603);
    color: #fff;
    border-radius: 25px; /* Rounded corners */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-coming-soon:hover {
    background-color: darkgrey;
    color: #fff; /* Ensure the text color remains white on hover */
}