/* General Page Styling */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  max-width: 850px;
  margin: 60px auto;
  padding: 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ Items */
.faq-item {
  background: #ffffff;
  border: 1px solid #d9e0eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 500;
  background: #f0f3f9;
  color: #003366;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e3eaf4;
}

.faq-question.active {
  background: #003366;
  color: #ffffff;
  font-weight: 600;
}

/* Number Badge */
.faq-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #003366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-question.active .faq-number {
  background: #ffffff;
  color: #003366;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section {
    padding: 10px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}
