.section-faq {
  background: #f5f7f9;
  padding: 60px 20px; /* added spacing */
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #1f5f8b;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: left;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #1f5f8b;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 12px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

.cta-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #1f5f8b;
  border-radius: 25px;
  color: #1f5f8b;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1f5f8b;
  color: #fff;
}

.faq-question::after {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg fill="%231f5f8b" height="10" viewBox="0 0 20 20"><path d="M5 7l5 5 5-5z"/></svg>') no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
}
i.fa.fa-chevron-down {
    margin-left: 12px;
}