body {
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  color: #222;
  margin: 0;
  /* padding: 40px; */
}

.faq {
  max-width: 960px;
  margin: 0 auto;
}

.faq__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
}

.faq__item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.faq__item.open {
  border-color: #eb870f;
  background-color: #fcf9f4;
}

.faq__question {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.faq__icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.faq__answer {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  display: none;
}

.faq__item.open .faq__answer {
  display: block;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {

  .faq__title {
    font-size: 28px;
  }

  .faq__question {
    font-size: 16px;
  }

  .faq__answer {
    font-size: 15px;
  }
}