.elementor-1050 .elementor-element.elementor-element-de6dfb7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b6b1520 *//* ===========================
   FAQ SECTION CLEAN CSS
   =========================== */

.faq-section {
  padding: 70px 20px;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.faq-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #9333ea, #3b82f6, #ec4899, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.faq-section > .container > p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

/* Question Button */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.faq-question span {
  flex: 1;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-question i {
  transition: transform 0.35s ease;
  color: #ccc;
}

/* Answer Section */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.faq-answer p,
.faq-answer ul {
  color: #ddd;
  font-size: 0.95rem;
  margin: 14px 0 18px;
  line-height: 1.6;
  text-align: left;
}

.faq-answer ul li {
  margin-bottom: 8px;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.faq-item.active .faq-answer {
  opacity: 1;
  padding: 14px 20px 18px;
  max-height: 700px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Tablet */
@media (max-width: 768px) {
  .faq-section h1 {
    font-size: 2.4rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h1 {
    font-size: 2.1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px;
  }

  .faq-answer {
    padding: 0 14px;
  }

  .faq-item.active .faq-answer {
    padding: 12px 14px;
  }
}/* End custom CSS */