.faq-styled {
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
}
.faq-styled h2 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #5563de;
  z-index: 2;
  position: relative;
}
.faq-styled .accordion {
  position: relative;
  z-index: 2;
}
.faq-styled .shape-left,
.faq-styled .shape-right {
  position: absolute;
  background-color: rgba(85, 99, 222, 0.2);
  border-radius: 50%;
  z-index: 1;
}
.faq-styled .shape-left {
  width: 180px;
  height: 180px;
  top: -40px;
  left: -60px;
}
.faq-styled .shape-right {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -70px;
}

.accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.accordion-item:hover {
  transform: translateY(-3px);
}

.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.4rem;
  background: transparent;
  color: #333;
  box-shadow: none !important;
}
.accordion-button::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #5563de;
  background-image: none;
}
.accordion-button:not(.collapsed) {
  background: #f9fafe;
  color: #000;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: none;
  color: #e94e77;
}
@media (max-width: 767px) {
  .accordion-button {
    padding: 1rem 1.1rem;
    font-size: 1rem;
  }
}

.accordion-body {
  padding: 0.8rem 1.4rem 1.4rem;
  font-size: 0.95rem;
  color: #555;
}/*# sourceMappingURL=faqDesign5.css.map */