body {
  font-family: Inter;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

 .container {
    background-color: #C4C7CC;
     display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 16px;
 }

  .heading {
  font-weight: 700;
  font-size: 64px;
  background: linear-gradient(to right, #031633 1%, #031633 50%,
   #0D6EFD 100%);
   -webkit-background-clip: text;
   background-clip: text;
  color: transparent;
   margin-top: 30px;
 }

 .features {
  font-weight: 400;
  font-size: 24px;
 }


  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .grid{
    background-color: white;
    padding: 16px;
    border-radius: 5px;
  }

  .icon {
    height: 48px;
    margin-bottom: 6px;
    cursor: pointer;
  }

  .grid div {
    font-weight: bold;
    font-size: 18px;
  }