.services-blocks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services-blocks__item {
    position: relative;
    display: block;
    width: 282px; 
    height: 170px; 
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 28px;
    padding-bottom: 28px;
    background-color: #FEFBEC; 
    border-radius: 16px;
}

.services-blocks__item-top {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.services-blocks__item-image {
    margin-right: 12px;
}

.services-blocks__item-image,
.services-blocks__item-image svg {
    width: 54px;
    height: 54px;
}

.services-blocks__item-title {
    color: #8D302A; 
    font-size: 20px; 
    font-weight: 600; 
    line-height: 24px;
}

.services-blocks__item-bottom {
    color: #8D302A; 
    font-size: 16px; 
    font-weight: 400; 
    line-height: 28px;
}

.services-blocks__item-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    content: "";
    width: 24px;
    height: 24px;
}

.services-blocks__item-arrow svg path {
    stroke: #8D302A;
}

@media (max-width: 767px) {
    
    .services-blocks__item {
        width: 100%;
    }
    
}