.table-header {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.table-header .col1, .table-row .col1 {
    width: 10%;
    text-align: center;
}

.table-header .col2, .table-row .col2 {
    width: 50%;
}

.table-header .col3, .table-row .col3 {
    width: 15%;
    text-align: center;
}

.table-header .col4, .table-row .col4 {
    width: 25%;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9;
}

.intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-list {
    margin-top: 20px;
    padding-left: 20px;
}

.footer-list li {
    margin-bottom: 5px;
}

.footer-list li a {
    color: #ff6200;
    text-decoration: none;
}

.footer-list li a:hover {
    text-decoration: underline;
}

.program-links {
    text-decoration: none;
    color: #e89c10;
}

@media (max-width: 768px) {
  .table-header,
  .table-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-header .col1, .table-row .col1,
  .table-header .col2, .table-row .col2,
  .table-header .col3, .table-row .col3,
  .table-header .col4, .table-row .col4 {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
  }

  .intro {
    font-size: 1em;
  }

  h1 {
    font-size: 1.2em;
  }

  h2 {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .intro {
    font-size: 0.95em;
  }

  h1 {
    font-size: 1em;
  }

  h2 {
    font-size: 0.9em;
  }
}
