/* ===== FAQ Container ===== */
.faq-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ===== Title ===== */
.faq-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 3px solid #0072CE;
  padding-bottom: 0.75rem;
  color: #005BAC;
  text-align: center;
}

/* ===== FAQ Item ===== */
.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.2rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.faq-item:hover {
  background: #f0f7ff;
  border-color: #0072CE;
  box-shadow: 0 2px 8px rgba(0,114,206,0.1);
}

/* ===== Question (Heading) ===== */
.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #005BAC;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item h3:hover {
  color: #003f7f;
}

.faq-item h3 i {
  margin-right: 0.6rem;
  font-size: 1.1rem;
  color: #0072CE;
}

/* ===== Answer (Paragraphs) ===== */
.faq-item p {
  margin: 0.5rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #444;
}

.faq-item strong {
  color: #005BAC;
}

/* ===== Lists inside answers ===== */
.faq-item ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
  padding: 0;
}

.faq-item ul li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
  font-size: 0.95rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 600px) {
  .faq-container {
    padding: 1.2rem;
  }
  .faq-title {
    font-size: 1.6rem;
  }
  .faq-item h3 {
    font-size: 1.05rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
}
