﻿

/* General Layout 
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f1b;
  color: #e0e0e0;
  line-height: 1.6;
}
*/

.faq-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f1b;
  color: #e0e0e0;
  line-height: 1.6;

  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}


/* Search Bar */
.faq-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}



#faq-search {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #1c1c2b;
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 10px #00fff7;
  transition: box-shadow 0.3s;
}






#faq-search:focus {
  box-shadow: 0 0 15px #00fff7;
}









/* FAQ Item */
.faq-item {
  border: 1px solid #1f3540;
  border-radius: 10px;
  background-color: #1a1a2f;
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}













.faq-item:hover {
  transform: scale(1.01);
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.4);
}






.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 255, 247, 0.1);
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-question.open .arrow {
  transform: rotate(180deg);
}
















/*--------------------------------------------------------------
Answer
  font-size: 0.95rem;
--------------------------------------------------------------*/
.faq-answer {
  padding: 15px 20px;
  font-size: 1.0rem;
  color: #cbd5e0;
  background-color: #12121f;
  border-top: 1px solid #1f3540;
  animation: fadeIn 0.4s ease;
}






.faq-hidden {
  display: none;
}



/* No Results Message */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 1.1rem;
}

.no-results .tip {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}













