.module-section {
  width: 100%;
  max-width: 100%;
  padding: 24px 28px;
  border-radius: 10px;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(255, 182, 193, 0.25); /* soft pink glow */
  font-family: 'Inter', sans-serif;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.module-section:hover {
  box-shadow: 0 8px 22px rgba(194, 182, 255, 0.5);
}

.module-section h3,h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #33a2d6; /* pastel rose */
  letter-spacing: 0.5px;
}

.module-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #6f2c3f;
  transition: color 0.3s ease;
}

.module-section ul li::before {
  content: "●";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #f08080; /* light coral */
  font-size: 20px;
}

.module-section ul li:hover {
  color: #a83259;
  cursor: default;
}