#fw-section-rich-text-09f2c602-c547-41ea-b50f-e5998d30d1e3 {

/* Center the whole table */
table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  width: 60%; /* adjust as needed */
  text-align: center;
}

/* Style table headings */
th {
  font-weight: bold;
  padding: 10px;
  color: #002D62; /* navy blue tone */
}

/* Style table data cells */
td {
  padding: 8px 12px;
  color: #000;
}

/* Optional: Add a soft line between rows */
tr:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

/* Make it responsive */
@media (max-width: 768px) {
  table {
    width: 90%;
    font-size: 14px;
  }
}

}