/* 🎯 FAQ Background */
.faq-section {
  background-image: url("https://www.theestheticclinics.com/treatments/wp-content/uploads/2025/10/Home-page-assets-25-scaled.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.heading-two-orange {
  color: #f38221;
}

/* Wrapper */
.accordion {
  width: 100% !important;
  display: block;
}

/* Accordion item */
.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Accordion button */
.accordion2-button {
  width: 100%;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
}

/* Active state */
.accordion2-button:not(.collapsed) {
  background: #fff7f2;
}

/* FontAwesome Arrow */
.accordion2-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";   /* FIXED — Proper FA code */
  font-size: 18px;
  color: #f38221;
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Rotate when open */
.accordion2-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Body */
.accordion-body {
  padding: 20px;
  font-size: 18px;
  color: #444;
  background: #fff;
  line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .accordion2-button {
    font-size: 16px;
    padding: 14px 16px;
  }

  .accordion-body {
    font-size: 15px;
  }

  .accordion2-button::after {
    font-size: 16px;
  }
}
