@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

.wrapper {
    width: 90%;
    max-width: 1240px;
    margin: 30px auto;
}

.title {
    font-weight: bold;
}

p+p {
    margin-top: 20px;
}

p {
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    text-decoration: normal;
    vertical-align: baseline;
    line-height: 1.6667;
}


a {
    color: rgba(0, 101, 128, 1);
}

/* Apply border to table and cells */
table {
  border: 1px solid black; /* Solid black border */
}
th, td {
  border: 1px solid black; /* Solid black border */
  padding: 0.5rem; /* Optional: Add padding for content */
}

ul{
    margin: 20px 0px;
    margin-left: 30px;
}
ul li{
    list-style: square;
    line-height: 1.6667;
}
ul li+li{
    margin-top: 10px;
}