/* 通用标题和发光条样式 */
.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #c90101;
  border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}
