/* Sales Plea Block Styles - Old Layout */
.sales-plea-block {
  &.bg-grey {
    background: #f5f5f5;
  }

  padding: 60px 20px;

  .container {
    max-width: 940px;
    margin: 0 auto;
  }

  .lighter-text {
    color: #333;
  }

  .flex {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-2 {
    flex: 2;
  }

  .right-column {
    display: flex;
    align-items: center;
  }

  h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
  }

  strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 20px;
  }

  ul {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0 20px 20px;
  }

  li {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  a {
    color: #0070c9;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }

  .center {
    text-align: center;
  }

  .btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
  }

  .btn-success {
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    color: #fff;
    border: 1px solid #51a351;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 1px 2px rgba(0, 0, 0, 0.05);

    &:hover {
      background-image: linear-gradient(to bottom, #51a351, #419341);
      text-decoration: none;
    }
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .flex {
      flex-direction: column;
    }
  }
}

/* Sales Plea Block Styles - New Layout */
.sw19b-sales-plea {
  background: #eee;
  padding: 30px 30px 40px 30px;

  .sw19s-std-wrap {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta {
    margin-right: 25px;
    flex: 2;

    h3 {
      margin: 0;
      font-size: 22px;
      font-weight: bold;
      color: #111111;
    }

    p {
      color: #111111;
      font-size: 18px;
    }
  }

  ul {
    padding-left: 20px;
  }

  li {
    color: #111111;
  }

  .cta-and-more {
    display: flex;
    margin-top: 20px;

    .more {
      border-left: 2px dotted #a1a1a1;
      padding-left: 20px;
      margin-left: 20px;
      height: 44px;

      a {
        line-height: 40px;
        color: #ff6200;
        font-weight: normal;
        text-decoration: none;

        &:hover {
          text-decoration: underline;
        }
      }
    }
  }

  .try-free {
    display: inline-block;

    p {
      font-family: Roboto, sans-serif;
      color: #a1a1a1;
      font-size: 12px;
      line-height: normal;
      text-align: center;
      margin: 10px 0 0 0;
    }
  }

  .sw19s-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0070c9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;

    &:hover {
      background: #005fa3;
    }
  }

  .extra {
    margin-left: 25px;
    flex: 1;

    h3 {
      color: #111111;
      margin: 0;
      font-size: 16px;
      font-weight: bold;
    }

    p {
      color: #111111;
      font-size: 16px;
      margin: 0;
      line-height: normal;
    }
  }

  .address {
    margin-top: 40px;

    a {
      color: inherit;
      text-decoration: none;
      font-weight: normal;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .sw19s-std-wrap {
      display: block;
      text-align: center;
    }

    .cta {
      margin-right: 0;

      h3 {
        font-size: 28px;
      }
    }

    ul {
      text-align: left;
    }

    .cta-and-more {
      justify-content: center;
    }

    .extra {
      margin-left: 0;

      h3 {
        margin-top: 23px;
      }
    }
  }
}
