/* FAQ Section Styles */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.faq-section h2 {
  font-size: 1.8rem;
  text-align: center;
  color: #123581;
  margin-bottom: 30px;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  padding: 15px 10px;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-icon {
  font-size: 1.3rem;
  color: #007bff;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 10px 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  animation: fadeIn 0.3s ease;
}

.faq-answer p a {
  color: #007bff;
  text-decoration: none;
}

.faq-answer p a:hover {
  text-decoration: underline;
}

/* Active State */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 15px;
  }
  .faq-section h2 {
    font-size: 1.5rem;
  }
}
