body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
  color: #333;
}

.course-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);  /* Enhanced shadow */
  transition: box-shadow 0.3s ease;  /* Smooth transition for hover effect */
  position: relative;
}

.course-details:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);  /* More pronounced shadow on hover */
}

.course-info {
  flex: 1 1 60%;
  margin-right: 20px;
}

.instructor {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.instructor img {
  border-radius: 50%;
  margin-right: 10px;
  width: 60px;  /* Increased size for better visibility */
  height: 60px;
}

.instructor-name {
  margin: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.instructor-title {
  margin: 0;
  font-size: 1em;
  color: #555;  /* Slightly lighter color for subtitle */
}

.course-info p {
  margin: 10px 0;
  line-height: 1.6;
  color: #333;
  font-size: 1.1em;  /* Increased font size for better readability */
}

.course-info ul {
  list-style-type: disc;
  margin: 10px 0;
  padding-left: 20px;
  font-size: 1.1em;  /* Match the paragraph font size */
}

.course-info ul li {
  margin-bottom: 10px;
  font-weight: bold;  /* Emphasize list items */
}

.course-image {
  max-width: 300px;
  text-align: center;
  position: sticky;
  top: 20px;
  flex: 1 1 30%;
}

.course-image img {
  width: 100%;
  border-radius: 8px;
}

.course-image p {
  margin: 10px 0;
  font-weight: bold;
  color: #333;
  font-size: 1.1em;
}

.course-image button {
  background-color: #c4302b;
  color: #fff;
  border: none;
  padding: 15px 25px;  /* Increased padding for a larger button */
  font-size: 1.1em;  /* Slightly larger font size */
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;  /* Added transform transition */
}

.course-image button:hover {
  background-color: #a72a24;
  transform: translateY(-2px);  /* Slight lift effect on hover */
}

.course-image button:hover::after {
  content: attr(data-coupon);
  color: #fff;
  font-size: 1.0em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.course-image button:hover span {
  visibility: hidden;
}

.course-outcome {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);  /* Enhanced shadow */
  transition: box-shadow 0.3s ease;  /* Smooth transition for hover effect */
  margin-top: 20px;
}

.course-outcome:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);  /* More pronounced shadow on hover */
}

.course-outcome h2 {
  text-align: center;
  color: #333;
  font-size: 2em;
  margin-bottom: 20px;  /* Added margin-bottom for better spacing */
}

.course-outcome ul {
  list-style-type: disc;
  margin: 10px 0;
  padding-left: 20px;
  font-size: 1.1em;
}

.course-outcome ul li {
  margin-bottom: 10px;
}

.course-outcome p {
  margin: 10px 0;
  line-height: 1.6;
  color: #333;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .course-details {
    flex-direction: column;
  }

  .course-info {
    margin-right: 0;
  }

  .course-image {
    position: static;
    margin-top: 20px;
  }
}

.countdown-timer {
  text-align: center;
  font-size: 1.5em;
  color: #333;
  margin-top: 10px;
}

.what-you-get {
  background-color: #f8f8f8;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.what-you-get h3 {
  margin-top: 0;
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
}

.what-you-get ul {
  list-style-type: disc;
  padding-left: 20px;
}

.what-you-get ul li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.4;
}

.course-outcome ul li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.4;
}

.course-rating {
  color: #d35400 !important;
  font-size: 1.2em !important;
  font-weight: bold !important;
  margin: 20px auto !important;
  text-align: center !important;
  background-color: #fff3cd !important;
  padding: 15px 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
  width: 80% !important;
  display: block !important;
}
