/* ===== FAQ ACCORDION ===== */
.faq-category {
  margin-bottom: 48px;
}

.faq-cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0eb8c9;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item {
  background: #0f1520;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(14, 184, 201, 0.15);
}

.faq-item.open {
  border-color: rgba(14, 184, 201, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
}

.faq-question:hover {
  color: #0eb8c9;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #6b7a8a;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #0eb8c9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: #b0bcc8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: #0eb8c9;
  text-decoration: underline;
}

.faq-answer ul {
  padding-left: 20px;
  color: #b0bcc8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer ul li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-item.open .faq-answer {
    padding: 0 18px 16px;
  }
}
