.section-title {
    display: inline-block;
    padding: 8px 29px;
    border-radius: 20px 20px 0px 0px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: system-ui;
    font-size: 18px;
}
    .key-features { background-color: #2497F3; }
    .why-vps { background-color: #00B77E; }
    .benefits { background-color: #F7A300; }

.feature-box {
    background: #fff;
    box-shadow: 0px 6px 10px 3px rgb(0 0 0 / 9%);
    padding: 21px 12px;
    border-radius: 37.07px;
    height: 190px;
    width: 190px;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-box img {
    width: 60px;
    height: 60px;
}
    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .feature-box i, .feature-box img {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #2497F3;
    }
.feature-title {
    font-size: 16px;
    font-family: system-ui;
    font-weight: 400;
    line-height: 30px;
}
    .g-gap {
        grid-gap:21px;
    }
    @media (max-width: 768px) {
      .feature-box { margin-bottom: 20px; }
    }

@media (max-width: 430px) {
    .feature-box {
        width: 160px;
    }
    .content-start-mobile {
        justify-content:flex-start!important;
    }
}