.container_Hotel {
    background-color: #F3F3F9;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotel-section {
    max-width: 1600px;
    padding: 150px 0 40px 0;
}


.hotel-icon {
    width: 40px;
    height: 40px;
    background-color: #ffd700;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
}

.hotel-title {
    font-size: 28px;
    font-weight: normal;
    color: #333;
}

.hotel-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 100px;
}

.hotel-text {
    flex: 1;
    min-width: 300px;
}

.hotel-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.hotel-text p {
    margin-bottom: 25px;
    font-size: 16px;
}

.view-button-hotel {

    display: inline-block;
    padding: 12px 24px !important;
    background-color: #e2e6ed;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-weight: normal;
    transition: all 0.3s ease;
}

.view-button-hotel:hover {
    background-color: #f9f9f9;
    border-color: #999;
}

.hotel-image {
    /* flex: 0 0 450px;
    max-width: 100%; */
}

.hotel-image img {
    height: 240px;
        object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ÏìÓ¦Ê½Éè¼Æ */
@media (max-width: 768px) {
    .hotel-section {
        max-width: 1600px;
        padding: 70px 0;
    }
    .hotel-content {
        flex-direction: column;
        gap: 10px;
    }

    .hotel-image {
        margin-top: 30px;
        flex-basis: 100%;
        max-width: 100%;
    }
        .hotel-image img {
           width: 100%;
        height: auto;
            object-fit: contain;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);   }
}
