main {
  display: block;
  background-color: #fff;
  max-width: 1300px;
  border-radius:10px;
  padding: 10px;
  margin: 15px 25px;

  > section {
    margin-bottom: 30px;
    
    h2 {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: #003319;
      }
      
      p {
        line-height: 24px;
      }
      
    img {
      display: block;
      margin: 10px auto;
      border-radius: 10px;
      width: 100%;
    }
  }

  .bi {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    min-width:35px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #98C99C;
    color: #00401f;
  }}