.sec-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #2388c2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sec-def-banner {
  background: linear-gradient(120deg, #e0f4fc 0%, #edeaf8 100%);
  overflow: hidden;
}

.def-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block: 3rem;
  padding-block: 1.5rem;
}
@media (min-width: 992px) {
  .def-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-block: 0;
  }
}

.def-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .def-banner-content {
    width: 55%;
    padding-block: 2.5rem;
  }
}

.def-banner-heading {
  font-family: "Lato", sans-serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.15;
  color: #181818;
  letter-spacing: 0.01em;
  margin: 0;
}
@media (min-width: 768px) {
  .def-banner-heading {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .def-banner-heading {
    font-size: 3.4375rem;
  }
}

.page-article {
  padding-block: 5rem;
}

.page-content {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.85;
}
.page-content p {
  margin: 0 0 1.25rem;
}
.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.page-content ul li,
.page-content ol li {
  margin-bottom: 0.5rem;
}
.page-content strong,
.page-content b {
  font-weight: 600;
}
.page-content a {
  color: #2388c2;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover {
  color: #1a6e9e;
}
.page-content .post-callout {
  background-color: #eef9ff;
  border-left: 3px solid #2388c2;
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.page-content .post-callout p:last-child {
  margin: 0;
}

.page-content ul,
.page-content ol {
  margin: 1.25rem 0;
  padding-left: 1.5em;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.85;
}
.page-content ul {
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}
.page-content li::marker {
  color: #2388c2;
  font-weight: 600;
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content li > ul,
.page-content li > ol {
  margin: 0.75rem 0 0.75rem;
}
.page-content li > ul {
  list-style: circle;
}
.page-content li > ol {
  list-style: lower-alpha;
}
.page-content li > ul ul {
  list-style: square;
}
.page-content li > ol ol {
  list-style: lower-roman;
}
.page-content li strong {
  font-weight: 600;
  color: #1a1a2e;
}
.page-content li a {
  color: #2388c2;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content li a:hover {
  text-decoration: none;
}

.sec-trial-certs {
  background-color: #f4f8fb;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .sec-trial-certs {
    padding-block: 5rem;
  }
}

.trial-certs-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cert-intro {
  max-width: 72ch;
  margin-inline: auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.85;
}
.cert-intro p {
  margin: 0 0 1rem;
}
.cert-intro p:last-child {
  margin-bottom: 0;
}
.cert-intro strong {
  font-weight: 600;
  color: #2388c2;
}
.cert-intro h2,
.cert-intro h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #1a1a2e;
  margin: 0 0 1rem;
}
.cert-intro h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .cert-intro h2 {
    font-size: 2.5rem;
  }
}
.cert-intro h3 {
  font-size: 1.5rem;
}

.cont-certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cont-certs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .cont-certs {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.cert-single {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  transition: box-shadow all 0.2s ease, transform all 0.2s ease;
  cursor: zoom-in;
  text-decoration: none;
}
.cert-single:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.cert-single img {
  display: block;
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sec-trial-cta {
  background-color: #2388c2;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.sec-trial-cta::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 992px) {
  .sec-trial-cta {
    padding-block: 5rem;
  }
}

.trial-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.trial-cta-intro {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}
.trial-cta-intro p {
  margin: 0 0 1rem;
}
.trial-cta-intro p:last-child {
  margin-bottom: 0;
}
.trial-cta-intro strong {
  font-weight: 600;
  color: #ffffff;
}
.trial-cta-intro h2,
.trial-cta-intro h3 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.trial-cta-intro h2 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .trial-cta-intro h2 {
    font-size: 2.5rem;
  }
}
.trial-cta-intro h3 {
  font-size: 1.5rem;
}

.trial-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 60px;
  padding: 0 2.5rem;
  background-color: #27b63e;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color all 0.2s ease;
}
.trial-cta-btn svg {
  flex-shrink: 0;
}
.trial-cta-btn:hover {
  background-color: #1e9430;
  color: #ffffff;
}

/*# sourceMappingURL=default-page.css.map */
