.hero {
  background: url('../images/worship2.jpeg') no-repeat center center/cover;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero .content {
  position: relative;
  z-index: 1;
}

.section-title {
  border-left: 4px solid #0d6efd;
  padding-left: 12px;
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 1.5rem;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 576px) {
  .hero {
    height: 40vh;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .card-img-top {
    height: 150px;
  }
}
