* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.faq-section {
  padding: 40px 90px;
  margin: auto;
}

.faq-title {
  font-size: 52px;
  font-weight: 700;
}

.faq-subtitle {
  color: #555;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 22px 25px;
  transition: 0.3s ease;
}

.faq-item.active {
  background: #e7e3ff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

.faq-answer {
  margin-top: 10px;
  color: #555;
  font-size: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.active {
  max-height: 300px; /* smooth expand */
}
.faq-footer{
  font-size: 18px;
  margin-top: 14px;
}
@media(max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-item {
    padding: 18px 20px;
  }
}
