.faq-main-title {
  font-size: 28px;
  color: #222;
}

.faq-description {
  color: #555;
  font-size: 16px;
}

.faq-container {
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.faq-item {
  border: 1px solid #ddd;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: #f9f9f9;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0px 15px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-answer {
  display: none;
  padding: 0px 15px;
  font-size: 15px;
  color: #444;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  font-weight: bold;
  font-size: 18px;
  margin-left: 10px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
} 

