.faq-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 16px;
  background: #fff;
}

.faq-section .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  color: #333;
  margin-left: 20px;
  border-left: 4px solid #004aad;
  padding-left: 0.5rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  color: #333;
  background: #f8f8f8;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

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

.faq-question:hover {
  background: #e0f0ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer strong {
  color: var(--text-main); /* Replace with your desired color */
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px; /* adjust based on content */
}

.faq-answer p {
    text-align: left;
}

@media (max-width: 480px) {
  .faq-section {
    padding: 8px;
  }
  .faq-container {
    padding: 10px;
  }
}