
/* FAQ Section Container */
.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Title */
.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  margin-bottom: 25px;
}

/* FAQ item container */
.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 0;
}

/* Header Container: Flex for Title and Icon */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* Question Link Style */
.faq-link {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  flex-grow: 1;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-link:hover {
  color: #666666;
  text-decoration: underline;
}

/* Toggle Icon Style */
.faq-toggle {
  font-size: 26px;
  font-weight: 300;
  color: #333;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: transform 0.3s ease;
}

/* Answer Content */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}

/* Active State Styles */
.faq-item.active .faq-answer {
  margin-top: 15px;
}
