/* Section Title */
.section-title h1 {
  font-size: 36px;
  text-align: center;
  color: #0d47a1;
  margin-bottom: 10px;
}

.section-title h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #ff6f00;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Subtitle Content */
.section-subtitle-content h2 {
  font-size: 30px;
  color: #1565c0;
  margin-bottom: 20px;
  border-left: 6px solid #ff6f00;
  padding-left: 16px;
}

.section-subtitle-content p {
  font-size: 16px;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

/* Subheading Content */
.section-subheading-content h3 {
  font-size: 24px;
  color: #37474f;
  margin-bottom: 20px;
  text-align: center;
}

.section-subheading-content p {
  font-size: 16px;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Section */
.section-subheading-content-faq h3 {
  font-size: 24px;
  color: #1e88e5;
  margin-top: 30px;
}

.section-subheading-content-faq h3:first-child {
  font-size: 24px;
  text-align: center;
  color: #0d47a1;
  margin-bottom: 30px;
}

.section-subheading-content-faq p {
  font-size: 16px;
  color: #555;
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h1 {
    font-size: 32px;
  }
  .section-subtitle-content h2 {
    font-size: 24px;
  }
  .section-subheading-content h3,
  .section-subheading-content-faq h3 {
    font-size: 20px;
  }
  .section-subtitle-content p,
  .section-subheading-content p,
  .section-subheading-content-faq p {
    font-size: 15px;
  }
}
