
.excitemorebox h1 {
    text-align: center;
    font-size: 30px;
    font-family: "myFirstFont";
        width: fit-content;
    margin: auto;
  position: relative;
}
.excitemorebox h1:after{
content: ''; position: absolute; width: 100%; height: 2px; background: #ffc087; left: 0; bottom: 3px; z-index: -1; border-radius: 30px;
}

.faq-container {
  width: 100%;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  font-family: Arial, sans-serif;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: transparent;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  position: relative;
  border-radius:10px;
}

.faq-question::after {
     content: '\f078';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    font-size: 12px;
    transition: transform 0.3s;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 5px;
    top: 13px;
    color:#7f7f7f;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 15px;
  color: #555;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.show-more-btn-faq {
  width: 100%;
  background: transparent;
  border: none;
  text-align: center;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  margin-top: 15px;
  font-size: 14px;
}

.show-more-btn-faq span {
  color: #00a859;
}
