.bks-faq {
  margin: 30px 0;
  padding: 0 20px;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 1.5;
}

.bks-faq h2 {
  color: #393939;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  border-bottom: 2px solid #4c94c2;
  padding-bottom: 10px;
}

.bks-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bks-question {
  cursor: pointer;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #393939;
  font-weight: 600;
  background: #f8f9fa;
  transition: background-color 0.3s ease;
}

.bks-question:hover {
  background: #e9ecef;
}

.bks-arrow {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  color: #4c94c2;
  font-size: 18px;
  font-weight: bold;
}

.bks-question.active .bks-arrow {
  transform: rotate(270deg);
}

.bks-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 20px;
  background: #fff;
  color: #666;
  font-size: 14px;
}

.bks-answer.active {
  max-height: 300px; /* Sufficient for typical answers; adjust if needed */
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .bks-faq {
    padding: 0 10px;
    margin: 20px 0;
  }

  .bks-faq h2 {
    font-size: 20px;
  }

  .bks-question {
    padding: 12px 15px;
    font-size: 15px;
  }

  .bks-answer {
    font-size: 13px;
    padding: 0 15px;
  }

  .bks-answer.active {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .bks-faq-item {
    margin-bottom: 5px;
    border-radius: 4px;
  }
}