/* Start custom CSS for html, class: .elementor-element-0e93486 *//* ================= FAQ STYLES ================= */

.faq-section {
  padding: 70px 20px;
  background: #f9fafb;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.faq-subtitle {
  margin: 40px 0 15px;
  font-size: 20px;
  color: #065f46;
  font-weight: 600;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-subtitle {
    font-size: 18px;
  }
}/* End custom CSS */