.bg-container {
    font-family: Arial, sans-serif;
    margin: 0;  
    padding: 0;
    background-color: #ffffff;
}

.heading {
    text-align: left;
    margin-bottom: 20px;
}

.heading h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.rooms-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.rooms-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.rooms-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.rooms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.large-room {
    flex: 2 1 60%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-rooms-grid {
    flex: 1 1 35%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.room, .large-room {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room img, .large-room img {
    width: 100%;
    height: 100%;
    display: block;
}

.room-info, .large-room .room-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rooms-container {
        flex-direction: column;
    }

    .large-room {
        flex: 1 1 100%;
    }

    .small-rooms-grid {
        grid-template-columns: 1fr;
    }
}
