
#post-single-7 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#post-single-7 .row {
  display: flex;
  gap: 30px;
}
#post-single-7 .image-column {
  flex: 1;
}
#post-single-7 .image-column img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
#post-single-7 .content-column {
  flex: 2;
}
#post-single-7 .content-column h1 {
  margin-bottom: 15px;
}
#post-single-7 .post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #post-single-7 .row {
    flex-direction: column;
  }
}



#related-posts-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#related-posts-4 .carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
#related-posts-4 .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#related-posts-4 .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 4px;
}
#related-posts-4 .btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #related-posts-4 .carousel-item img {
    height: 250px;
  }
}



#faq-5 {
  padding: 60px 0;
  background-color: #ffffff;
}
#faq-5 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-5 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-5 .faq-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#faq-5 .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#faq-5 .faq-icon {
  font-size: 30px;
  color: #17a2b8;
  margin-right: 20px;
}
#faq-5 .faq-content {
  flex: 1;
}
#faq-5 .faq-question {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#faq-5 .faq-answer {
  font-size: 14px;
  color: #6c757d;
}


