/* QnA */
.faq-section h2 {
    margin-bottom: 20px;
    color: #4A6B59;
    font-size: 3em;
    text-align: center;
    font-weight: 800;
}

.accordion {
    /* max-width: 700px; */
    margin: 5% 15%;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* background: #fff; */
    overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s;
  color: #4A6B59;
}

.accordion-header:hover {
  background: #f1eee9;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.3em;
}

.accordion-icon {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  line-height: 1.6;
  font-size: 1.05em;
  color: #4A6B59;
}

.accordion-content.show {
  max-height: 500px;
  padding: 20px;
}

.success-message h3 {
    color: #4a6b59;
    font-size: 2em;
    text-align: center;
}
.success-message p {
    color: #4a6b59;
    font-size: 17px;
}

.success-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.fa-regular, .far {
    font-weight: 100;
    font-size: 4em
}