@charset "utf-8";
/* CSS Document */

.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.faq-section h1 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #14213D;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #353535;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-toggle .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  display: none;
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #14213D;
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-item.open .icon {
  content: "-";
}

.faq-followup {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: none;
}

.faq-followup p {
  font-size: 1.1rem;
  color: #14213D;
  margin-bottom: 20px;
}

.faq-cta {
  text-align: center;
}


