.why-buy-compare-section { 
  // padding-top: 16px;
  // padding-bottom: 80px;
  // @media (max-width: 767px) {
  //   padding: 0 0 64px;
  // }
  .why-buy-compare-inner {
    @media (min-width: 769px) {
      display: flex;
      flex-wrap: wrap;
    }
    @media (min-width: 1200px) {
      padding: 0 60px; 
    }
    .why-buy-us {
      width: 50%;
      @media (max-width: 768px) {
        display: none;
      }
      .why-buy-us-wrap{
        padding-right: 80px;
        @media (min-width: 1200px) {
          padding-right: 150px;
        }
        h2 {
          // text-transform: uppercase;
          margin-bottom: 35px;
        }
        .benefit-list {
          list-style: none;
          padding: 0;
          margin: 0;
          .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            .benefit-icon {
              width: 32px;
              height: 32px;
              margin-right: 20px;
            }
            .benefit-text {
              margin-bottom: 40px;
              position: relative;
              strong {
                font-family: Agenda Bold;
              }
            }
          }
        }
      }
    }
    .comparison-table-wrapper{
      @media (min-width: 769px) {
        width: 50%; 
      }
      text-align: center;
      h2{
        margin-bottom: 35px;
      }
      .comparison-table {
        flex: 1 1 400px;
        border-collapse: collapse;
        width: 100%;
        .table-header {
          display: flex;
          font-weight: bold;
          .col-title {
            flex: 1;
            padding: 12px;
            text-align: center;
            border-radius: 6px 6px 0 0;
          }
        }
        .table-body {
          .table-row {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            &:first-child{
              .highlight{
                border-radius: 6px 6px 0 0;
              }
            }
            .row-title {
              display: inline-flex;
              align-items: center;
              text-align: left;
              font-family: Agenda Bold;
              flex: 1;
              padding: 12px;
              position: relative;
              @media (min-width: 992px) {
                flex: 20%;
              }
            }
            .row-cell {
              flex: 1;
              padding: 12px;
              text-align: center;
            }
            .highlight {
              box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            }
          }
        }
      }
    }
  }

  // Mobile responsive
  @media screen and (max-width: 767px) {
    .why-buy-compare-inner {
      flex-direction: column;
    }

    .comparison-table {
      .table-header {
        display: none;
      }

      .table-body {
        .table-row {
          flex-direction: column;
          .row-title, .row-cell {
            text-align: left;
            padding: 8px 0;
          }
        }
      }
    }
  }
}
