<style>
/* === TITLE MATCH COLOR WITH FAQ === */
.cok-faq-title {
  text-align: center;
  color: #000000;
  font-size: 32px;
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: 800;
  font-family: "Segoe UI", sans-serif;
  text-shadow: 0 0 12px #000000aa, 0 0 20px #50418f;
  letter-spacing: 1px;
}

/* === FAQ CONTAINER === */
.cok-faq {
  max-width: 1200px;
  margin: 10px auto 40px auto;
  font-family: "Segoe UI", sans-serif;
}

/* === QUESTION BUTTON === */
.cok-faq-q {
  width: 100%;
  padding: 14px;
  background: #0b0f1a;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid #50418f;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 8px;
  transition: .25s ease;
  box-shadow: 0 0 10px #50418f;
}

.cok-faq-q:hover {
  background: #092332;
  box-shadow: 0 0 15px #50418f;
}

/* === ANSWER BOX === */
.cok-faq-a {
  max-height: 0;
  overflow: hidden;
  background: #0f1623;
  color: #e6faff;
  margin-top: -5px;
  border-radius: 0 0 8px 8px;
  padding: 0 14px;
  border-left: 1px solid #00000033;
  border-right: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
  transition: max-height .35s ease, padding .25s ease;
  box-shadow: inset 0 0 10px #50418f;
}

.cok-faq-a.open {
  max-height: 500px;
  padding: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .cok-faq-title {
    font-size: 26px;
  }
}
</style>
