body {
    font-family: 'Montserrat', sans-serif;
}
    .container {
      max-width: 960px;
      margin: 40px auto;
      padding: 0 20px;
      background-color: #fff;
    }

    h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      color: #000043;
      margin-bottom: 0.3em;
    }

    .institution {
      font-weight: bold;
      margin-bottom: 20px;
    }

    .intro-statement, .application-note {
      
      color: #000043;
      padding: 10px 15px;
      margin: 10px 0;
      border-radius: 4px;
      border-color: #000043;
      border-style: solid;
      font-size: 14px;
    }

    .course-details {
      display: flex;
      flex-wrap: wrap;
      padding: 20px 0;
      border-bottom: 1px solid #ccc;
    }

    .course-details .detail {
      width: 50%;
      padding: 10px 0;
    }

    .course-details .detail strong {
      display: inline-block;
      width: 200px;
    }

    section {
      padding: 20px 0;
      border-bottom: 1px solid #ccc;
    }

    section h2 {
      font-family: 'Montserrat', sans-serif;
      color: #000043;
      margin-bottom: 10px;
    }

    section p {
      line-height: 1.6;
    }

    .downloads a {
      display: inline-block;
      margin: 10px 10px 0 0;
      padding: 10px 15px;
      background-color: #000043;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
    }

    .downloads a:hover {
      background-color: #000043;
    }

    .updated {
      font-size: 11px;
      text-align: right;
      margin-top: 20px;
      color: #666;
    }

    @media (max-width: 600px) {
      .course-details .detail {
        width: 100%;
      }

      .course-details .detail strong {
        width: 100%;
        margin-bottom: 5px;
      }
    }