.faq-container {
  max-width: 800px;
  width: 100%;
  /*margin: 20px;*/
  /*padding: 20px;*/
}

/* FAQ Item Styles */

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
}

.faq-question {
  background: #333;
  background-color: #333!important;
  color: #FFFFFF;
  border: none;
  padding: 15px;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-icon {
  font-size: 1.5rem;
  color: #e32b6b;
  transition: transform 0.3s;
}

/* FAQ Answer Styles */

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

.faq-answer p {
  padding: 15px;
  background-color: #2a2c30;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Responsive Design */

@media (max-width: 600px) {
  .faq-question {
    font-size: 0.9rem;
    /*padding: 12px;*/
  }
}

@media (max-width: 600px) {
  .faq-answer p {
    /*padding: 12px;*/
    font-size: 0.9rem;
  }
}

