/* -------------------------- */
/*  1. FAQ Section           */
.content_container {
  display: flex;
  justify-content: center;
  padding: 5%;
}
.content_frame {
  width: 100%;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}
.section {
  padding: 64px 0;
  background: #ffffff;
  color: #0b1020;
}
.section {
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.section.visible::before {
  opacity: 1;
}
.faq-list details {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 15px;
}
.faq-list summary {
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 600;
}
/* FAQ details animation */
.faq-list details {
  transition: all 0.3s ease;
}
.faq-list details[open] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.faq-list summary {
  transition: color 0.3s ease;
}
.ext a {
  color: #004687;
}
@media screen and (max-width: 500px) {
  .ext {
    text-align: center;
  }
}
