.fqa-courses-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  line-height: 1.75;
}

.fqa-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.fqa-course-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fqa-course-card:hover {
  box-shadow: 0 14px 36px rgba(26, 58, 92, 0.14);
  transform: translateY(-5px);
}

.fqa-course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.fqa-course-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fqa-course-tag {
  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-course-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 12px;
}

.fqa-course-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.fqa-course-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fqa-course-meta li {
  font-size: 13px;
  color: #666;
  padding: 4px 0 4px 22px;
  position: relative;
}

.fqa-course-meta li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #d1ad3c;
  font-weight: 700;
}

.fqa-course-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fqa-course-actions .thm-btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}

.fqa-course-actions .fqa-btn-outline {
  background: transparent;
  border: 2px solid #1a3a5c;
  color: #1a3a5c;
}

.fqa-course-actions .fqa-btn-outline:hover {
  background: #1a3a5c;
  color: #fff;
}

.fqa-how-learn {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 40px 32px;
  margin-top: 20px;
}

.fqa-how-learn h4 {
  color: #1a3a5c;
  margin-bottom: 20px;
  text-align: center;
}

.fqa-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.fqa-step {
  text-align: center;
}

.fqa-step-num {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: #2d5a3d;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 12px;
}

.fqa-step h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.fqa-step p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.fqa-courses-cta {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a3d 100%);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  border-radius: 10px;
  margin-top: 48px;
}

.fqa-courses-cta h3 {
  color: #fff;
  margin-bottom: 12px;
}

.fqa-courses-cta p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 24px;
}

.fqa-courses-cta .thm-btn {
  background: #d1ad3c;
  color: #1a1a1a;
  margin: 0 8px 8px;
}

.fqa-teachers-note {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.fqa-teachers-note i {
  font-size: 48px;
  color: #d1ad3c;
}

.fqa-teachers-note h4 {
  color: #1a3a5c;
  margin-bottom: 8px;
}

.fqa-teachers-note p {
  margin: 0;
  color: #555;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .fqa-courses-grid {
    grid-template-columns: 1fr;
  }
}
