.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  background: #fafafa;
}

/* Question */
.faq-question {
  position: relative;
  font-weight: 600;
  color: #1a2654;
  padding-right: 25px;
}

/* + / - icons */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 20px;
  color: #1a2654;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  color: var(--secondary-color);
}

/* Answer container (animated height) */
.faq-answer {
  height: 0;
  overflow: hidden;
  color: #444;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-5px);
  transition: height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  will-change: height, opacity, transform;
}

/* Active answer styling */
.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .faq-section h2 {
    font-size: 32px;
  }
}
