/* ── Page Header ── */
    .page-header-section h1 {
      font-size: 28px;
      font-weight: 700;
      color: #0d6cb9;
      margin: 0;
    }
    .page-header-section h2 {
      font-size: 18px;
      font-weight: 700;
      margin: 4px 0 0;
    }
    
    
    .progress-table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #b72026; /* Dark red border */
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    margin-bottom: 30px;
  }
  
  .progress-table th {
    background-color: #1566b8; /* Blue header */
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 12px 15px;
    border: 3px solid #b72026;
  }
  
  .progress-table td {
    border: 2px solid #b72026;
    padding: 15px;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
  }
  
  .progress-table a {
    color: #1566b8;
    text-decoration: underline;
  }

  /* Custom list to get the exact "1)" numbering format */
  .progress-list {
    list-style-type: none;
    counter-reset: progress-counter;
    padding-left: 25px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  
  .progress-list > li {
    position: relative;
    margin-bottom: 15px;
  }
  
  .progress-list > li::before {
    content: counter(progress-counter) ")";
    counter-increment: progress-counter;
    position: absolute;
    left: -25px;
    top: 0;
  }
  
  .progress-list .nested-list {
    list-style-type: circle; /* Hollow circle bullets */
    padding-left: 30px;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  .progress-list .nested-list li {
    margin-bottom: 5px;
  }
  
  
  /* ── Academic Assessment Table Styles ── */
.methods-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 3px solid #b72026;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.methods-table th,
.methods-table td {
  border: 3px solid #b72026;
  padding: 12px 15px;
  vertical-align: top;
}

.methods-table thead .main-heading {
  background-color: #1566b8;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  border-color: #1566b8;
}

.methods-table .intro-cell {
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff; 
}

.methods-table .col-header {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}
.ArCol{
    width:40%;
}

.methods-table .desc-cell {
  width: 35%; 
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}

.methods-table .example-cell {
  width: 65%;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
}

.methods-table ul {
  margin-top: 5px;
  margin-bottom: 0;
  padding-left: 20px;
}

.methods-table ul li {
  margin-bottom: 5px;
}