
  :root {
    --background-colour: #fff;
    --text-colour: #000;
    --primary-colour: #025A92;
    --secondary-colour: #B30000;
    --border-colour: #e4e4e4;
    --copy-colour: #757575;
    --font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-size: 17px;
    --line-height: 1.8;
    --letter-spacing: 0.3px;
    --padding-small: 7px 10px;
    --padding-medium: 14px;
    --padding-large: 20px;
    --margin-small: 1em 0;
    --margin-medium: 20px auto;
    --margin-large: 30px;
    --spacing-base: 1rem;
    --spacing-small: 0.3rem;
  }
  
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-family);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    background-color: var(--background-colour);
    color: var(--text-colour);
    font-size: var(--font-size);
    font-weight: 400;
  }
  
  *, *:after, *:before {
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    margin: var(--spacing-small) 0;
  }
  
  h1 { font-size: 2rem; }
  .h2, h2 { font-size: 1.75rem; }
  .h3, h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.125rem; }
  h6 { font-size: 1rem; }
  
  table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    margin-bottom: var(--margin-medium);
    overflow-x: auto;
    display: block;
  }
  
  thead { background: #f9f9f9; }
  
  th, td { padding: var(--padding-small); }
  
  thead th { padding: var(--padding-medium); }
  
  tbody th, tbody td {
    font-weight: 400;
    border: 1px solid var(--border-colour);
  }
  
  :focus { outline: 0; }
  
  img, picture, svg {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .msgist, .b { font-weight: 700; }
  
  .italic, .i { font-style: italic; }
  
  .alignnone { margin: 5px 20px 20px 0; }
  
  .aligncenter { margin: var(--margin-medium); }
  
  a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  #maincontent {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 240px;
    padding: 0 15px;
    clear: both;
  }
  
  p {
    hyphens: auto;
    margin: var(--margin-small);
  }
  
  a {
    text-decoration: none;
    color: var(--primary-colour);
    font-weight: 500;
  }
  
  nav a, a:link, a:visited, a:active { text-decoration: none; }
  
  a:hover { text-decoration: underline; }
  
  #copyright-note {
    font-weight: 500;
    font-size: 16px;
    color: var(--copy-colour);
    margin: 0 auto;
    clear: both;
    width: 100%;
  }
  
  .main-container {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0;
  }
  
  header { width: 100%; }
    
  #header {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
  .clearfix:before, .clearfix:after {
    content: "";
    display: table;
  }
  
  .clearfix:after { clear: both; }
  
  .clearfix { clear: both; }
  
  article img.center,
  article img.aligncenter,
  .wp-caption.aligncenter {
    margin: 0.3em auto 0.5em;
    display: block;
  }
  
  .wp-caption {
    background: var(--background-colour);
    border: 1px solid #f0f0f0;
    max-width: 100%;
    padding: 5px 3px 10px;
    text-align: center;
  }
  
  .wp-caption p.wp-caption-text {
    line-height: 17px;
    margin: 0;
    padding: 0 4px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
  }
  
  article img.aligncenter,
  article img.alignnone {
    margin: 1em auto;
    display: block;
    clear: both;
  }
  
  input, textarea, select {
    padding: 8px 12px;
    font-size: 14px;
    color: #444;
    border: 1px solid var(--border-colour);
  }
  
  hr {
    width: 100%;
    margin: 10px 0;
    border-bottom: 1px solid var(--primary-colour);
  }
  
  footer {
    background: var(--primary-colour);
    margin-top: var(--margin-large);
    position: relative;
    clear: both;
    content-visibility: auto;
  }
  
  .copyrights {
    float: left;
    width: 100%;
    clear: both;
    padding-top: var(--padding-large);
    background: #F5F5F5;
    text-align: center;
  }
  
  .avatar {
    float: left;
    border-radius: 50%;
  }
  
  .update {
    font-size: 21px;
    margin-bottom: 5px;
  }
  
  .home-title {
    display: block;
    margin: 0;
  }
  
  .headingblue { color: var(--primary-colour); }
  
  a.my-but {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-colour);
    border: 2px solid var(--primary-colour);
    border-radius: 15px;
    padding: 5px 20px;
    text-transform: uppercase;
  }
  
  a.my-but:hover {
    background-color: var(--primary-colour);
    color: var(--background-colour);
  }
  
  .tkicon, .twittericon, .fbicon {
    display: inline-block;
    font-size: 24px;
    margin: 0 18px 0 0;
  }
  
  .article {
    width: 100%;
    float: left;
    margin-bottom: 5px;
  }
  
  .widgetheading {
    font-size: 22px;
    font-weight: 700;
    padding: 0;
  }
  
  .headingorange { color: var(--secondary-colour); }
  
  table.courses {
    border: 0;
    width: 100%;
    border-collapse: collapse;
  }
  
  table.courses td p {
    margin: 0;
  }
  
  table.courses td p strong { color: #5b9ae8; }
  
  table.courses tr td:first-child {
    margin: 5px auto;
    padding: 0;
  }
  
  table.courses tbody td {
    font-weight: 400;
    border-bottom: 0 solid var(--border-colour);
  }
  
  .msg-icon {
    display: inline-block;
    fill: var(--secondary-colour);
    font-size: 16px;
    height: 1em;
    width: 1em;
  }
  
  .msg {
    max-width: 98%;
    display: block;
    border: 1px solid #eee;
    padding: var(--padding-large) 0 8px;
    margin: 10px auto;
    font-weight: 700;
    font-style: italic;
  }
  
  .read-also {
    background: var(--background-colour);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 95%;
    margin: 15px auto 25px;
    border-left: 3px solid var(--secondary-colour);
    padding: 0.1em 0 0.1em 1.5em;
    display: block;
  }
  
  .read-also ul {
    margin-left: 0.5em;
    padding-left: 0;
    list-style: none;
  }
  
  .read-also ul li {
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-colour);
    margin-bottom: 0.5em;
  }
  
  .read-also ul li:before {
    content: "*";
    color: var(--secondary-colour);
    font-weight: 900;
    display: inline-block;
    width: 0.7em;
    margin-left: -1em;
  }
  
  img {
    margin: 0 auto;
  }
  
  .navfo {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .navfo li {
    margin: 5px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .navfo li a, .c { color: var(--text-colour); }
  
  .navfo li a:hover { text-decoration: none; }
  
  .navitem { display: flex; align-items: center; }
  
  .in { font-weight: 900; }
  
  .read-also hr {
    width: 30%;
    margin: 0 0 10px;
    border: 1px solid var(--primary-colour);
  }
  
  .s_m { margin: 0 auto 10px; }
  
  form, fieldset { border: 0; }
  
  blockquote {
    border-left: 4px solid var(--primary-colour);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.15em;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .sumt {
    font-weight: 500;
    font-size: 18px;
    border-top: 1px solid var(--primary-colour);
    border-bottom: 1px solid var(--primary-colour);
    padding: 0 20px;
    margin: 5px 0;
  }
  
  input { border: 1px solid #fff; }
  
  abbr[title] {
    font-style: italic;
    border-bottom: none;
    text-decoration: none;
    cursor: help;
  }
  
  .adg { padding-bottom: 80px; }
  
  .sim {
    margin: 0.2em 0 0.1em 15px;
    padding-left: 15px;
  }
  
  .sim:before { content: none; }
  
  .topda a:hover { text-decoration: underline; }
  
  .topda {
    display: block;
    max-width: 1200px;
    text-align: center;
    margin: 20px auto;
    font-size: 16px;
    min-height: 30px;
  }
  
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #025A92;
    padding: 8px;
    z-index: 100;
    transition: top 0.2s ease-in-out;
  }
  
  .skip-link:focus {
    top: 0;
    outline: 2px solid #025A92;
    outline-offset: 2px;
  }
  
  .author-bo {
    border-bottom: 1px solid #025A92;
    color: #000;
    padding: 30px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .author-descriptio { margin: 10px; }
  
  a, h2, h3, h4, h5 { scroll-margin-top: 70px; }
  
  .sheader { padding: 5px; }
  
  #toc_container {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    margin: 20px auto;
  }
  
  .ad-cont {
    display: block;
    margin: 15px auto;
    min-height: 200px;
    width: 100%;
  }
  
  .mmm { overflow: hidden; }
  
  .widget-title {
    text-transform: uppercase;
    border-bottom: 5px solid #025A92;
    text-align: center;
  }
  
  .widget ul {
    margin: 0;
    padding: 0;
  }
  
  .widget li {
    list-style-type: none;
    margin-left: 17px;
    margin-bottom: 7px;
    border-bottom: 1px dotted #d7d7d7;
    padding: 8px 12px;
  }
  
  .widget ul { display: block; }
  
  .site-header {
    position: relative;
    width: 100%;
    height: 60px;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    overflow-x: visible;
    align-items: center;
    justify-content: space-between;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .main-nav.open {
    display: block;
    transform: translateX(0);
  }
  
  body.menu-open { overflow: hidden; }
  
  .main-nav .close-nav {
    background: none;
    border: none;
    color: #B30000;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-weight: 700;
  }
  
  .main-nav .close-nav.active { color: #B30000; }
  
  .main-nav .nav-list {
    list-style: none;
    padding: 0;
  }
  
  .main-nav .nav-list li {
    margin-bottom: 10px;
    position: relative;
  }
  
  .main-nav .nav-list li a {
    text-decoration: none;
    color: #000;
    white-space: nowrap;
  }
  
  .main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    border: 1px solid #ddd;
    list-style: none;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    width: max-content;
  }
  
  .main-nav .dropdown.open { display: block; }
  
  .main-nav .dropdown li { margin-bottom: 5px; }
  
  .main-nav .dropdown li a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
  }
  
  .main-nav .dropdown li a:hover { text-decoration: none; }
  
  .main-nav .dropdown .dropdown {
    display: none;
    background: #fff;
    border: none;
    padding: 10px 0;
    box-shadow: none;
  }
  
  .main-nav .dropdown .dropdown.open { display: block; }
  
  .main-nav .dropdown .dropdown li {
    border-bottom: 1px solid #ddd;
  }
  
  .main-nav .dropdown .dropdown li:last-child { border-bottom: none; }
  
  .toggle-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
  }
  
  .toggle { margin-left: 10px; font-size: 18px; }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 10px;
  }
  
  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
  }
  
  .mlink-style {
    all: unset;
    display: inline;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .form-inline { align-items: center; }
  
  .form-control {
    border: 1px solid #B30000;
    border-radius: 2px;
    padding: 10px;
  }
  
  .btn:active, .btn:focus, .form-control:focus {
    outline: 0;
    box-shadow: none;
  }
  
  .form-control::placeholder {
    color: #000;
    opacity: 1;
  }
  
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  .search-container {
    position: relative;
    display: inline-block;
  }
  
  .search-input {
    padding-right: 30px;
  }
  
  .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    fill: #B30000;
  }
  
  .nav-list { margin: 0; padding: 0; }
  
  .reading-time {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .reading-time a { color: #555; }
  
  .reading-time-icon {
    margin-right: 4px;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }
  
  .myschoolgistsharing {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    margin: 18px auto 1rem;
    height: auto;
  }
  
  .myschoolgistsharing .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: #fff;
  }
  
  .myschoolgistsharing .button svg {
    width: 1.2em;
    height: 1.2em;
  }
  
  .myschoolgistsharing__icon { fill: currentColor; }
  
  .myschoolgistsharing a.button {
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    line-height: 1;
    margin: 8px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
  }
  
  .myschoolgistsharing__buttons {
    display: flex;
    flex-wrap: wrap;
  }
  
  .myschoolgistsharing__buttons a.button {
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    flex: 1;
  }
  
  .myschoolgistsharing__icon + .sss-name {
    margin-left: 8px;
    font-weight: 600;
    height: auto;
  }
  
  .myschoolgistsharing .button.twitter { background-color: #000; }
  
  .twitter { color: #fff; }
  
  .myschoolgistsharing .button.facebook { background-color: #3b5998; }
  
  .myschoolgistsharing .button.whatsapp { background-color: #075e54; }
  
  .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .breadcrumb-item a {
    color: #000;
    text-decoration: none;
  }
  
  .breadcrumb-item a:hover { text-decoration: underline; }
  
  .breadcrumb-item:not(:last-child)::after {
    content: "»";
    margin: 0 10px;
    color: #000;
  }
  
  .breadcrumb-item svg {
    fill: black;
    vertical-align: middle;
    display: inline-block;
    height: 14px;
  }
  
  .separator { color: #000; }
  
  .ad-container {
    min-height: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .ad-container ins { width: 100%; }
  
  .rads {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
  }
  
  .bads {
    position: absolute;
    top: -30px;
    right: 15px;
    color: #025A92;
    background-color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }
  
  .ad-wrapper {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  
  #adsContainer ins.adsbygoogle {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  .botbox {
    background-color: var(--background-colour);
    color: var(--text-colour);
    border-left: 4px solid var(--primary-colour);
    padding: 1rem 1.25rem;
    margin: 2rem auto;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 700px;
    text-align: center;
  }
  
  .botbox .b {
    font-weight: bold;
    color: var(--text-colour);
  }
  
  .botbox a,
  .botbox .b.phone {
    color: var(--primary-colour);
    word-break: break-word;
  }
  
  .botbox p {
    margin: 0;
  }
  
  .logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .logo-container svg {
    width: 100px;
    height: 40px;
  }
  
  .logo-container a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
  }
  

  
  /* Combined Media Query for max-width: 768px */
  @media (max-width: 768px) {
    :root { --font-size: 16px; }
    h1 { font-size: 1.75rem; }
    .h2, h2 { font-size: 1.5rem; }
    .h3, h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.875rem; }
    .reading-time { font-size: 12px; }
    .breadcrumb { font-size: 12px; }
    .breadcrumb-item:not(:last-child)::after { margin: 0 8px; }
    main { margin: 3px; }
  }
  
  @media (min-width: 768px) {
    .widget ul {
      column-count: 3;
      column-gap: 20px;
    }
    .widget li { break-inside: avoid; }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .adg { padding-bottom: 100px; }
  }
  
  @media (min-width: 992px) {
    .adg { padding-bottom: 100px; }
  }
  
  @media (min-width: 1200px) {
    .main-nav .close-nav, .menu-toggle { display: none; }
    .main-nav {
      display: block;
      position: static;
      transform: none;
      background: #fff;
      color: #000;
      padding: 0;
      margin-right: 0;
    }
    .main-nav .nav-list {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: nowrap;
    }
    .main-nav .nav-list li {
      margin: 0 15px;
      position: relative;
    }
    .main-nav .nav-list li a {
      color: #000;
      text-decoration: none;
      white-space: nowrap;
    }
    .main-nav .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: none;
      padding: 10px 0;
      box-shadow: none;
      width: max-content;
    }
    .main-nav .dropdown .dropdown {
      position: absolute;
      top: 0;
      left: 100%;
      width: max-content;
    }
    .main-nav .dropdown.open { display: block; }
    .main-nav .toggle-link .toggle { display: inline-block; }
    .main-nav .dropdown li {
      margin-bottom: 5px;
      border-bottom: 1px solid #ddd;
    }
    .main-nav .dropdown li:last-child { border-bottom: none; }
    .main-nav .dropdown li a {
      color: #000;
      text-decoration: none;
      padding: 10px 20px;
      display: block;
    }
    .main-nav .dropdown li a:hover { text-decoration: underline; }
    .mlink-style { color: #000; }
  }
  
  @media (max-width: 1199px) {
    .main-nav .dropdown {
      display: none;
      position: static;
      background: inherit;
      border: none;
      padding: 0;
      box-shadow: none;
      width: 100%;
    }
    .main-nav .dropdown.open { display: block; }
    .main-nav .nav-list li { margin-bottom: 0; }
    .main-nav .nav-list li .dropdown li {
      padding: 10px 20px;
      border-top: 1px solid #ddd;
    }
    .main-nav .dropdown li a { color: #000; }
    .main-nav .dropdown { position: static; width: 100%; }
    .main-nav .dropdown .dropdown { position: static; padding-left: 20px; }
    .main-nav { overflow-y: auto; height: 100vh; }
    button.mnavv, .mnavv { padding: 10px 20px; }
  }
  
  @media screen and (max-width: 865px) {
    .main-container {
      position: relative;
      left: 0;
    }
    .mobile-menu-active .main-container {
      left: 300px;
    }
  }
  
  @media screen and (max-width: 728px) {
    .widget-header {
      max-width: 100%;
      float: left;
      margin: 0 0 10px;
    }
  }
  
  @media screen and (max-width: 550px) {
    .sbutton { float: right; }
  }
  
  @media screen and (max-width: 480px) {
    .copyrights { text-align: center; }
    #copyright-note { float: none; width: 100%; }
  }
  
  @media (max-width: 600px) {
    main { margin: 3px; }
  }
  
  @media print {
    .myschoolgistsharing { display: none; }
  }
  
  @media only screen and (max-width: 767px) {
    .myschoolgistsharing .sss-name {
      position: absolute;
      clip: rect(1px, 1px, 1px, 1px);
      height: 1px;
      width: 1px;
      border: 0;
    }
  }
  
  @media (max-width: 319px) {
    .ad-wrapper, #adsContainer ins.adsbygoogle {
      width: 300px !important;
      height: 100px !important;
      margin: 0 auto !important;
    }
  }
  
  @media (min-width: 320px) and (max-width: 727px) {
    .ad-wrapper, #adsContainer ins.adsbygoogle {
      width: 320px !important;
      height: 100px !important;
      margin: 0 auto !important;
    }
  }
  
  @media (min-width: 728px) {
    .ad-wrapper, #adsContainer ins.adsbygoogle {
      width: 728px !important;
      height: 90px !important;
      margin: 0 auto !important;
    }
  }