body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

<style>
  .canprd-site-header {
    background-color: #ffffff;
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid #eaeaea; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  .canprd-header-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .canprd-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .canprd-left img,
  .canprd-center img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .canprd-right {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-end;
  }

  .canprd-right img {
    height: 50px; 
    width: auto;
    object-fit: contain;
    display: block;
  }

  .canprd-date-bar {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0; 
    color: #2b3a6e;
    font-size: 1.75rem;
    font-weight: 700;
  }

  /* --- MOBILE SPECIFIC FIXES --- */
  @media (max-width: 850px) {
    .canprd-logo-row {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    /* Keep the leaf and CanPRD text side-by-side */
    .canprd-left {
      width: 25%;
      display: flex;
      justify-content: flex-end;
    }

    .canprd-center {
      width: 65%;
      display: flex;
      justify-content: flex-start;
    }

    /* Shrink the main logos a bit to fit the phone screen */
    .canprd-left img, 
    .canprd-center img {
      height: auto;
      max-height: 80px;
      width: 100%;
    }

    /* Put the two smaller logos side-by-side underneath */
    .canprd-right {
      width: 100%;
      height: auto;
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
      margin-top: 0.5rem;
    }

    .canprd-right img {
      height: auto;
      max-height: 45px;
    }

    .canprd-date-bar {
      font-size: 1.25rem;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
    }
  }
</style>