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

/* Hero Section */
.course-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  margin: 20px;
  background-color: #4c2180c4;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.hero-content {
  position: relative;
  text-align: center;
  width: 80%;
  z-index: 1;
}
.hero-content h1 {
  font-size: 2.5rem;
  color: rgb(247, 247, 247);
}
.hero-content p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Section headings */
h2 {
  color: #5e2b97; /* purple */
}

/* Features */
.course-features ul {
  list-style: none;
  padding: 0;
}
.course-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Meta info */
.pill {
  display: inline-block;
  background-color: #5e2b97;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Enroll button */
.course-enroll {
  text-align: center;
  margin-top: 30px;
}
.enroll-btn {
  background-color: #5e2b97;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
}
.enroll-btn:hover {
  background-color: #4c2180;
}
