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

body {
  background: #f9f9f9;
  padding: 40px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.faq-title span {
  color:#FDC805;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  font-size: 16px;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

