.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Georgia', serif;
  color: #1a1a1a;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #031633;
}

.faq-header .highlight {
  color: #f2b805;
  font-style: italic;
}

.faq-header p {
  color: #666;
  font-size: 1rem;
  margin-top: 8px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid #f2b805;
  border-radius: 12px;
  background-color: #fffdfa;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  color: #031633;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #f2b805;
}

.faq-question .icon {
  margin-right: 12px;
  font-size: 1.5rem;
  color: #f2b805;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  background-color: #fffdf2;
  border-radius: 6px;
  padding-left: 12px;
}
