* {
  box-sizing: border-box;
}

:root {
  --blue: #0878ee;
  --dark-blue: #062c4c;
  --navy: #071d33;
  --text: #111c2d;
  --muted: #34455b;
  --border: #dfe3e8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 81px;
  background: #fff;
  border-bottom: 1px solid #e8edf2;
  position: relative;
  z-index: 20;
}

.header-inner {
  width: min(100%, 1070px);
  height: 100%;
  margin: 0 auto;
  padding: 0 27px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  width: 175px;
  flex: 0 0 175px;
  color: #101b2d;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.3px;
}

.logo span {
  color: var(--blue);
}

.logo b {
  font-weight: 800;
}

.logo small {
  display: block;
  margin-top: 7px;
  color: #172336;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 21px;
  flex: 1;
}

.main-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  color: #111827;
  font-size: 12px;
  font-weight: 500;
}

.main-nav a i {
  font-size: 7px;
  margin-left: 7px;
}

.main-nav a.active {
  font-weight: 700;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--blue);
}

.header-support {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 195px;
}

.header-support > i {
  color: var(--dark-blue);
  font-size: 29px;
}

.header-support span,
.header-support a,
.header-support small {
  display: block;
}

.header-support span {
  font-size: 11px;
}

.header-support a {
    color: #0874dc;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
}
.header-support small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-blue);
}
.header-inner .menu_support {
    display: none;
}

/* HERO */
.hero {
  height: 319px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #d9f1ff 0%, #ccecff 54%, #a9dcf7 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 45px;
}

.hero h1 {
  margin: 0;
  color: #101a2c;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.8px;
  font-weight: 800;
}

.hero h1 span {
  color: #0878ee;
}

.hero-lead {
  margin: 10px 0 13px;
  font-size: 16px;
  font-weight: 500;
}

.hero-description {
  margin: 0;
  font-size: 12.5px;
}

.hero-phone {
  width: 324px;
  height: 57px;
  margin: 14px auto 8px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #0878ee;
  color: #fff;
  box-shadow: 0 5px 14px rgba(0, 106, 230, .18);
}

.hero-phone i {
  font-size: 23px;
}

.hero-phone span {
  font-size: 23px;
  font-weight: 800;
}

.hero-hours {
  font-size: 11px;
  font-weight: 500;
}

.hero-features {
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-features > div {
  min-width: 137px;
  padding: 0 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border-right: 1px solid rgba(20, 75, 120, .22);
}

.hero-features > div:last-child {
  border-right: 0;
}

.hero-features i {
  color: #0878ee;
  font-size: 27px;
}

.hero-features span {
  font-size: 11px;
}

/* CSS waves to closely reproduce the supplied artwork */
.hero-wave {
  position: absolute;
  left: -7%;
  width: 114%;
  pointer-events: none;
}

.hero-wave-one {
  height: 185px;
  bottom: -73px;
  background: rgba(255,255,255,.56);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  transform: rotate(4deg);
  box-shadow: 0 -16px 0 rgba(150,211,244,.35);
}

.hero-wave-two {
  height: 145px;
  right: -10%;
  bottom: -90px;
  left: auto;
  background: rgba(255,255,255,.33);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
  transform: rotate(-7deg);
}

/* CONTENT */
.content-wrap {
  width: min(100%, 974px);
  margin: 0 auto;
}

.disclaimer-wrap {
  padding: 6px 0 0;
}

.disclaimer {
  min-height: 61px;
  border-radius: 7px;
  background: #edf4ff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 22px;
}

.info-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0878ee;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
}

.disclaimer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.topics {
  padding-top: 18px;
}

.section-intro {
  text-align: center;
}

.section-intro h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -.7px;
  line-height: 1.25;
  font-weight: 800;
}

.heading-line {
  width: 48px;
  height: 3px;
  margin: 9px auto 10px;
  display: block;
  border-radius: 4px;
  background: #0878ee;
}

.section-intro p {
  margin: 0 0 18px;
  font-size: 14px;
}

/* TOPIC CARDS */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.topic-card {
  min-height: 120px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 83px 1fr 15px;
  align-items: center;
  gap: 8px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.topic-card:hover {
  transform: translateY(-2px);
  border-color: #b7d7fa;
  box-shadow: 0 5px 14px rgba(20, 61, 98, .09);
}

.topic-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 0 auto;
}
.topic-icon.icon-prime img {
    width: 100%;
}
.icon-orange {
  background: #fff2df;
  color: #d78925;
}

.icon-green {
  background: #dff9ef;
  color: #008b69;
}

.icon-prime {
  background: #e9f4ff;
  color: #0878ee;
  position: relative;
}

.icon-prime span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.8px;
}

.icon-prime i {
  position: absolute;
  bottom: 14px;
  font-size: 17px;
  transform: rotate(6deg);
}

.icon-lavender {
  background: #edf0ff;
  color: #20395c;
}

.icon-yellow {
  background: #fff6dc;
  color: #efa315;
}

.icon-pink {
  background: #fde9ee;
  color: #172c40;
}

.icon-gray {
  background: #edf4fa;
  color: #707070;
}

.icon-access {
  background: #e7f0ff;
  color: #0878ee;
}

.icon-question {
  background: #edf5ff;
  color: #0878ee;
}

.icon-warning {
  background: #fde7ee;
  color: #e81d5b;
}

.topic-copy {
  min-width: 0;
}

.topic-copy h3 {
  margin: 0 0 7px;
  color: #111a29;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.topic-copy p {
  margin: 0;
  color: #2e4056;
  font-size: 11px;
  line-height: 1.5;
}

.arrow {
  color: #0878ee;
  font-size: 14px;
}

/* Faq Section */
.faq-section {
    background: #fff;
    margin: 20px 0;
}
.faq-section .faq-title {
    color: #111827;
    margin: 0;
    font-size: 25px;
    letter-spacing: -.7px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
}
.faq-section .view-all{
    color:#B00000;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
}
.faq-section .view-all i{
    margin-left:8px;
}
/* Card */
.faq-section .faq-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 15px;
    height: 100%;
}

/* Category */
.faq-section .faq-category{
    display:flex;
    align-items:center;
    gap:12px;
    color:#B00000;
    font-weight:700;
    font-size:22px;
    margin-bottom:20px;
}
.faq-section .faq-category i{
    font-size:28px;
}

/* Accordion */
.faq-section .custom-accordion .accordion-item{
    border:none;
    border-bottom:1px solid #f0f0f0;
    border-radius:0;
}
.faq-section .custom-accordion .accordion-item:last-child{
    border-bottom:none;
}
.faq-section .custom-accordion .accordion-button {
    background: #fff;
    padding: 10px 0px;
    box-shadow: none;
    color: #222;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-items: center;
}
.faq-section .custom-accordion .accordion-button:not(.collapsed){
    color:#0878ee;
    background:#fff;
}
/* Number Circle */
.faq-section .custom-accordion .accordion-button {
    background: #fff;
    padding: 6px 0px;
    box-shadow: none;
    color: #222;
    font-weight: 600;
    font-size: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-items: center;
}

/* Plus / Minus */
.faq-section .accordion-button::after{
    content:"+";
    background:none !important;
    font-size:24px;
    font-weight:400;
    color:#0878ee;
    transform:none;
    margin-left:auto;
    width:auto;
    height:auto;
}
.faq-section .accordion-button:not(.collapsed)::after{
    content:"−";
}
.faq-section .accordion-body {
    padding: 0 0 6px;
    line-height: 1.7;
    color: #2e4056;
    font-size: 11px;
}
/* Faq Section */
/*  */
/* CTA */
.bottom-cta {
  min-height: 94px;
  margin: 18px 10px 13px;
  padding: 13px 35px;
  background: #e8f6ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0878ee;
  font-size: 27px;
}

.cta-info h2 {
  margin: 0 0 3px;
  font-size: 17px;
  font-weight: 800;
}

.cta-info p {
  margin: 0;
  font-size: 12px;
}

.cta-phone {
  width: 337px;
  height: 69px;
  background: #0878ee;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.cta-phone > i {
  font-size: 25px;
}

.cta-phone strong,
.cta-phone span {
  display: block;
}

.cta-phone strong {
  font-size: 20px;
  font-weight: 800;
}

.cta-phone span {
  margin-top: 3px;
  text-align: center;
  font-size: 10px;
}

/* FOOTER */
.site-footer {
  background: #06223c;
  color: #fff;
  padding: 27px 0 14px;
}

.footer-inner {
  width: min(100%, 930px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.footer-logo {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.8px;
}

.footer-logo span {
  color: #0878ee;
}

.footer-logo b {
  color: #fff;
}

.footer-brand > small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
}

.footer-brand p {
    max-width: 190px;
    margin: 10px 0 10px;
    font-size: 8px;
    line-height: 1.5;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #173c5b;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-column h3 {
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 800;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #f0f5fa;
  font-size: 8px;
  line-height: 1;
}

.footer-column a:hover {
  color: #48a5ff;
}

.important {
  padding-left: 2px;
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 28px;
}

.important p {
  line-height: 1.55;
}

.trustpilot {
    margin-top: 2px;
}

.trustpilot > div:first-child {
  font-size: 12px;
}

.tp-star {
  color: #00b67a;
  font-size: 18px;
}

.tp-boxes {
  display: flex;
  gap: 2px;
  margin: 5px 0;
}

.tp-boxes span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: #00b67a;
  color: #fff;
  font-size: 13px;
}

.trustpilot small {
  font-size: 10px;
}

.footer-bottom {
    width: min(100%, 930px);
    margin: 10px auto 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.22);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 8px;
}

.footer-bottom nav {
  display: flex;
  gap: 14px;
}

.footer-bottom nav a {
  position: relative;
}

.footer-bottom nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -9px;
  opacity: .5;
}

/* FAQ - Desktop Only */
@media (min-width: 901px) {
    .faq-section > .container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* TABLET */
@media (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
    gap: 15px;
  }

  .logo {
    width: 145px;
    flex-basis: 145px;
  }

  .main-nav {
    gap: 11px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .header-support {
    flex-basis: 155px;
  }

  .header-support a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .content-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topic-card {
    grid-template-columns: 70px 1fr 13px;
    padding: 10px;
  }

  .topic-icon {
    width: 63px;
    height: 63px;
    font-size: 30px;
  }

  .footer-inner,
  .footer-bottom {
    width: auto;
    margin-left: 25px;
    margin-right: 25px;
  }
}


/* MOBILE */
@media (max-width: 700px) {
  .site-header {
    height: auto;
    min-height: 68px;
  }

  .header-inner .menu_support {
    display: flex;
    align-items: center;
    margin-right: 16px;
  }

  .header-support {
    gap: 8px;
    flex: 0 0 190px;
  }

  .header-inner .menu_support .header-support {
    margin-top: 0;
    border-top: none;
    padding: 0;
    display: inline-flex;
}
  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    padding: 11px 18px;
    gap: 0;
    justify-content: space-between;
  }

  .logo {
    width: auto;
    flex-basis: auto;
  }

  .mobile-menu-btn {
    display: block;
  }
  .header-support a {
    font-size: 16px;
  }
  .header-support {
    order: 3;
    width: 100%;
    flex-basis: auto;
    margin-top: 10px;
    padding: 9px 0 2px;
    border-top: 1px solid #edf0f3;
    justify-content: center;
    display: none;
  }

.main-nav {
    order: 4;
    width: 100%;
    height: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: height .25s ease;
}

  .main-nav.open {
    height: 280px;
     display: flex;
  }

  .main-nav a {
    height: 46px;
    border-bottom: 1px solid #edf0f3;
  }

  .main-nav a.active::after {
    bottom: 0;
  }

  .hero {
    height: auto;
    min-height: 310px;
  }
  .hero-content {
    padding: 30px 18px 16px;
  }

 .hero h1 {
    font-size: clamp(31px, 9vw, 42px);
    letter-spacing: -1px;
    font-size: 28px;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-description {
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-phone {
    width: min(100%, 330px);
    height: 55px;
  }

  .hero-phone span {
    font-size: 23px;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 12px 0;
  }

  .hero-features > div {
    min-width: 21.333%;
    padding: 0 9px;
    gap: 4px;
  }

  .hero-features span {
    font-size: 9px;
  }

  .hero-features i {
    font-size: 21px;
  }

  .disclaimer-wrap {
    padding-top: 8px;
  }

  .disclaimer {
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
  }

  .disclaimer p {
    font-size: 8px;
  }

  .topics {
    padding-top: 22px;
  }

  .section-intro h2 {
    font-size: 21px;
  }

  .section-intro p {
    font-size: 12px;
    line-height: 1.5;
  }

  .topic-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .topic-card {
    min-height: 100px;
    grid-template-columns: 72px 1fr 15px;
  }

  .topic-icon {
    width: 65px;
    height: 65px;
  }

  .topic-copy h3 {
    font-size: 12px;
  }

  .topic-copy p {
    font-size: 10px;
  }

  .bottom-cta {
    margin: 17px 0;
    padding: 18px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .cta-info {
    gap: 12px;
  }

  .cta-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    font-size: 22px;
  }

  .cta-info h2 {
    font-size: 14px;
  }

  .cta-info p {
    font-size: 10px;
  }

  .cta-phone {
    width: auto;
    height: auto;
    padding: 12px;
  }

  .cta-phone strong {
    font-size: 20px;
  }
  .faq-section .faq_grid {
    margin-top: 12px;
  }
  .faq-section .faq-card {
    border-radius: 10px;
    padding: 7px 15px;
  }
  .faq-section .accordion-body {
    font-size: 10px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-brand {
    border-right: 0;
    padding-right: 0;
  }

  .important {
    border-left: 0;
    padding-left: 0;
  }
  .site-footer {
    padding: 15px 0 15px;
  }
  .footer-bottom {
    margin-left: 20px;
    margin-right: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.6;
    gap: 6px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
 .logo {
    width: 100px;
    flex-basis: auto;
    font-size: 20px;
  }
  .header-inner .menu_support {
    margin-right: 0px;
  }
  .header-support a {
    font-size: 15px;
  }
  .header-inner .menu_support .header-support {
      margin-top: 0;
      display: inline-flex;
  }
  .logo small {
    margin-top: 1px;
    font-size: 6px;
  }
  .header-support {
    justify-content: flex-start;
    gap: 6px;
  }
  .hero-features {
    gap: 13px 0;
    margin-top: 8px;
  }
  .hero-features > div {
    padding: 0 6px;
  }
  .hero-features i {
    font-size: 12px;
  }
  /* .hero-features > div {
    min-width: 100%;
    border-right: 0;
  } */

  .hero {
    min-height: 274px;
  }
  .hero-content {
    padding: 20px 18px 16px;
  }
  .hero h1 {
    font-size: 26px;
  }

  .footer-inner {
    grid-template-columns: -1fr;
  }
  .socials a {
    width: 19px;
    height: 19px;
    font-size: 7px;
  }
  .socials a i {
    margin-top: 0;
  }
}
