table {
    border-collapse: collapse;
    width: 100%;
    /* padding: 1cm; */
    /* margin: 1cm; */
  }

.table th {
  /* border: 1px solid black; */
  padding: 15px; /* You can remove this line if you want */
  text-align: left;
  /* font-weight: bold; */
  font-size: 22px;
  color: #254f86;
  
}

table tr td:first-child {
    /* Your styles for the first <td> go here */
    font-weight: bold; /* Example: making the text bold */
    color: #254f86; /* Example: changing the text color */
    font-size: 20px;
    /* font-style: italic; */
    vertical-align: middle;
    padding: 15px; 
  }

table tr td:nth-child(2) {
    font-size: 18px;
    vertical-align: middle;
    text-align: justify;
    padding: 15px; 

}

ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}

li {
    margin-bottom: 5px;
    position: relative;
}

li::before {
    content: '\2022'; /* Unicode character for a bullet point */
    color: #254f86; /* Color of the bullet */
    display: inline-block;
    width: 1em; /* Adjust the spacing between bullet and text */
    margin-right: 0.5em; /* Adjust the spacing between bullet and text */
}
