.services {
    background-color: rgb(44, 44, 159);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 2rem 0 4rem 0;
    box-shadow: 0 -10px 10px 10px rgb(44, 44, 159);
}

.services hr {
    margin: 5rem 0;
}

.services-text {
    padding: 0 4rem;
    font-size: .9rem;
    margin-bottom: 2rem;
}

.services-text p {
    line-height: 1.5;
}

.services .title {
    font-family: 'Freehand', cursive;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.room-container {
    padding: 1rem 2rem;
}

.services-text {
    text-align: center;
}

.about-room {
    padding: 1rem 0;
}

.about-room-title, 
.amenities-title {
    font-weight: 700;
}

.about-room-title {
    margin-bottom: 1rem;
}

.amenities-title {
    margin-bottom: .8rem;
    font-size: 1rem;
}

.about-para {
    font-size: .8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.room-image-primary {
    margin-bottom: .5rem;
}

.room-image-primary img {
    width: 100%;
}

.room-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.room-images-row img {
    width: 100%;
}

.amenity-container {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.amenity {
    text-align: center;
}

.amenity img {
    margin: .5rem auto;
}

.amenity p {
    font-size: .7rem;
}

.book-now-btn {
    color: rgb(44, 44, 159);
    display: inline-block;
    background-color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 500;
}

.cottages {
    background-color: #fff;
    color: rgb(44, 44, 159);
    border-radius: 10px;
}

.cottages .room-image-primary img {
    border-radius: 10px;
}

.cottages .book-now-btn {
    background-color: rgb(44, 44, 159);
    color: #fff;
}

/**************** Media queries **************/
@media (min-width: 768px) {
    .services .title {
        font-size: 2.5rem;
    }

    .room-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

