/* Scope box-sizing/img resets to this content block only,
    since the shared common CSS may already define global resets */
.bp-content,
.bp-content * {
  box-sizing: border-box;
}

/* ---------- BUTTONS (used in hero only) ---------- */
.bp-content .btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
}
.bp-content .btn:hover {
  transform: translateY(-1px);
}
.bp-content .btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.bp-content .btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 16px rgba(245, 179, 1, 0.35);
}
.bp-content .btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.bp-content .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- ARTICLE SECTIONS ---------- */
.bp-content .article {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
  font-size: 18px;
}
.bp-content .article > .intro {
  font-size: 18px;
  color: var(--muted);
}
.bp-content .article h2 {
  font-size: 32px;
  margin-top: 44px;
  padding-top: 16px;
  border-top: 3px solid var(--navy-tint-2);
}
.bp-content .article h3 {
  font-size: 19px;
}
.bp-content .article ol {
  padding-left: 1.3em;
  margin: 16px 0;
  list-style-type: disc;
}
.bp-content .article li {
  margin-bottom: 8px;
}
.bp-content .article .callout {
  background: var(--navy-tint);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 22px 0;
  color: var(--navy-dark);
  font-size: 18px;
}
.bp-content .article strong {
  color: var(--navy);
}
.bp-content .article > p {
  font-size: 16px;
}

.bp-content .section-divider {
  height: 1px;
  background: var(--navy-tint-2);
  max-width: 820px;
  margin: 0 auto;
}

/* payment table-ish list */
.bp-content .pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.bp-content .pay-card {
  background: var(--navy-tint);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--navy-tint-2);
}
.bp-content .pay-card h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}
.bp-content .pay-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- FAQ ACCORDION ---------- */
.bp-content .faq-section {
  background: var(--navy-tint);
  padding: 60px 20px;
}
.bp-content .faq-section .wrap {
  max-width: 820px;
}
.bp-content .faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 6px;
}
.bp-content .faq-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 15px;
}
.bp-content .accordion-item {
  background: var(--white);
  border: 1px solid var(--navy-tint-2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.bp-content .accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bp-content .accordion-header .icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.bp-content .accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy-dark);
}
.bp-content .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.bp-content .accordion-item.active .accordion-panel {
    max-height: 400px; /* large enough for typical FAQ answer text */
  }
.bp-content .accordion-panel-inner {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .bp-content .hero .wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .bp-content .hero-image {
    order: -1;
  }
}

@media (max-width: 760px) {
  .bp-content .article {
    padding: 40px 18px;
  }
  .bp-content .faq-section {
    padding: 40px 18px;
  }
}

@media (max-width: 480px) {
  .bp-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bp-content .btn {
    width: 100%;
  }
  .bp-content .pay-grid {
    grid-template-columns: 1fr;
  }
}
.footer {
  color: #fff;
  padding-block: 30px;
  background-color: #11236b;
}
.footer__wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -75px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    gap: 10px;
    margin-left: 0;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__card {
  padding: 30px;
  border-radius: 20px;
  background-color: #25387c;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer__image {
  height: 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer__image--mr {
  margin-right: 10px;
}
.footer__image:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.footer__logo {
  width: 160px;
  margin-block: -20px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 130px;
  }
}
.footer__head-text {
  text-align: center;
  font-size: 1.4rem;
}
.footer__socials {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  border-radius: 50%;
  position: relative;
}
.footer__social-link:nth-child(1) {
  background: #1877f2;
}
.footer__social-link:nth-child(2) {
  background: #4267b2;
}
.footer__social-link:nth-child(3) {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #d62976,
    #962fbf
  );
}
.footer__social-link:nth-child(4) {
  background: #000;
}
.footer__social-link:nth-child(5) {
  background: #08c;
}
.footer__social-link::before {
  content: "";
  width: 45px;
  height: 45px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #3b4f97;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}
.footer__social-link:hover::before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.footer__cards {
  gap: 20px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1290px) {
  .footer__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .footer__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__label {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__links {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__links--col {
  gap: 10px 2%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.footer__links--col .footer__link {
  width: 49%;
}
.footer__link {
  font-size: 1.4rem;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.footer__link:hover {
  color: #edc800;
}
.footer .link {
  font-weight: 700;
  color: #edc800;
}