/* FAQ Section Styles */
.faq-section {
  padding: 60px 20px;
  background-color: #EBF1F1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* Accordion Styles */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  background-color: #fff;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #f1f1f1;
}

.accordion-header .icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c7a46e; /* Using a color from your existing design */
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafafa;
}

.accordion-content p {
  padding: 20px 0;
  margin: 0;
  line-height: 1.6;
  color: #777;
}

/* JavaScript Class for Active State */
.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-header.active + .accordion-content {
  max-height: 500px; /* Adjust as needed */
  padding: 1px 20px 20px;
}