#hotel_service_block {
    margin-top: 50px;
    margin-bottom: 50px;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
}
.service-heading {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}
.service-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #bf9a61; /* Gold color often used in hotels */
}
.service-item {
    margin-bottom: 30px;
}
.service-content {
    text-align: center;
    padding: 25px;
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
}
.service-content:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}
.service-img {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img img {
    max-height: 100%;
    max-width: 100%;
}
.service-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}
.service-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}
