
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#post-single-6 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
}
#post-single-6 .row {
  display: flex;
  gap: 30px;
}
#post-single-6 .content-main {
  flex: 3;
}
#post-single-6 .sidebar {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  font-size: 0.9rem;
}
#post-single-6 .sidebar p {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #post-single-6 .row {
    flex-direction: column;
  }
  #post-single-6 .sidebar {
    position: static;
  }
}



#call-to-action-13 {
  padding: 120px 0;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}
#call-to-action-13::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
#call-to-action-13 .container {
  position: relative;
  z-index: 1;
}
#call-to-action-13 h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#call-to-action-13 .btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  animation: pulse 2s infinite alternate;
}
#call-to-action-13 .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
#call-to-action-13 .btn.primary {
  background-color: #007bff;
  color: #fff;
}
#call-to-action-13 .btn.primary:hover {
  background-color: #0056b3;
}
#call-to-action-13 .btn.secondary {
  background-color: #ffc107;
  color: #333;
}
#call-to-action-13 .btn.secondary:hover {
  background-color: #e0a800;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}



#related-posts-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 800px;
}
#related-posts-10 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#related-posts-10 li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
#related-posts-10 li:last-child {
  border-bottom: none;
}
#related-posts-10 li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}
#related-posts-10 .item-content h5 {
  margin: 0 0 5px;
  font-weight: bold;
}
#related-posts-10 .item-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
#related-posts-10 .btn-readmore {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}


