
#post-single-3 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#post-single-3 .hero-header {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
#post-single-3 .hero-header img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#post-single-3 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#post-single-3 .hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#post-single-3 .post-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#post-single-3 .post-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
}



#related-posts-1 {
  padding: 60px 15px;
  margin: 0 auto;
}
#related-posts-1 .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#related-posts-1 .card {
  flex: 1 1 calc(33.333% - 20px);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
#related-posts-1 .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#related-posts-1 .card-body {
  padding: 15px;
}
@media (max-width: 992px) {
  #related-posts-1 .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #related-posts-1 .card {
    flex: 1 1 100%;
  }
}



#call-to-action-6 {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#call-to-action-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#call-to-action-6 .cta-content {
  position: relative;
  z-index: 1;
}
#call-to-action-6 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-6 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-6 .cta-btn {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background-color: #17a2b8;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-6 .cta-btn:hover {
  background-color: #138496;
}
@media (max-width: 767.98px) {
  #call-to-action-6 h2 {
    font-size: 28px;
  }
  #call-to-action-6 p {
    font-size: 16px;
  }
}


