.hotel_container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.hotel_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.img_container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel_container:hover .img_container img {
    transform: scale(1.05);
}

.hotel_title {
    padding: 20px;
    background-color: #fff;
}

.hotel_title a {
    text-decoration: none;
    color: inherit;
}

.hotel_title .price {
    color: #A0875B;
    font-weight: bold;
}

.hotel_title h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.list_tours {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
} 