.faq-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF;
  color: #000000;
  font-family: Arial, sans-serif;
}


.faq-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #10367A;
  margin-bottom: 25px;
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.faq-item {
  background-color: #D3D3D3;
  border: 1px solid #10367A;
  border-radius: 8px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #E0E0E0;
}

.faq-item[open] {
  background-color: #FE5716;
  color: #FFFFFF;
  border-color: #10367A;
}


.faq-question {
  font-size: 18px;
  font-weight: bold;
  color: #10367A;
  margin: 0;
}

.faq-item[open] .faq-question {
  color: #FFFFFF;
}


.faq-answer {
  font-size: 15px;
  color: #000000;
  margin-top: 12px;
  line-height: 1.6;
}

.faq-item[open] .faq-answer {
  color: #FFFFFF;
}