.breadcrumb {
  padding: 8px 0px;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 12px;
  padding: 0;
  border-top: 1.5px solid #999;
  border-right: 1.5px solid #999;
  transform: rotate(45deg);
  vertical-align: middle;
}
.breadcrumb > .active {
  color: #999 !important;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 60px 20px;
  background: #0f1117;
  color: #ffffff;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5c542;
}

.faq-section h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
}

.faq-intro {
  max-width: 700px;
  margin: 0 0 30px;
  color: #aeb4c0;
  font-size: 15px;
  line-height: 1.7;
}

/* FAQ LIST */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ ITEM */

.faq-item {
  overflow: hidden;
  border: 1px solid #292d36;
  border-radius: 10px;
  background: #171a21;
}

/* QUESTION */

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #242833;
  color: #f5c542;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

/* OPEN STATE */

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid #292d36;
}

/* ANSWER */

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 16px 0 0;
  color: #b8bec9;
  font-size: 15px;
  line-height: 1.8;
}

/* HOVER */

.faq-item summary:hover {
  background: #1c2028;
}

/* MOBILE */

@media (max-width: 768px) {
  .faq-section {
    padding: 45px 16px;
  }

  .faq-section h2 {
    font-size: 26px;
  }

  .faq-item summary {
    padding: 17px 16px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px 17px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}
