.page-content-editor p{
    margin-bottom: 20px;
}

.page-content-editor .pricing-block .features {
    max-width: 100%;
}

.page-content-editor .pricing-block .features li{
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 0px;
    padding: 0 0;
    padding-left: 30px;
}
.page-content-editor .pricing-block .features li:before{
    color: #2E3192 !important;
    font-size: 20px;
}

    /* Messenger Button */
    #messenger-button {
      position: fixed;
      bottom: 60px;
      right: 20px;
      background-color: #0078FF;
      /* Messenger blue color */
      border-radius: 50%;
      width: 60px;
      height: 60px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.3s;
      z-index: 1000;
  }

  #messenger-button img {
      width: 30px;
      height: 30px;
  }

  #messenger-button:hover {
      background-color: #2E3192;
  }

  /* Chat Box */
  .chat-box {
      display: none;
      position: fixed;
      bottom: 130px;
      right: 20px;
      background-color: white;
      width: 345px;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .chat-box.show {
      opacity: 1;
      transform: translateY(0);
  }

  .chat-header {
      border-radius: 16px 0 16px 0;
      color: rgb(17, 17, 17);
      display: flex;
      align-items: center;
      padding: 20px;
      background: rgb(0, 53, 133);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .close {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 20px;
      height: 20px;
      opacity: 0.4;
      cursor: pointer;
      transition: all 0.3s ease 0s;
      outline: transparent;
      justify-content: center;
      align-items: center;
      display: flex !important;
  }

  .header-content {
      display: flex;
  }

  .msg-icon {
      display: block;
      flex-shrink: 0;
      overflow: inherit;
      cursor: pointer;
  }

  .msg-content {
      margin-left: 16px;
      margin-right: 16px;
      width: 100%;
      overflow: hidden;
  }

  .msg-title {
      font-size: 16px;
      font-weight: 700;
      line-height: 20px;
      max-height: 60px;
      -webkit-line-clamp: 3;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      color: rgb(255, 255, 255);
  }

  .user-icon {
      border-radius: 50%;
      width: 40px;
  }

  .chat-content {
      border-radius: 16px 0 16px 0;
      background: center center / cover no-repeat rgb(255, 255, 255);
  }

  .inner-chat-box {
      position: relative;
      padding: 10px 20px 12px;
      overflow: auto;
      max-height: 382px;
  }

  .chat-message {
      padding: 10px;
      background-color: #f1f1f1;
      border-radius: 0 0 10px 10px;
  }

  .chat-message-img {
      height: 100%;
      width: auto;
      margin-right: 10px;
  }

  .chat-message-greet {
      box-sizing: border-box;
      padding: 6px 14px;
      position: relative;
      transform-origin: center top;
      z-index: 2;
      color: #000;
      font-size: 15px;
      line-height: 1.39;
      max-width: calc(100% - 66px);
      border-radius: 16px;
      background-color: rgb(239, 239, 239);
      opacity: 1;
      hyphens: auto;
  }

  .chat-button {
      width: 60%;
      margin: auto;
  }

  .start-chat {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0078FF;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 10px;
      margin: 10px;
      cursor: pointer;
      width: calc(100% - 20px);
      text-decoration: none;
  }

  .start-chat img {
      margin-right: 8px;
  }

  .start-chat:hover {
      background-color: #0056b3;
      color: white;
  }

  /* Responsive adjustments */
  @media (max-width: 600px) {
      .chat-box {
          width: calc(100% - 40px);
          right: 10px;
          bottom: 130px;
      }

      .chat-message {
          padding: 10px;
      }

      .chat-button {
          width: 80%;
      }

      .start-chat {
          width: calc(100% - 40px);
      }
  }

  @media (max-width: 400px) {
      .chat-box {
          width: calc(100% - 20px);
          right: 10px;
          bottom: 130px;
      }

      .chat-message {
          padding: 10px;
      }

      .chat-button {
          width: 90%;
      }

      .start-chat {
          width: calc(100% - 20px);
      }
  }
