.fqa-teachers-intro {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  color: #555;
  line-height: 1.75;
}

.fqa-teachers-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.fqa-teachers-stat {
  background: #f7faf8;
  border: 1px solid #e4ece6;
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
}

.fqa-teachers-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 6px;
}

.fqa-teachers-stat span {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fqa-teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.fqa-teacher-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fqa-teacher-card:hover {
  box-shadow: 0 14px 36px rgba(26, 58, 92, 0.14);
  transform: translateY(-4px);
}

.fqa-teacher-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #eef2f5;
}

.fqa-teacher-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fqa-teacher-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2d5a3d;
  background: #eef5f0;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.fqa-teacher-body h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 4px;
}

.fqa-teacher-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.fqa-teacher-body > p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.fqa-teacher-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fqa-teacher-tags li {
  font-size: 12px;
  color: #444;
  background: #f3f6f8;
  border: 1px solid #e2e8ec;
  padding: 4px 10px;
  border-radius: 999px;
}

.fqa-teacher-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.fqa-teacher-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fqa-qualifications {
  background: #f7faf8;
  border: 1px solid #e4ece6;
  border-radius: 12px;
  padding: 36px 32px;
  margin-bottom: 48px;
}

.fqa-qualifications h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 20px;
  text-align: center;
}

.fqa-qual-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fqa-qual-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.fqa-qual-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2d5a3d;
  font-weight: 700;
}

.fqa-teachers-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #2d5a3d;
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 48px;
}

.fqa-teachers-note i {
  font-size: 42px;
  color: #2d5a3d;
  flex-shrink: 0;
  line-height: 1;
}

.fqa-teachers-note h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.fqa-teachers-note p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.fqa-teachers-cta {
  text-align: center;
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a3d 100%);
  border-radius: 12px;
  padding: 44px 32px;
  color: #fff;
}

.fqa-teachers-cta h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.fqa-teachers-cta p {
  max-width: 560px;
  margin: 0 auto 24px;
  opacity: 0.92;
  line-height: 1.7;
}

.fqa-teachers-cta .thm-btn {
  margin: 0 6px 8px;
}

.fqa-teachers-cta .fqa-btn-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}

.fqa-teachers-cta .fqa-btn-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 767px) {
  .fqa-teachers-note {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .fqa-teacher-card img {
    height: 240px;
  }
}
