

.section-title .highlight {
  color: #004fae; 
  font-weight: 700;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #004fae;
  margin: 16px auto 0;
  border-radius: 2px;
}

.faq-section {
  background: #f8f9fc;
  padding: 80px 20px;
}

.faq-section .section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #1e2b4a;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 60px 20px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  position: relative;
  color: #1e4374;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #4a5568;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
