.courses {
  background: #ffe6f0;
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.courses h2 {
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 25px;
  font-weight: bold;
}

.course-category {
  margin-bottom: 30px;
  background: #fff0f6;
  padding: 20px;
  border-radius: 15px;
  box-shadow: inset 0 0 8px rgba(214, 51, 132, 0.15);
}

.course-category h3 {
  font-size: 1.4rem;
  color: #b30059;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff99c8;
  display: inline-block;
  padding-bottom: 5px;
}

.course-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-category li {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  font-size: 1.1rem;
  color: #333;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-category li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.course-name {
  font-weight: 600;
}

.price {
  color: #d63384;
  font-weight: bold;
}