#smart-faq-pro {
  margin-top: 40px;
  padding: 20px;
  background: #f8faff;
}

#smart-faq-pro .faq-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: right;
  color: #222;
}

.faq-container h3 {
  background: #fff;
  border-left: 5px solid #00bfff;
  padding: 15px 20px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.faq-container h3:hover {
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.faq-container p {
  display: none;
  background: #fff;
  padding: 15px 20px;
  margin-top: -5px;
  border-radius: 0 0 8px 8px;
  border-left: 5px solid #00bfff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.7;
}

.faq-container p.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  #smart-faq-pro {
    padding: 15px;
  }
  .faq-container h3 {
    font-size: 16px;
  }
}
