/* FAQ Section Styles */
.faq-container {
  max-width: 860px;
}

.faq-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
}

/* FAQ Item Styles */
.faq-item {
  border-bottom: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: #54b2d3;
}

.faq-question-text {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* .faq-item[open] {
  .faq-question {
    color: #54b2d3;
  }

  .faq-icon {
    transform: rotate(-180deg);
    color: white;

    svg {
      fill: #54b2d3;

      circle {
        stroke: #54b2d3;
      }
    }
  }
} */

.faq-item[open] .faq-question {
  color: #54b2d3;
}

.faq-item[open] .faq-icon {
  transform: rotate(-180deg);
  color: white;
}

.faq-item[open] .faq-icon svg {
  fill: #54b2d3;
}

.faq-item[open] .faq-icon svg circle {
  stroke: #54b2d3;
}


.faq-question-text{
  font-size: 24px !important;
  color: #333333 !important;
  font-weight: 700 !important;
}

/* FAQ Answer Styles */
.faq-answer-templates {
  padding: 15px 25px;
  animation: fadeIn 0.3s ease;
}

.faq-answer-content {
  color: #4a5565;
  font-size: 18px;
  line-height: 24px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Single open accordion behavior (uses minimal JS) */
.faq-accordion[data-allow-multiple="false"] .faq-item {
  transition: all 0.3s ease;
}
