/* ==================================================
     GLOBAL SETTINGS
  ================================================== */

  .page {
    --page-max-width: 820px;
    --banner-max-width: 730px;

    --font-primary: Arial, Helvetica, sans-serif;
    --font-highlight: Verdana, Arial, sans-serif;

    --color-text: #444345;
    --color-primary: #056771;
    --color-primary-dark: #044f57;
    --color-heading-blue: #215976;
    --color-highlight: #ff9900;
    --color-focus: #53b5bc;

    /* Funding notice colours */
    --color-notice-border: #fbaa19;
    --color-notice-text: #222222;
    --color-notice-background: #fff8e8;

    --color-yellow-background: #fff8e8;

    --font-size-body: 16px;
    --line-height-body: 1.6;
  }

  /* ==================================================
     BASE STYLES
  ================================================== */

  .page,
  .page * {
    box-sizing: border-box;
  }

  .page {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 18px 16px 40px;
    overflow-wrap: break-word;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
  }

h1,
h2,
h3,
p {
    padding: 0;
  }

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--color-text);
    line-height: 1.25;
  }

h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 6vw, 40px);
  }

h2 {
    margin-bottom: 8px;
    font-size: clamp(24px, 4vw, 28px);
  }

h3 {
    margin-bottom: 5px;
    font-size: 19px;
  }

p {
    margin: 0 0 10px;
  }

.btn a {
    color: var(--color-primary);
    font-weight: 700;
    text-underline-offset: 3px;
  }

.btn a:hover {
    text-decoration-thickness: 2px;
  }

.btn a:focus-visible {
    outline: 3px solid var(--color-focus);
    outline-offset: 3px;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
  }

  /* ==================================================
     HEADER
  ================================================== */

  .header {
    margin: 0;
    padding: 0;
  }

  .banner {
    display: block;
    width: 100%;
    max-width: var(--banner-max-width);
    height: auto;
    margin: 0 auto;
    border: 0;
  }

  .introduction {
    margin: 12px 0 0 !important;
    color: #000000;
    font-weight: 400;
  }

  /* ==================================================
     FUNDING NOTICE
  ================================================== */

.utap-support-notice {
	     margin-top: 22px;
        padding: 17px 18px;
        border-left: 4px solid #a52a2a !important;
        background-color: #fff7f3!important;
        color: #702020!important;
        font-weight: 700;
        line-height: 1.5;
	}
  
  .utap-disclaimer {
    margin-top: 28px;
    padding: 16px 18px;
    border-left: 4px solid #fbaa19 !important;
    background-color: #fff8e8 !important;
    font-size: 14px;
  }

  /* ==================================================
     BENEFITS
  ================================================== */

  .utap-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin: 18px 0 0;
    padding: 0;
  }

  .utap-benefit {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
  }

  .utap-benefit h2 {
    margin: 0 0 5px;
    color: var(--color-highlight);
    font-family: var(--font-highlight);
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
  }

  .utap-benefit p {
    margin: 0;
  }

  /* ==================================================
     CLAIM SECTION
  ================================================== */

  .utap-section {
    margin: 18px 0 0;
    padding: 0;
  }

 h2.claim-heading {
    margin: 0 0 10px;
    color: var(--color-heading-blue);
    font-weight: 700;
    font-style: italic;
  }

  .utap-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: utap-step;
  }

  .utap-step {
    position: relative;
    margin: 0 0 10px;
    padding: 9px 0 9px 44px;
    counter-increment: utap-step;
  }

  .utap-step:last-child {
    margin-bottom: 0;
  }

  .utap-step::before {
    position: absolute;
    top: 7px;
    left: 0;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    content: counter(utap-step);
  }

  .utap-step h3.heading {
    margin: 0 0 5px;
    color: var(--color-primary);
    font-weight: 700;
    font-style:italic;
  }

  .utap-step p {
    margin: 0 0 9px;
  }

  .utap-step p:last-child {
    margin-bottom: 0;
  }

  /* ==================================================
     ACTION BUTTONS
  ================================================== */

  .utap-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 10px 0 0;
    padding: 0;
  }

  .utap-claim-actions {
    margin-top: 10px;
  }

  .utap-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 11px 18px;
    border: 0;
    border-radius: 6px;
    background-color: var(--color-primary);
    color: #ffffff !important;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
  }

  .utap-button:hover,
  .utap-button:focus {
    background-color: var(--color-primary-dark);
    color: #ffffff !important;
    text-decoration: underline;
  }

  .utap-membership-faq {
    display: inline-block;
    margin: 0;
  }

  /* ==================================================
     DOCUMENTS NOTE
  ================================================== */

  .utap-documents {
    margin: 8px 0 0;
    padding: 12px 16px;
    border-radius: 6px;
    background-color: var(--color-yellow-background);
  }

  .utap-documents ul {
    margin: 6px 0 0;
    padding-left: 20px;
  }

  .utap-documents li {
    margin: 0 0 4px;
  }

  .utap-documents li:last-child {
    margin-bottom: 0;
  }

  /* ==================================================
     TABLET AND DESKTOP
  ================================================== */

  @media (min-width: 720px) {
    .utap-page {
      padding: 24px 24px 48px;
    }

    .utap-benefits {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
  }

  /* ==================================================
     MOBILE
  ================================================== */

  @media (max-width: 479px) {
    .utap-page {
      padding: 14px 14px 36px;
    }

    .utap-introduction {
      margin-top: 10px !important;
    }

    .utap-support-notice {
      margin-top: 14px;
      padding: 14px 15px;
    }

    .utap-benefits {
      margin-top: 16px;
      gap: 12px;
    }

    .utap-section {
      margin-top: 16px;
    }

    .utap-page #claim-heading {
      margin-bottom: 8px;
    }

    .utap-step {
      margin-bottom: 7px;
      padding: 8px 0 8px 41px;
    }

    .utap-step::before {
      top: 6px;
      width: 29px;
      height: 29px;
    }

    .utap-actions {
      gap: 9px;
      margin-top: 8px;
    }

    .utap-button {
      width: 100%;
    }

    .utap-membership-faq {
      width: 100%;
      text-align: center;
    }
  }