/* START: RESET CSS for Summernote Content */
.summernote-content * {
  margin: initial;
  padding: initial;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}

.summernote-content article,
.summernote-content aside,
.summernote-content details,
.summernote-content figcaption,
.summernote-content figure,
.summernote-content footer,
.summernote-content header,
.summernote-content hgroup,
.summernote-content menu,
.summernote-content nav,
.summernote-content section {
  display: block;
}

.summernote-content i,
.summernote-content span,
.summernote-content a {
  display: inline;
}

/* END: RESET CSS for Summernote Content */

/* START: UL, OL style for summernote content */
.summernote-content ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.summernote-content ul li {
  list-style: disc;
}

.summernote-content ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.summernote-content ol li {
  list-style-type: decimal;
}

/* END: UL, OL style for summernote content */

/* START: TABLE style for summernote content */
.summernote-content .table td,
.summernote-content .table th {
  font-size: 14px;
  border-top-width: 0px;
  border-bottom: 1px solid;
  border: 1px solid #ebedf2 !important;
  padding: 0 25px !important;
  height: 60px;
  vertical-align: middle !important;
  color: #000;
}

/* END: TABLE style for summernote content */

/* START: BLOCKQUOTE style for summernote content */
.summernote-content blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

/* END: BLOCKQUOTE style for summernote content */

/* START: PRE, CODE style for summernote content */
.summernote-content code,
.summernote-content kbd,
.summernote-content pre,
.summernote-content samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.summernote-content pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

 .pricing-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px;
  }

  .pricing-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .card-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .card-features li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
  }

  .card-features li:last-child {
    border-bottom: none;
  }

  .platinum { border-top: 5px solid #6f42c1; }
  .gold { border-top: 5px solid #d4a017; }
  .silver { border-top: 5px solid #6c757d; }

  .btn-contact {
    text-align: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: #6f42c1;
    transition: 0.3s;
  }

  .btn-contact:hover {
    background: #56339d;
  }

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

/* END: PRE, CODE style for summernote content */
