
.faq-section { max-width: 900px; margin: auto; padding: 40px 20px; background: #fff; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.faq-section h2 { text-align: center; margin-bottom: 30px; font-size: 20px; font-weight: 700; background: linear-gradient(90deg,#ff7e5f,#feb47b); -webkit-background-clip: text; color: transparent; }
.accordion-item { margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
.accordion-title {
  width: 100%; padding: 18px 20px; text-align: left; font-size: 15px; font-weight: 550;
  cursor: pointer; border: none; outline: none; background: #f5f5f5; transition: background 0.3s, transform 0.2s;
  display: flex; align-items: center; justify-content: space-between;
}
.accordion-title:hover { background: #eee; }
.accordion-title::after { content: "▼"; transition: transform 0.3s; }
.accordion-title.active::after { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; background: #fff; padding: 0 20px;
}
.accordion-content p, .accordion-content ul { margin: 12px 0; font-size: 16px; line-height: 1.6; }
.accordion-content ul { padding-left: 20px; list-style-type: disc; }
