.whyus {
  width: 100%;

  .inside {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 160px;
    border-radius: 35px;
    padding: 27px 35px;
    background: linear-gradient(0deg, rgba(243, 98, 20, 0.15), transparent 57.4%);
    z-index: 1;
    flex-wrap: wrap;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 35px;
      padding: 2px;
      background: linear-gradient(0deg, #F36214, transparent);
      mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
      mask-composite: exclude;
      z-index: -1;
    }

    .atut {
      flex: 1 1 25%;
      box-sizing: border-box;
      padding: 0 15px;

      .flex {
        display: flex;
        align-items: center;

        .icon {
          display: flex;
          align-items: center;
          justify-content: center;
          background: #351D13;
          border-radius: 100px;
          width: 53px;
          height: 53px;
        }
      }

      h3 {
        -webkit-text-stroke: 1px #572b19;
        font-family: Poppins;
        font-size: 36px;
        margin: 0;
        line-height: 100%;
        letter-spacing: 0%;
        color: transparent;
      }

      h2 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-family: Poppins;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #fff;
      }

      p {
        margin-top: 0;
        font-family: Poppins;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0%;
        color: #945833;
        width: 100%;
      }
    }
  }

  /* --- Mobile Styles --- */
  @media screen and (max-width: 768px) {
    .inside {
      flex-direction: column;
      margin: 0 15px;
      padding: 0;
      border-radius: 20px;

      .atut {
        margin-bottom: 25px;
        text-align: center;

        .flex {
          justify-content: center;

          .icon {
            width: 45px;
            height: 45px;
          }
        }

        h3 {
          font-size: 28px;
          -webkit-text-stroke-width: 0.8px;
        }

        h2 {
          font-size: 14px;
        }

        p {
          font-size: 11px;
          max-width: 300px;
          margin-left: auto;
          margin-right: auto;
        }
      }
    }
  }
}

