.services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-card {
    width: 300px;
    margin: 15px;
    text-align: center;
}

.service-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.service-card:hover > .service-icon {
    color: #feb900;
}