/* FAQ Page Styles */
.faq-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-page-title {
  text-align: center;
  font-size: 32px;
  color: #095f70;
  margin-bottom: 50px;
  font-weight: bold;
}

.faq-page-category {
  margin-bottom: 50px;
}

.faq-page-category-title {
  font-size: 24px;
  color: #095f70;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #095f70;
  font-weight: bold;
}

.faq-page-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-page-items-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-page-items-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-page-items-item-question {
  padding: 20px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s ease;
}

.faq-page-items-item-question:hover {
  background: #e9ecef;
}

.faq-page-items-item-question-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #095f70;
  transition: transform 0.3s ease;
}

.faq-page-items-item-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-page-items-item-answer-active {
  padding: 20px;
  max-height: 1000px;
}

.faq-page-items-item-answer p {
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faq-page-items-item-answer a {
  color: #095f70;
  text-decoration: underline;
}

.faq-page-items-item-answer a:hover {
  color: #074b5a;
}

/* 展开状态的样式 */
.faq-page-items-item-active .faq-page-items-item-question-toggle {
  transform: rotate(45deg);
}

.faq-page-items-item-active .faq-page-items-item-question {
  background: #095f70;
  color: white;
}

.faq-page-items-item-active .faq-page-items-item-question-toggle {
  color: white;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
  .faq-page {
    padding: 20px 15px;
  }

  .faq-page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-page-category-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .faq-page-items-item-question {
    padding: 15px;
    font-size: 14px;
  }

  .faq-page-items-item-answer-active {
    padding: 15px;
  }

  .faq-page-items-item-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}