body{
    background-color: rgba(235, 226, 226, 0.208);
    font-family: "Manrope";
    line-height: 2rem;
}

.hero-banner {
  position: relative;
  background: url('../images/blogs-cover.jpg') no-repeat  center/cover fixed;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.786); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}

.blog-detail-section {
  background-color: #f8f9fa;
}

.blog-image img {
    width: 65%;
  max-width: 100%;
  height: 80vh;
}

.blog-content {
  max-width: 800px;
  text-align: left;
}

.blog-content p,li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.blog-subheading {
  color: #1a2a3a;
  font-weight: 700;
}
ul.custom-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  line-height: 2rem;
}


@media(max-width:770px){
    .hero-title {
  font-size: 3rem;
}
}

@media(max-width:570px){
    .hero-title {
  font-size: 2rem;
}
}