.rooms-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #343a40;
}
.room-card {
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.room-card:hover {
    transform: scale(1.05);
}
.room-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 20px;
    background: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
}
.card-text {
    color: #6c757d;
}