#book-now {
    background-color: #DBDBDBB8;
    padding: 50px;
}

#book-now-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

#book-now-image img {
    width: 100%;
    height: 564px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

#book-now-image::after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(121, 7, 81, 0.2) 0%, rgba(11, 14, 113, 0.2) 100%);
    border-radius: 20px;
}

#book-now-image div {
    text-align: center;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px;
}

#book-now-image h1 {
    font-weight: 600;
    font-size: 36px;
    color: #FFFFFFE5;
}

#book-now-image button {
    margin-top: 30px;
    width: 234px;
    height: 53px;
    border-radius: 10px;
    background-color: #E44AB9;
    border: none;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

@media (max-width: 768px) {
    #book-now {
        padding: 20px;
    }
}