.course-single {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}
.course-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 8px solid #0291ed;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}
.hero-content .course-title {
  color: #f2f00c;
  font-size: 3.5em;
  margin: 0;
  font-family: "Raleway";
  font-weight: 800;
}
.course-details-container {
  max-width: 800px;
  margin: 30px auto 0px;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}
.back-navigation {
  margin-bottom: 20px;
  margin-top: 2em;
}
/* .back-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #f8842c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.2s ease;
} */

.back-button {
 background-color: #faa819;
    border-color: #faa819;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    color: #ffffff;
    font-family: Maitree;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 10px 50px;
    height: 39px;
    line-height: 36px;
    margin: 0;
}
/* .back-button:hover {
  background: #e67422;
  transform: translateX(-5px);
} */

.back-button:hover {
 color: #ffffff;
    background-color: #0291ed!important;
    border-color: #0291ed;
}


.back-arrow {
  margin-right: 10px;
  font-size: 1.2em;
}
.course-info-grid {
  background: #fff;

  padding: 40px;
}
.info-item {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
}
.info-item label {
  flex: 0 0 120px;
  font-weight: 700;
  color: #f8842c;
  position: relative;
}
.info-item label:after {
  content: "";
}
.info-item span {
  flex: 1;
  color: #000;
}
.info-item.description {
  display: block;
}
.info-item.description label {
  display: block;
  margin-bottom: 10px;
}
.description-content {
  color: #000;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero-content .course-title {
    font-size: 2.5em;
  }
  .course-details-container {
    margin-top: 40px;
  }
  .course-info-grid {
    padding: 30px;
  }
  .info-item {
    flex-direction: column;
  }
  .info-item label {
    flex: none;
    margin-bottom: 5px;
  }
  .back-button {
    width: 100%;
    justify-content: center;
    /* padding: 12px 0; */
  }
}
@media (max-width: 480px) {
  .hero-content .course-title {
    font-size: 2em;
  }
  .course-info-grid {
    padding: 20px;
  }
}

.course-footer-image img {
  width: 100% !important;
}
