  #feature .fe-box {
      width: 180px;
      text-align: center;
      padding: 25px 15px;
      box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
      border: 1px solid #cce7d0;
      border-radius: 4px;
      margin: 15px 0;
  }

  #feature .fe-box:hover {
      box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
  }

  #feature .fe-box h6 {
      display: in-block;
      padding: 9px 8px 6px 8px;
      line-height: 1;
      border-radius: 4px;
      color: #088178;
      background-color: #fddde4;
  }

  #feature .fe-box img {
      width: 100%;
      margin-bottom: 10px;

  }

  #feature {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 40px;

  }

  #feature .fe-box:nth-child(2) h6 {
      background-color: #cdebbc;
  }


  #feature .fe-box:nth-child(3) h6 {
      background-color: #d1e8f2;
  }

  #feature .fe-box:nth-child(4) h6 {
      background-color: #cdd4f8;
  }

  #feature .fe-box:nth-child(5) h6 {
      background-color: #f6dbf6;
  }

  #feature .fe-box:nth-child(6) h6 {
      background-color: #fff2e5;
  }

  #product1 {
      text-align: center;
  }

  #product1 .pro {
      width: 23%;
      min-width: 100%;
      padding: 10px 12px;
      border: 1px solid #cce7d0;
      border-radius: 15px;
      cursor: pointer;
      box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
      margin: 15px 0;
      transition: 0.2s ease;
      position: relative;
  }

  #product1 .pro:hover {
      transform: translateY(-3px);
      box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
  }

  #product1 .pro img {
      width: 100%;
      border-radius: 20px;
  }

  #product1 .pro .des {
      text-align: start;
      padding: 10px 0;
  }

  #product1 .pro .des span {
      color: #606063;
      font-size: 12px;
  }

  #product1 .pro .des h5 {
      padding-top: 7px;
      color: #1a1a1a;
      font-size: 14px;
  }

  #product1 .pro .des i {
      font-size: 12px;
      color: rgb(243, 181, 25)
  }

  #product1 .pro .des h4 {
      font-size: 15px;
      padding-top: 7px;
      font-weight: 700;
      color: #088178;
  }

  .button-container {
      position: absolute;
      bottom: 10px;
      right: 10px;
      display: flex;
      gap: 10px;
  }

  .cart,
  .eye {
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 50px;
      background-color: #e8f6ea;
      font-weight: 500;
      color: #088178;
      border: 1px solid #cce7d0;
      text-align: center;
  }

  .cart:hover,
  .eye:hover {
      background-color: #088178;
      color: white;
  }

  .discount-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #ff4757;
      color: white;
      padding: 5px 10px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: bold;
  }

  /* banner */
  #banner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-image: url(https://i.postimg.cc/SsC7D5WD/b2.jpg);
      width: 100%;
      height: 40vh;
      background-position: center;
      background-size: cover;
      margin-bottom: 60px;
      /* Adjust as needed */

  }

  #banner h4 {
      color: #fff;
      font-size: 16px;
  }

  #banner h2 {
      color: #fff;
      font-size: 30px;
      padding: 10px 0;
  }

  #banner h2 span {
      color: #ef3636;

  }

  button.normal {
      color: #000;
      padding: 10px;
      font-weight: 400;
      font-size: 14px;
      border-radius: 4px;
      background-color: #fff;
      border: none;
      outline: none;
      transition: 0.2s;
      cursor: pointer
  }

  #banner button:hover {
      background-color: #088178;
      color: #fff;
  }


  @media (max-width: 920px) {

      .section-p1 {
          padding: 40px 40px
      }

      #feature {
          justify-content: center;

      }

      #feature .fe-box {
          margin: 15px 15px
      }

      #product1 .pro-container {
          justify-content: center
      }

      #product1 .pro {
          margin: 15px;
      }

  }

  @media (max-width: 477px) {
      .section-p1 {
          padding: 20px
      }

      #feature {
          justify-content: space-between;
      }

      #feature .fe-box {
          width: 155px;
          margin: 0 0 15px 0;
      }

      #product1 .pro {
          width: 100%
      }

  }