/* Font Awesome CDN */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.faq-section {
  background: #fafafa;
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.section-header h2 span {
  color: #8d0b41;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: #8d0b41;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  border-top: 1px solid #eee;
  transition: all 0.4s ease;
}

.faq-answer p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
  }
}
