/* faq.css */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #073550;
}

.faq-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.faq-category {
  margin-bottom: 50px;
}

.category-title {
  font-size: 28px;
  color: #073550;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #daa800;
}

.faq-item {
  margin-bottom: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: #f9f9f9;
  font-weight: 500;
  font-size: 20px;
  color: #073550;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question:after {
  content: "+";
  font-size: 24px;
  color: #daa800;
}

.faq-question.active:after {
  content: "-";
}

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

.faq-answer.show {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.faq-contact {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.product-view-btn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 20px 15px;
  }
  
  .faq-title {
    font-size: 28px;
  }
  
  .faq-subtitle {
    font-size: 18px;
  }
  
  .category-title {
    font-size: 24px;
  }
  
  .faq-question {
    font-size: 18px;
    padding: 15px;
  }
}