.faq-section {
  max-width: 640px;
  margin: 3rem auto;
  padding: 1.75rem 2rem;
  background: #efe9dd;
  border-radius: 14px;
}

.faq-section__title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5a6e52;
  margin: 0 0 1.25rem;
  letter-spacing: 0.3px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #d8cdb8;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.85rem 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: #2b2b2b;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  flex-shrink: 0;
  margin-left: 0.75rem;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 1.5px solid #7a6f5d;
  border-bottom: 1.5px solid #7a6f5d;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(-135deg);
}

.faq-item__answer {
  padding: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5a5a5a;
}