/* FAQ Section Styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #fff;
  border-left: 4px solid #800000;
}

.faq-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  color: #333;
  text-align: left;
  cursor: pointer;
}

.faq-item.active .faq-button {
  color: #800000;
}

.faq-item.active .faq-button span {
  color: #800000;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-content {
  margin-top: 15px;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-title {
  color: #800000;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

.faq-description {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.faq-image-container {
  text-align: center;
}

.faq-image {
  max-width: 400px;
  width: 100%;
  height: auto;
}