.faq-container {
  max-width: 900px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2%;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  background-color: white;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #003c7a;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.faq-btn {
  display: inline-block;
  background-color: #003c7a;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-btn:hover {
  background-color: #0050a5;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}
