.start-now-button {
    font-size: 30px; /* increased font size */
    width: 570px; /* increased width */
    height: 85px; /* increased height */
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    color: white;
    background-color: hotpink;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-now-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 203, 0.8);
    border-radius: 10px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.start-now-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 192, 203, 0.7);
}

.start-now-button:hover:before {
    transform: scale(1);
}
