.faq-container {
  min-height: 100vh;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  /* add overlay */
  background-color: rgba(0, 0, 0, 0.5);
}

.faq-list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.faq-title {
  text-align: center;
  color: #f1d472;
  font-size: 2.5rem;
  margin: 120px 0 60px;
  font-family: "Bodoni Moda", serif;
  position: relative;
  z-index: 2;
}

/* FAQ Items */
.faq-item {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(241, 212, 114, 0.2);
}

.faq-question {
  color: #f1d472;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #f1d472;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #fff;
  padding: 0 20px;
  line-height: 1.6;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 20px 20px;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 212, 114, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    width: 90%;
    margin: 15vh auto;
    padding: 0 15px;
    border-radius: 10px;
  }

  .faq-title {
    font-size: 2rem;
    margin: 80px 0 40px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}
