.elementor-10573 .elementor-element.elementor-element-3880859{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-bc4ac03 *//* Container chính */
.info-container {
    display: flex; /* Căn thông tin theo hàng ngang */
    gap: 20px; /* Khoảng cách giữa các info-house */
    background: var(--lt-color-gray-100); /* Nền nhạt */
    padding: 20px;
    border-radius: 10px;
}

/* Khối từng info-house */
.info-house {
    background: rgb(247, 242, 236);
    padding: 150px;
    color: black;
    width: 50%; /* Chiếm 45% chiều rộng container */
    box-shadow: none; /* Không có bóng */
    border-radius: 10px; /* Không bo góc */
    text-align: left; /* Chữ căn trái */
}


/* Tiêu đề */
.title-container {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.title-label {
    color: black;
    font-size: 20px;
    font-weight: 550;
    margin-right: 10px;
}

.title-value {
    color: #BDA588; /* Màu xanh lá */
    font-size: 20px;
    font-weight: 700;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Nội dung chữ */
.info-house p {
    margin: 5px 0;
    font-size: 18px;
    line-height: 1.px;
}
.pic-house {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Nền trắng */
    position: relative;
    transform: scale(1); /* Mặc định scale đầy đủ */
    transition: all 0.6s ease-in-out;
    opacity: 1; /* Mặc định ảnh hiển thị */
    padding: 10px; /* Thêm khoảng cách nhỏ */
}

/* Ảnh bên trong */
.pic-house img {
    max-width: 100%; /* Giới hạn ảnh theo kích thước container */
    height: auto; /* Đảm bảo tỷ lệ ảnh */
    display: inline-block;
}/* End custom CSS */