.room-designer-section{
  width: 100%;
  height: 100%;
  display: flex;
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f5fefb;
}

.room-designer-title p{
    font-size: 4rem;
    color: #333;
}

.room-designer-title p strong{
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 1.2px;
}
.room-designer-description {
    width: 100%;
    max-width: 600px;
    font-size: 2rem;
    color: #999;
    margin: 10px auto;
}

.room-designer-description span strong span{
    color: #333;
    font-weight: 700;
}

.room-designer-image-column{
    width: 100%;
    max-width: 1024px;
    height: 100%;
    margin: 20px auto;
}

.room-designer-image-column img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 468px){
    .room-designer-title p{
        font-size:2rem;
        line-height: 1.5;
    }

    .room-designer-title p strong{
        font-size: 2.5rem;
    }

    .room-designer-description{
        font-size: 1.6rem;
    }
}