.faq-section {
  padding: 60px 20px;
  background-color: #f9fbff;
  font-family: 'Helvetica Neue', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.faq-icon i {
  font-size: 48px;
  color: #1B76D0;
  margin-bottom: 10px;
}

.faq-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #eef4fb;
}

.faq-question h4 {
  margin: 0;
  font-weight: 600;
}

.faq-toggle-icon i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-item.active .faq-toggle-icon i {
  transform: rotate(180deg);
}
