/* Styling for the section containing reasons */
.jewl-reasons {
  /* Add any desired padding, margin, or other styles for the whole section here */
  /* For example: */
  /* padding: 20px; */
  /* background-color: #f8f8f8; */
  /* border-radius: 8px; */
}

/* Styling for the highlighted text within the heading */
.highlight-text {
  color: #0077b6; /* This is the blue color you had inline */
}

/* Styling for the unordered list of reasons */
.reason-list {
  list-style: none; /* Removes the default bullet points */
  padding-left: 0; /* Removes the default left padding from the list */
}

/* Optional: Style individual list items for better spacing */
.reason-list li {
  margin-bottom: 10px; /* Adds some space between list items */
  line-height: 1.5; /* Improves readability of text within list items */
}