.elementor-114 .elementor-element.elementor-element-899c764{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d3536e8 */:root {
  --pv-navy: #00205b;
  --pv-navy-deep: #001845;
  --pv-lime: #b5d334;
  --pv-teal: #00838f;
  --pv-white: #ffffff;
  --faq-page-bg: #f6f7f2;
  --faq-page-text: #40506d;
  --container-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--pv-navy);
  background: var(--faq-page-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.faq-page {
  padding: 88px 24px 96px;
  background:
    radial-gradient(circle at top right, rgba(181, 211, 52, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0, 131, 143, 0.06), transparent 26%),
    var(--faq-page-bg);
}

.faq-page__container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.faq-page__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.faq-page__eyebrow {
  margin: 0 0 10px;
  color: var(--pv-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-page__title {
  margin: 0 0 14px;
  color: var(--pv-navy);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
}

.faq-page__subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: var(--faq-page-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.faq-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.faq-page__tab {
  padding: 10px 16px;
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-radius: 999px;
  background: var(--pv-white);
  color: var(--pv-navy);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.faq-page__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 211, 52, 0.5);
}

.faq-page__tab.is-active {
  background: var(--pv-navy);
  border-color: var(--pv-navy);
  color: var(--pv-white);
}

.faq-page__panels {
  min-height: 180px;
}

.faq-page__panel[hidden] {
  display: none;
}

.faq-page__list {
  display: grid;
  gap: 12px;
}

.faq-page__item {
  border: 1px solid rgba(0, 32, 91, 0.1);
  border-radius: 14px;
  background: var(--pv-white);
  box-shadow: 0 10px 24px rgba(0, 32, 91, 0.04);
  overflow: hidden;
}

.faq-page__question {
  position: relative;
  list-style: none;
  padding: 18px 56px 18px 20px;
  color: var(--pv-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.faq-page__question::-webkit-details-marker {
  display: none;
}

.faq-page__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 32, 91, 0.05);
  color: var(--pv-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-page__item[open] .faq-page__question::after {
  content: "-";
  background: rgba(181, 211, 52, 0.32);
}

.faq-page__answer {
  padding: 0 20px 18px;
}

.faq-page__answer p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 32, 91, 0.08);
  color: var(--faq-page-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .faq-page {
    padding: 64px 18px 72px;
  }

  .faq-page__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .faq-page__title {
    font-size: 34px;
  }

  .faq-page__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}/* End custom CSS */