    .three-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 35px;
      text-align: justify;
      line-height: 1.4;
      background-color: #fff;
      padding: 5px;
      border-radius: 8px;
    }

    @media (max-width: 992px) {
      .three-columns {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .three-columns {
        grid-template-columns: 1fr;
      }
    }

    .three-columns h4 {
      color: #E10600;
      margin-top: 0;
    }

    .three-columns img {
      width: 100%;
      height: auto;
      margin: 15px 0;
      border-radius: 6px;
    }

    .three-columns strong {
      color: #E10600;
    }

    .three-columns i {
      margin-right: 6px;
    }

    .three-columns p {
      margin-bottom: 1rem;
    }
