.servicePageContainer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.servicePageImg{
    width: 440px;
}

.servicePageImg img{
    width: 100%;
}

.servicePageText{
    width: calc(100% - 500px);
}

@media(min-width: 320px) and (max-width: 550px){
    .servicePageContainer{
        margin-top: 20px;
    }
    
    .servicePageImg{
        width: 100%;
    }
    
    .servicePageText{
        width: 100%;
        margin-top: 20px;
    }
}

@media(min-width: 550px) and (max-width: 720px){
  
    .servicePageImg{
        width: 250px;
    }
    
    .servicePageText{
        width: calc(100% - 280px);
    }
}

@media(min-width: 720px) and (max-width: 920px){
  
    .servicePageImg{
        width: 350px;
    }
    
    .servicePageText{
        width: calc(100% - 390px);
    }
}

.priceContainer {
    display: grid;
    gap: 15px;
    margin-top: 25px;           
}

.priceItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    /* border-radius: 6px; */
    text-decoration: none;
    color: #222;
    background-color: #fff;
    background: rgba(160, 154, 131, 0.11);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-left: 4px solid #A19467;
}

.priceItem:hover {
  background: rgba(235, 228, 202, 0.11);
}


.priceItem p {
  margin: 0;
  font-weight: 700;
  color: #A19467;
}


.priceItem:hover .priceItem p {
    color: #fff;
}

.priceItem span {
    font-size: 14px;
}
