#faq-header {
  padding: 70px 0 80px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #faq-header {
    padding: 56px 0 64px;
  }
}
@media screen and (max-width: 640px) {
  #faq-header {
    padding: 44px 0 50px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header {
    padding: 38px 0 44px;
  }
}
#faq-header .faq-search {
  max-width: 780px;
  margin: 0 auto;
  padding: 26px;
  background: rgba(55, 78, 162, 0.045);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  #faq-header .faq-search {
    max-width: 100%;
    padding: 22px;
  }
}
@media screen and (max-width: 640px) {
  #faq-header .faq-search {
    padding: 18px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header .faq-search {
    padding: 15px;
    border-radius: 8px;
  }
}
#faq-header .search-label {
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #faq-header .search-label {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
#faq-header .search-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-header .search-form {
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header .search-form {
    flex-direction: column;
    gap: 10px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}
#faq-header .search-form:focus-within {
  border-color: #374ea2;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}
@media screen and (max-width: 480px) {
  #faq-header .search-form:focus-within {
    box-shadow: none;
  }
}
#faq-header .search-form input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  color: #333;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #faq-header .search-form input {
    height: 50px;
    padding: 0 14px;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header .search-form input {
    flex: 0 0 auto;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
  }
}
@media screen and (max-width: 360px) {
  #faq-header .search-form input {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header .search-form input:focus {
    border-color: #374ea2;
    box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
  }
}
#faq-header .search-form input::placeholder {
  color: #9e9e9f;
}
#faq-header .search-form input::-webkit-search-cancel-button {
  cursor: pointer;
}
#faq-header .search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 145px;
  padding: 0 22px;
  color: #fff;
  background: #da2128;
  border: 0;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-header .search-form button {
    min-width: 120px;
    padding: 0 16px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  #faq-header .search-form button {
    width: 100%;
    min-height: 48px;
    border-radius: 6px;
  }
}
#faq-header .search-form button i {
  font-size: 15px;
}
#faq-header .search-form button:hover {
  background: #fa0103;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#faq-header .search-form button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}

#faq-categories {
  background-color: rgba(55, 78, 162, 0.035);
}
#faq-categories .category-nav {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #faq-categories .category-nav {
    min-width: 0;
  }
}
#faq-categories .category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  #faq-categories .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #faq-categories .category-list {
    gap: 16px;
  }
}
@media screen and (max-width: 640px) {
  #faq-categories .category-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
#faq-categories .category-list li {
  margin: 0;
}
@media screen and (max-width: 640px) {
  #faq-categories .category-list li {
    min-width: 0;
  }
}
#faq-categories .category-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px 20px;
  color: #333;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  #faq-categories .category-list li a {
    min-height: 76px;
    padding: 16px 18px;
  }
}
@media screen and (max-width: 640px) {
  #faq-categories .category-list li a {
    gap: 12px;
    min-height: 68px;
    padding: 13px 15px;
    border-radius: 8px;
  }
}
#faq-categories .category-list li a i {
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 8px;
  font-size: 19px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-categories .category-list li a i {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}
#faq-categories .category-list li a span {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
@media screen and (max-width: 640px) {
  #faq-categories .category-list li a span {
    min-width: 0;
    font-size: 14px;
  }
}
#faq-categories .category-list li a:hover {
  color: #374ea2;
  border-color: rgba(55, 78, 162, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
#faq-categories .category-list li a:hover i {
  color: #fff;
  background: #374ea2;
  transform: translateY(-1px);
}
#faq-categories .category-list li a:focus-visible {
  outline: 0;
  border-color: #374ea2;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}

#faq-topics {
  padding: 80px 0;
  background: rgba(55, 78, 162, 0.035);
}
@media screen and (max-width: 768px) {
  #faq-topics {
    padding: 64px 0;
  }
}
@media screen and (max-width: 640px) {
  #faq-topics {
    padding: 50px 0;
  }
}
#faq-topics .topic-list {
  gap: 24px;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  #faq-topics .topic-list {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #faq-topics .topic-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-list {
    gap: 18px;
  }
}
#faq-topics .topic-group {
  overflow: hidden;
  padding-bottom: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-group {
    border-radius: 12px;
  }
}
#faq-topics .topic-group:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: rgba(55, 78, 162, 0.25);
}
#faq-topics .topic-group:hover .topic-heading .topic-icon {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
}
#faq-topics .topic-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(55, 78, 162, 0.045);
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #faq-topics .topic-heading {
    padding: 22px;
  }
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-heading {
    gap: 12px;
    padding: 18px 16px;
  }
}
#faq-topics .topic-content {
  flex: 1;
  min-width: 0;
}
#faq-topics .topic-content h3 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-content h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
}
#faq-topics .topic-content p {
  margin: 0;
  color: #515152;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}
#faq-topics .topic-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  font-size: 20px;
  color: #374ea2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(55, 78, 162, 0.16);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
#faq-topics .topic-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  #faq-topics .topic-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 17px;
    border-radius: 8px;
  }
}
#faq-topics .faq-list {
  padding-block: 10px;
  padding-inline: 24px;
}
@media screen and (max-width: 768px) {
  #faq-topics .faq-list {
    padding-inline: 22px;
  }
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-list {
    padding-block: 7px;
    padding-inline: 16px;
  }
}
#faq-topics .faq-item {
  border-bottom: 1px solid #e5e7eb;
}
#faq-topics .faq-item:last-child {
  border-bottom: 0;
}
#faq-topics .faq-question {
  width: 100%;
  cursor: pointer;
  min-height: 60px;
  padding-block: 15px;
  color: #333;
  text-align: justify;
  font-family: "Inter", sans-serif;
  background-color: transparent;
  transition: color 0.3s ease;
}
#faq-topics .faq-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#faq-topics .faq-question {
  gap: 18px;
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-question {
    gap: 12px;
    min-height: 56px;
    padding-block: 13px;
    text-align: left;
  }
}
#faq-topics .faq-question span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-question span {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
  }
}
#faq-topics .faq-question[aria-expanded=true] {
  color: #374ea2;
}
#faq-topics .faq-question[aria-expanded=true] i {
  color: #fff;
  background: #374ea2;
  transform: rotate(180deg);
}
#faq-topics .faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 100rem;
  font-size: 17px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
#faq-topics .faq-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
    font-size: 15px;
  }
}
#faq-topics .faq-answer {
  overflow: hidden;
  padding: 0;
  opacity: 0;
  max-height: 0;
  transform: translateY(-6px);
  transition: all 0.3s linear;
}
#faq-topics .faq-answer[data-open=true] {
  opacity: 1;
  max-height: 600px;
  padding: 0 0 20px;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  #faq-topics .faq-answer[data-open=true] {
    max-height: 750px;
  }
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-answer[data-open=true] {
    max-height: 1000px;
    padding-bottom: 17px;
  }
}
#faq-topics .faq-answer p {
  font-size: 14px;
  margin: 0 0 12px;
  color: #515152;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 640px) {
  #faq-topics .faq-answer p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
  }
}
#faq-topics .faq-answer p:last-child {
  margin-bottom: 0;
}

#faq-solutions {
  background-color: #fff;
}
#faq-solutions .solution-list {
  gap: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  #faq-solutions .solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #faq-solutions .solution-list {
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}
#faq-solutions .solution-item {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-item {
    border-radius: 12px;
  }
}
#faq-solutions .solution-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(55, 78, 162, 0.28);
}
#faq-solutions .solution-item:hover .solution-icon {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
}
#faq-solutions .solution-item:hover .solution-heading h3 a {
  color: #374ea2;
}
#faq-solutions .solution-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 22px 18px;
  background: rgba(55, 78, 162, 0.035);
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #faq-solutions .solution-heading {
    padding: 20px 20px 17px;
  }
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-heading {
    gap: 12px;
    padding: 18px 17px 15px;
  }
}
#faq-solutions .solution-heading .solution-icon {
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #374ea2;
  background: #fff;
  border: 1px solid rgba(55, 78, 162, 0.16);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-heading .solution-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}
#faq-solutions .solution-heading .solution-icon i {
  font-size: 19px;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-heading .solution-icon i {
    font-size: 17px;
  }
}
#faq-solutions .solution-heading > div {
  flex: 1;
  min-width: 0;
}
#faq-solutions .solution-heading h3 {
  margin: 0 0 7px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-heading h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }
}
#faq-solutions .solution-heading h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
#faq-solutions .solution-heading h3 a:hover {
  color: #374ea2;
}
#faq-solutions .solution-heading h3 a:focus-visible {
  outline: 0;
  color: #374ea2;
}
#faq-solutions .solution-heading p {
  margin: 0;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-heading p {
    font-size: 13px;
    line-height: 1.6;
  }
}
#faq-solutions .solution-questions {
  flex: 1;
  padding: 20px 22px;
}
@media screen and (max-width: 768px) {
  #faq-solutions .solution-questions {
    padding: 18px 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-questions {
    padding: 17px;
  }
}
#faq-solutions .solution-questions h4 {
  margin: 0 0 12px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-questions h4 {
    margin-bottom: 10px;
    font-size: 13px;
  }
}
#faq-solutions .solution-questions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#faq-solutions .solution-questions ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 17px;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-questions ul li {
    margin-bottom: 8px;
    padding-left: 15px;
  }
}
#faq-solutions .solution-questions ul li:last-child {
  margin-bottom: 0;
}
#faq-solutions .solution-questions ul li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #374ea2;
  border-radius: 100rem;
  content: "";
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-questions ul li::before {
    top: 8px;
    width: 4px;
    height: 4px;
  }
}
#faq-solutions .solution-questions ul li a {
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-questions ul li a {
    font-size: 13px;
    line-height: 1.55;
  }
}
#faq-solutions .solution-questions ul li a:hover {
  color: #374ea2;
}
#faq-solutions .solution-questions ul li a:focus-visible {
  outline: 0;
  color: #374ea2;
}
#faq-solutions .solution-footer {
  padding: 16px 22px 20px;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #faq-solutions .solution-footer {
    padding: 15px 20px 18px;
  }
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-footer {
    padding: 14px 17px 17px;
  }
}
#faq-solutions .solution-footer .solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-solutions .solution-footer .solution-link {
    font-size: 13px;
  }
}
#faq-solutions .solution-footer .solution-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
#faq-solutions .solution-footer .solution-link:hover {
  color: #da2128;
  gap: 11px;
}
#faq-solutions .solution-footer .solution-link:hover i {
  transform: translateX(2px);
}
#faq-solutions .solution-footer .solution-link:focus-visible {
  outline: 0;
  color: #da2128;
}

#faq-guides {
  background-color: rgba(55, 78, 162, 0.035);
}
#faq-guides .guide-list {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  #faq-guides .guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #faq-guides .guide-list {
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}
#faq-guides .guide-item {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-item {
    border-radius: 12px;
  }
}
#faq-guides .guide-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(55, 78, 162, 0.28);
}
#faq-guides .guide-item:hover .guide-image img {
  transform: scale(1.035);
}
#faq-guides .guide-item:hover .guide-content h3 a {
  color: #374ea2;
}
#faq-guides .guide-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e5e7eb;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-image {
    aspect-ratio: 16/10;
  }
}
@media screen and (max-width: 480px) {
  #faq-guides .guide-image {
    aspect-ratio: 3/2;
  }
}
#faq-guides .guide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#faq-guides .guide-image:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px rgba(55, 78, 162, 0.25);
}
#faq-guides .guide-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
@media screen and (max-width: 768px) {
  #faq-guides .guide-content {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-content {
    padding: 18px;
  }
}
#faq-guides .guide-content .guide-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 11px;
  padding: 5px 10px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 100rem;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-content .guide-label {
    margin-bottom: 9px;
    padding: 4px 9px;
    font-size: 11px;
  }
}
#faq-guides .guide-content h3 {
  margin: 0 0 11px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-content h3 {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.4;
  }
}
#faq-guides .guide-content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
#faq-guides .guide-content h3 a:hover {
  color: #374ea2;
}
#faq-guides .guide-content h3 a:focus-visible {
  outline: 0;
  color: #374ea2;
}
#faq-guides .guide-content p {
  margin: 0 0 18px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-content p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.65;
  }
}
#faq-guides .guide-content .guide-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: auto;
  color: #374ea2;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-content .guide-link {
    font-size: 13px;
  }
}
#faq-guides .guide-content .guide-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
#faq-guides .guide-content .guide-link:hover {
  gap: 10px;
  color: #da2128;
}
#faq-guides .guide-content .guide-link:hover i {
  transform: translateX(2px);
}
#faq-guides .guide-content .guide-link:focus-visible {
  outline: 0;
  color: #da2128;
}
#faq-guides .guide-more {
  margin-top: 36px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #faq-guides .guide-more {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-more {
    margin-top: 24px;
  }
}
#faq-guides .guide-more .more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: #374ea2;
  background: #fff;
  border: 1px solid rgba(55, 78, 162, 0.25);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-guides .guide-more .more-link {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    font-size: 13px;
  }
}
#faq-guides .guide-more .more-link i {
  font-size: 15px;
  transition: transform 0.3s ease;
}
#faq-guides .guide-more .more-link:hover {
  color: #fff;
  background: #374ea2;
  border-color: #374ea2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
#faq-guides .guide-more .more-link:hover i {
  transform: translateX(3px);
}
#faq-guides .guide-more .more-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}

#faq-question {
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #faq-question {
    padding: 64px 0;
  }
}
@media screen and (max-width: 640px) {
  #faq-question {
    padding: 50px 0;
  }
}
#faq-question .question-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #faq-question .question-layout {
    gap: 42px;
  }
}
@media screen and (max-width: 768px) {
  #faq-question .question-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #faq-question .question-layout {
    gap: 28px;
  }
}
#faq-question .question-content {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  #faq-question .question-content {
    max-width: 720px;
    padding-top: 0;
  }
}
#faq-question .question-content .section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #da2128;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content .section-label {
    margin-bottom: 11px;
    font-size: 12px;
  }
}
#faq-question .question-content h2 {
  margin: 0 0 18px;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  #faq-question .question-content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  #faq-question .question-content h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  #faq-question .question-content h2 {
    font-size: 22px;
  }
}
#faq-question .question-content > p {
  margin: 0 0 14px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content > p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
}
#faq-question .question-content > p:last-of-type {
  margin-bottom: 26px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content > p:last-of-type {
    margin-bottom: 21px;
  }
}
#faq-question .question-content .question-note {
  margin: 0;
  padding: 0;
  list-style: none;
}
#faq-question .question-content .question-note li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content .question-note li {
    gap: 9px;
    margin-bottom: 11px;
  }
}
#faq-question .question-content .question-note li:last-child {
  margin-bottom: 0;
}
#faq-question .question-content .question-note li i {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 100rem;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content .question-note li i {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}
#faq-question .question-content .question-note li span {
  padding-top: 3px;
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (max-width: 640px) {
  #faq-question .question-content .question-note li span {
    min-width: 0;
    padding-top: 2px;
    font-size: 13px;
  }
}
#faq-question .question-form {
  padding: 30px;
  background: rgba(55, 78, 162, 0.025);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  #faq-question .question-form {
    padding: 26px;
  }
}
@media screen and (max-width: 640px) {
  #faq-question .question-form {
    padding: 20px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #faq-question .question-form {
    padding: 17px;
    border-radius: 8px;
  }
}
#faq-question .question-form form {
  width: 100%;
}
#faq-question .question-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}
#faq-question .question-form .form-group {
  margin-bottom: 18px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-group {
    margin-bottom: 15px;
  }
}
#faq-question .question-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-group label {
    margin-bottom: 7px;
    font-size: 13px;
  }
}
#faq-question .question-form .form-group label span {
  color: #da2128;
}
#faq-question .question-form .form-group input,
#faq-question .question-form .form-group select,
#faq-question .question-form .form-group textarea {
  width: 100%;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#faq-question .question-form .form-group input:hover,
#faq-question .question-form .form-group select:hover,
#faq-question .question-form .form-group textarea:hover {
  border-color: #adb8d9;
}
#faq-question .question-form .form-group input:focus,
#faq-question .question-form .form-group select:focus,
#faq-question .question-form .form-group textarea:focus {
  background: #fff;
  border-color: #374ea2;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}
#faq-question .question-form .form-group input,
#faq-question .question-form .form-group select {
  height: 50px;
  padding: 0 14px;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-group input,
  #faq-question .question-form .form-group select {
    height: 48px;
    padding: 0 12px;
  }
}
#faq-question .question-form .form-group textarea {
  min-height: 145px;
  padding: 13px 14px;
  line-height: 1.65;
  resize: vertical;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-group textarea {
    min-height: 130px;
    padding: 12px;
  }
}
#faq-question .question-form .form-group input::placeholder,
#faq-question .question-form .form-group textarea::placeholder {
  color: #9e9e9f;
}
#faq-question .question-form .form-group select {
  cursor: pointer;
}
#faq-question .question-form .form-action {
  margin-top: 4px;
}
#faq-question .question-form .form-action button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: #da2128;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-question .question-form .form-action button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }
}
#faq-question .question-form .form-action button i {
  font-size: 14px;
}
#faq-question .question-form .form-action button:hover {
  background: #fa0103;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
#faq-question .question-form .form-action button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}

#faq-cta {
  background-color: #fff;
}
#faq-cta .cta-layout {
  gap: 50px;
  display: grid;
  overflow: hidden;
  padding: 42px 46px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, #374ea2, #141b44);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}
@media screen and (max-width: 1024px) {
  #faq-cta .cta-layout {
    gap: 38px;
    padding: 38px 40px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }
}
@media screen and (max-width: 768px) {
  #faq-cta .cta-layout {
    gap: 30px;
    padding: 34px;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-layout {
    gap: 24px;
    padding: 26px 22px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
  #faq-cta .cta-layout {
    padding: 23px 18px;
  }
}
#faq-cta .section-title {
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 640px) {
  #faq-cta .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  #faq-cta .section-title {
    font-size: 22px;
  }
}
#faq-cta .section-heading {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #faq-cta .section-heading {
    max-width: 680px;
  }
}
#faq-cta .section-desc {
  font-size: 15px;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
}
@media screen and (max-width: 640px) {
  #faq-cta .section-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#faq-cta .section-label {
  text-align: left;
  color: #ffd309;
}
@media screen and (max-width: 640px) {
  #faq-cta .section-label {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#faq-cta .cta-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #faq-cta .cta-action {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-action {
    grid-template-columns: minmax(0, 1fr);
  }
}
#faq-cta .cta-primary,
#faq-cta .cta-secondary {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
#faq-cta .cta-primary:focus-visible,
#faq-cta .cta-secondary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(55, 78, 162, 0.25);
}
#faq-cta .cta-primary {
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: #da2128;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #faq-cta .cta-primary {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-primary {
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }
}
#faq-cta .cta-primary i {
  font-size: 16px;
}
#faq-cta .cta-primary:hover {
  background: #fa0103;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
#faq-cta .cta-secondary {
  gap: 13px;
  padding: 10px 16px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 768px) {
  #faq-cta .cta-secondary {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-secondary {
    min-height: 54px;
    padding: 8px 14px;
  }
}
#faq-cta .cta-secondary i {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 100rem;
  font-size: 16px;
  transition: color 0.3s ease, background 0.3s ease;
}
#faq-cta .cta-secondary i {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-secondary i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 15px;
  }
}
#faq-cta .cta-secondary .phone-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-secondary .phone-content {
    min-width: 0;
  }
}
#faq-cta .cta-secondary .phone-content small {
  color: #787878;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
#faq-cta .cta-secondary .phone-content strong {
  color: #374ea2;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  #faq-cta .cta-secondary .phone-content strong {
    font-size: 16px;
  }
}
#faq-cta .cta-secondary:hover {
  border-color: #adb8d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
#faq-cta .cta-secondary:hover i {
  color: #fff;
  background: #374ea2;
}

#faq-popular {
  background-color: #fff;
}
#faq-popular .faq-list {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  #faq-popular .faq-list {
    max-width: 100%;
  }
}
#faq-popular .faq-item {
  overflow: hidden;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item {
    margin-bottom: 11px;
    border-radius: 8px;
  }
}
#faq-popular .faq-item:last-child {
  margin-bottom: 0;
}
#faq-popular .faq-item:hover {
  border-color: rgba(55, 78, 162, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#faq-popular .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  color: #333;
  background: #fff;
  border: 0;
  outline: 0;
  font-family: "Inter", sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 768px) {
  #faq-popular .faq-item .faq-question {
    gap: 20px;
    padding: 17px 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-question {
    gap: 13px;
    min-height: 60px;
    padding: 15px 16px;
  }
}
#faq-popular .faq-item .faq-question span {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-question span {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
  }
}
#faq-popular .faq-item .faq-question i {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #374ea2;
  background: rgba(55, 78, 162, 0.08);
  border-radius: 100rem;
  font-size: 18px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-question i {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
#faq-popular .faq-item .faq-question:hover {
  color: #374ea2;
  background: rgba(55, 78, 162, 0.025);
}
#faq-popular .faq-item .faq-question:hover i {
  color: #fff;
  background: #374ea2;
}
#faq-popular .faq-item .faq-question:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(55, 78, 162, 0.25);
}
#faq-popular .faq-item .faq-question[aria-expanded=true] {
  color: #374ea2;
  background: rgba(55, 78, 162, 0.04);
}
#faq-popular .faq-item .faq-question[aria-expanded=true] i {
  color: #fff;
  background: #374ea2;
  transform: rotate(180deg);
}
#faq-popular .faq-item .faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 22px;
  border-top: 0 solid transparent;
  transition: max-height 0.38s ease, opacity 0.24s ease, transform 0.28s ease, padding 0.28s ease, border-top-width 0.24s ease;
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-answer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
#faq-popular .faq-item .faq-answer[data-open=true] {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px 22px 22px;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  #faq-popular .faq-item .faq-answer[data-open=true] {
    max-height: 650px;
    padding: 18px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-answer[data-open=true] {
    max-height: 900px;
    padding: 16px 16px 18px;
  }
}
#faq-popular .faq-item .faq-answer p {
  margin: 0 0 12px;
  color: #515152;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  #faq-popular .faq-item .faq-answer p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
  }
}
#faq-popular .faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  #faq-popular .faq-answer,
  #faq-popular .faq-question i {
    transition: none;
  }
}

.section-heading {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .section-heading {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  .section-heading {
    margin-bottom: 26px;
  }
}

.section-label {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffd309;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-label {
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 640px) {
  .section-label {
    margin-bottom: 9px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.section-title {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
}

.section-desc {
  margin: 0;
  font-size: 16px;
  color: #515152;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .section-desc {
    font-size: 14px;
    line-height: 1.65;
  }
}

/*# sourceMappingURL=faq.css.map */
