.faq-section {
  margin-top: 60px;
}

.faq-section h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #172026;
}

.faq-item {
  border: 1px solid #e7ecef;
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #d7e3e7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #172026;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #2d5f7f;
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: #52636f;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .faq-item {
    margin-bottom: 12px;
  }
}
