body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #555;
  line-height: 1.6;
}

.main-content {
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1,
h2,
h3,
h4 {
  color: #333;
  font-weight: bold;
}
h1.page-title {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
}
h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

p {
  margin-bottom: 10px;
}
p.mb-20 {
  margin-bottom: 20px;
}

section {
  margin-bottom: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}
.sub-section {
  margin-bottom: 20px;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul {
  list-style: disc;
}
ol {
  list-style-type: decimal;
}
ul li,
ol li {
  margin-bottom: 10px;
}

ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
ol > li > ol li {
  margin-bottom: 5px;
}

section ul > li > ul li {
  margin-left: 20px;
}

ul.no-list-style {
  list-style: none;
  padding-left: 0;
}

.table-bordered {
  border: 1px solid rgb(204, 204, 204);
  width: 100%;
  text-align: center;
  line-height: 1.8;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid rgb(204, 204, 204);
  padding: 8px;
  vertical-align: top;
}
.table-bordered thead td,
.table-bordered thead th {
  font-weight: bold;
  background-color: #f0f0f0;
  vertical-align: middle;
}
.table-bordered tbody td[rowspan] {
  vertical-align: middle;
}

.cell-align-left-list {
  text-align: left;
  padding-left: 3em;
}
.cell-align-left-list ul {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-top: 5px;
  margin-bottom: 5px;
}
.cell-align-left-list li {
  margin-bottom: 8px;
}

.bordered-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
}

.text-right {
  text-align: right;
}
.mt-40 {
  margin-top: 40px;
}
.mt-100 {
  margin-top: 100px;
}
