.faq-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-top:61px;
}

.faq-pill {
  display: inline-block;
  padding: 6px 14px;
  background: #f3e8ff;
  color: #7c3aed;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-section h1 {
  font-size: 60px;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 20px;
  color: #6b7280;
  font-weight:400;
  margin-bottom: 62px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

details[open] .arrow {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section h1 {
    font-size: 30px;
  }

  .faq-subtitle {
    font-size: 15px;
  }
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 19px;
    margin: 12px;
    margin-bottom: 7px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-section {
  width:98%;
  margin: auto;
  text-align: center;
  margin-top:61px;
}

}