.elementor-94 .elementor-element.elementor-element-81f1edb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d20a5b3 *//* =========================
   FAQ PAGE
========================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9fbff;
  color: #222;
}

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.faq-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.faq-hero p {
  font-size: 1.1rem;
  opacity: .9;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 15px 40px rgba(0, 98, 235, 0.06);
  transition: all .3s ease;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  color: #0062EB;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "–";
  color: #00BEFA;
}

.faq-item p {
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* Remove default marker */
summary::-webkit-details-marker {
  display: none;
}

/* Hover effect */
.faq-item:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    padding: 40px 20px;
  }
}/* End custom CSS */