body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #fffaf5;
  color: #333;
  line-height: 1.6;
}

.faq-header {
  text-align: center;
  padding: 60px 20px;
  background: #08310d;
  color: #fff;
}

.faq-header h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.faq-header p {
  font-size: 18px;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #c49b16;
  border-left: 5px solid #c49b16;
  padding-left: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  padding: 18px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #f4a261;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 18px;
  background: #fffaf5;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-footer {
  text-align: center;
  padding: 30px 20px;
  background: #08310d;
  color: #fff;
  font-size: 16px;
}

.faq-footer a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
}
