.white {
  color: white;
  font-weight: normal;
}

.soft {
  color: #9caaa5;
  font-weight: normal;
}

.footer-links {
    display: flex;
    justify-content: space-between;
  }

.footer-links .column {
  flex: 1;
}

.footer-links .column a {
  display: block;
  margin-bottom: 10px;
}

  
.section {
  padding: 5% 20%;
  /* color: #ffffff; */
}

.section-title {
  text-align: center;
  background: #2c323a;
  color: white;
}

.section-1 {
  background: #1a212a;
  color: white;
}

.section-2 {
  background: #2c323a;
  color: white;
}

.table-striped tbody tr:nth-child(odd) {
  /* Target odd table rows */
  background-color: #1a212a; /* Slightly darker background for even rows */
}
  
.table-striped tbody tr:nth-child(even) {
  /* Target even table rows */
  background-color: #2c323a; /* Light gray background for odd rows */
}