@charset "UTF-8";

.faq_header_section {
  position: relative;
  overflow: hidden;
  padding: 300px 0 110px;
  background-image: url("faq_header_image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Overlay */
  /* Content */
  /* Title */
  /* Description */
  /* Button */
}

.faq_header_section__faq_header_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(#1f1fff, #1f1fff33);
  z-index: 1;
}

.faq_header_section__faq_header_content {
  position: relative;
  z-index: 2;
}

.faq_header_section__faq_header_title {
  color: #ffffff;
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 22px;
}

.faq_header_section__faq_header_desc {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
}

.faq_header_section__faq_header_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 34px;
  border-radius: 50px;
  border: 5px solid #FFFFFF14;
  background: #ffffff;
  color: #00008B;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .faq_header_section {
    padding: 130px 0 100px;
  }

  .faq_header_section__faq_header_title {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .faq_header_section {
    padding: 120px 0 90px;
  }

  .faq_header_section__faq_header_badge {
    padding: 8px 18px;
    font-size: 13px;
  }

  .faq_header_section__faq_header_title {
    font-size: 40px;
  }

  .faq_header_section__faq_header_desc {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .faq_header_section {
    padding: 110px 0 80px;
  }

  .faq_header_section__faq_header_title {
    font-size: 32px;
  }

  .faq_header_section__faq_header_desc {
    font-size: 15px;
  }

  .faq_header_section__faq_header_btn {
    width: 50%;
  }
}

.faq_section {
  padding: 100px 0;
  background: #f8faff;
}

@media (max-width: 991px) {
  .faq_section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .faq_section {
    padding: 60px 0;
  }
}

.faq_section .faq_accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq_section .faq_item {
  border: none;
  border-bottom: 1px solid #848484;
  background: transparent;
}

.faq_section .faq_item:first-child {
  border-top: none;
}

.faq_section .faq_button {
  padding: 28px 60px 28px 0;
  background: transparent;
  box-shadow: none;
  border: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

@media (max-width: 767px) {
  .faq_section .faq_button {
    font-size: 18px;
    padding: 22px 50px 22px 0;
  }
}

@media (max-width: 575px) {
  .faq_section .faq_button {
    font-size: 16px;
  }
}

.faq_section .faq_button:not(.collapsed) {
  background: transparent;
  color: #000;
  box-shadow: none;
}

.faq_section .faq_button:not(.collapsed)::after {
  content: "-";
  transform: rotate(0deg);
}

.faq_section .faq_button:focus {
  box-shadow: none;
}

.faq_section .faq_button::after {
  content: "+";
  background-image: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  font-size: 50px;
  font-weight: 300;
  color: black;
  background: #ffffff14;
  transition: all 0.3s ease;
}

@media (max-width: 575px) {
  .faq_section .faq_button::after {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.faq_section .faq_body {
  padding: 0 70px 28px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 767px) {
  .faq_section .faq_body {
    padding: 0 0 22px;
    font-size: 15px;
  }
}

.faq_contact_us {
  padding: 100px 0;
  background: #EFEFFF;
  /* ✅ 3 cards in one row */
  /* RESPONSIVE */
}

.faq_contact_us__contact_us_top {
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq_contact_us__contact_us_badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid #B2B2B24D;
  background: #DADADA24;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.faq_contact_us__contact_us_title {
  font-size: 46px;
}

.faq_contact_us__contact_us_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faq_contact_us__contact_us_card {
  background: #fff;
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq_contact_us__contact_us_card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.faq_contact_us__contact_us_left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq_contact_us__contact_us_icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #d0e0f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.faq_contact_us__contact_us_content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.faq_contact_us__contact_us_content p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.faq_contact_us__contact_us_arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.faq_contact_us__contact_us_arrow svg {
  color: #1f1fff;
}

@media (max-width: 991px) {
  .faq_contact_us__contact_us_title {
    font-size: 38px;
  }

  .faq_contact_us__contact_us_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .faq_contact_us__contact_us_title {
    font-size: 30px;
  }

  .faq_contact_us__contact_us_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .faq_contact_us {
    padding: 60px 0;
  }

  .faq_contact_us__contact_us_title {
    font-size: 26px;
  }

  .faq_contact_us__contact_us_card {
    padding: 20px;
  }
}
