.soma-approach {
    box-sizing: border-box;
    width: 100vw;
    margin: auto;
    padding: 60px;
    text-align: left;
}

.soma-approach-label {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.022em;
    line-height: 150%;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #131527;
}

.soma-approach-subcontainer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.approach-item {
    width: 32%;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.approach-item img {
    height: 36px;
    width: 46px;
    object-fit: contain;
    margin-bottom: 15px;
}

.approach-item h5 {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    letter-spacing: -0.019em;
    line-height: 150%;
    font-weight: 600;
    text-transform: capitalize;
    color: #000000;
}

.approach-item p{
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.022em;
    color: #000000;
    font-weight: 500;
}

.approach-item a {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    line-height: 150%;
}
@media (max-width: 768px) {
    .soma-approach-subcontainer {
        flex-direction: column;
    }
    .approach-item{
        width: 100%;
        margin-top: 2rem;
    }
}
@media (max-width: 425px) {
    .soma-approach {
        padding: 20px;
    }
    .approach-item {
        padding: 0rem;
    }
}