.course-catalog table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.course-catalog table th,
.course-catalog table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.course-catalog table th {
    background-color: #d9edf7;
    color: black;
    font-weight: bold;
}

.course-catalog table tr:nth-child(odd) {
    background-color: #f3f3f3;
}

.course-catalog table tr:nth-child(even) {
    background-color: #ffffff;
}

.course-catalog h2 {
    font-family: "Gentona_SemiBold", Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 123%;
    color: #00337A;
    margin: 0px;
    padding: 0px;
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    display: block;
    clear: both;
    text-transform: uppercase;
}
  
