* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #082b52;
      background: #ffffff;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* Header - matched to supplied reference */
    header {
      background: #ffffff;
      border-bottom: 1px solid #edf1f5;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    header .container {
      max-width: 100%;
      padding: 0 38px;
    }

    .nav {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 9px;
      font-weight: 800;
      color: #063463;
      line-height: .95;
      letter-spacing: .15px;
      flex: 0 0 auto;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      position: relative; 
	  background-image: url("./images/logo.png");
	  background-size: contain;
	  background-repeat: no-repeat;
	  background-position: center;
    }

    .logo-icon::after {
      width: 5px;
      height: 16px;
      top: 6px;
      left: 12px;
    }

    .logo-text {
      font-size: 15px;
      line-height: 1.05;
    }

    .logo-text small {
      display: block;
      font-size: 12px;
      letter-spacing: .2px;
      margin-top: 1px;
    }

    nav {
      margin-left: auto;
      margin-right: 58px;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 31px;
      font-size: 13px;
      color: #111827;
      font-weight: 500;
    }

    nav a.active,
    nav a:hover {
      color: #0066c9;
    }

    .download-btn {
      background: #064f9f;
      color: #ffffff;
      min-width: 150px;
      height: 38px;
      padding: 0 18px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      box-shadow: none;
      white-space: nowrap;
    }

    /* Hero */
    .hero {
      background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #edf5fb 48%, #edf5fb 100%);
    }

    .hero-grid {
      min-height: 480px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 36px;
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 58px);
      line-height: 1.08;
      margin-bottom: 18px;
      letter-spacing: -1.5px;
      color: #072f5f;
    }

    .hero p {
      font-size: 20px;
      color: #1f2937;
      max-width: 560px;
      margin-bottom: 24px;
    }

    .store-buttons,
    .app-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .store-badge {
      background: #050505;
      color: white;
      min-width: 195px;
      height: 62px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(0,0,0,.18);
    }

    .store-badge small {
      display: block;
      font-size: 11px;
      font-weight: 500;
      line-height: 1;
      opacity: .9;
    }

    .store-badge span {
      display: block;
      font-size: 22px;
      line-height: 1.05;
    }

    .badge-icon {
      font-size: 30px;
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 650px;
    }

    .mini-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #0b3765;
      font-size: 14px;
    }

    .mini-feature strong {
      display: block;
      font-size: 15px;
    }

    .line-icon {
      width: 34px;
      height: 34px;
      border: 2px solid #0964bd;
      color: #0964bd;
      display: grid;
      place-items: center;
      border-radius: 6px;
      font-weight: bold;
      flex: 0 0 34px;
    }

    .hero-image {
      min-height: 480px;
      border-bottom-left-radius: 70px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #f3eee8, #d8e3df);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .person-card {
      width: 86%;
      max-width: 470px;
      background: rgba(255,255,255,.66);
      border-radius: 28px;
      padding: 34px;
      text-align: center;
      box-shadow: 0 28px 60px rgba(0,0,0,.12);
    }

    .avatar {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #f6c7aa, #a85d37);
      position: relative;
    }

    .avatar::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 90px;
      background: #6b3f2c;
      border-radius: 100px 100px 30px 30px;
      left: -15px;
      top: -20px;
    }

    .box {
      margin: 0 auto;
      width: 330px;
      max-width: 100%;
      height: 170px;
      background: #c8945d;
      border: 3px solid #7a4d25;
      border-radius: 8px;
      display: grid;
      place-items: center;
      color: #063463;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(0,0,0,.16);
    }

    /* How it works */
    .how {
      background: #eaf4fc;
      padding: 28px 0 34px;
      text-align: center;
    }

    .section-title {
      font-size: 32px;
      margin-bottom: 28px;
      color: #082b52;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      align-items: start;
    }

    .step {
      position: relative;
      padding: 0 20px;
    }

    .step-icon {
      margin: 0 auto 14px;
      width: 92px;
      height: 92px;
      border: 5px solid #0b65b9;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 42px;
      color: #0b65b9;
      background: white;
      position: relative;
    }

    .step-number {
      position: absolute;
      top: -18px;
      left: calc(50% - 62px);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #005bb8;
      color: white;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 20px;
    }

    .step h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .step p {
      color: #28394d;
      font-size: 15px;
      max-width: 250px;
      margin: 0 auto;
    }

    /* Why */
    .why {
      padding: 22px 0 34px;
      text-align: center;
    }

    .reasons {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 22px;
      margin-top: 20px;
    }

    .reason-icon {
      width: 58px;
      height: 58px;
      border: 3px solid #0b65b9;
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      font-size: 28px;
      color: #0b65b9;
    }

    .reason p {
      color: #111827;
      font-size: 15px;
      line-height: 1.25;
    }

    /* App */
    .app-section {
      padding: 24px 0 48px;
    }

    .app-card {
      background: #eaf4fc;
      border-radius: 16px;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 40px;
      align-items: center;
      padding: 36px 56px;
    }

    .phone {
      width: 220px;
      height: 420px;
      background: #111827;
      border-radius: 34px;
      margin: 0 auto;
      padding: 16px;
      transform: rotate(-8deg);
      box-shadow: 0 24px 45px rgba(0,0,0,.25);
    }

    .phone-screen {
      height: 100%;
      border-radius: 24px;
      background: #f8fbff;
      padding: 20px 14px;
      color: #123f70;
    }

    .phone-header {
      background: #0b65b9;
      color: white;
      border-radius: 20px 20px 12px 12px;
      padding: 18px 10px;
      font-weight: 700;
      margin: -4px -2px 18px;
      font-size: 14px;
    }

    .phone-item {
      background: white;
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,.08);
      font-size: 12px;
      display: flex;
      gap: 9px;
      align-items: center;
    }

    .app-content h2 {
      font-size: 32px;
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .check-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .check-list li {
      margin-bottom: 10px;
      color: #1f2937;
      font-size: 17px;
    }

    .check-list li::before {
      content: "✓";
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      margin-right: 10px;
      border-radius: 50%;
      background: #28a745;
      color: white;
      font-weight: 800;
    }

    .available {
      font-weight: 800;
      color: #0f5d73;
      margin-bottom: 12px;
    }

    /* Trust strip */
    .trust-strip {
      background: white;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,.08);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      gap: 18px;
      padding: 30px 40px;
      margin-bottom: 48px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      color: #111827;
      border-right: 1px solid #d7dde5;
      min-height: 58px;
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .nhs-logo {
      font-size: 34px;
      font-weight: 900;
      color: #0066c9;
      font-style: italic;
    }

    .help-bar {
      background: #0056ad;
      color: white;
      padding: 18px 0;
    }

    .help-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      font-weight: 600;
    }

    .outline-btn {
      border: 1px solid white;
      color: white;
      padding: 10px 34px;
      border-radius: 8px;
    }

    /* Footer */
    footer {
      background: #052d58;
      color: white;
      padding: 42px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr 1.2fr;
      gap: 34px;
      margin-bottom: 32px;
    }

    footer h4 {
      margin-bottom: 14px;
      font-size: 17px;
    }

    footer ul {
      list-style: none;
    }

    footer li,
    footer p {
      font-size: 14px;
      color: #d9e8f7;
      margin-bottom: 7px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.15);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
      color: #d9e8f7;
    }



    /* Hero - matched to supplied reference image */
    .hero {
      background: #ffffff;
      border-bottom: 1px solid #eef3f8;
    }

    .hero .container {
      max-width: 100%;
      padding: 0 0 0 74px;
	  background-color: #f2f0f0;
    }

    .hero-grid {
      min-height: 382px;
      grid-template-columns: 52% 48%;
      gap: 0;
      align-items: stretch;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 18px 20px 20px 0;
    }

    .hero h1 {
      font-size: 41px;
      line-height: 1.12;
      letter-spacing: -1px;
      margin-bottom: 10px;
      color: #062e5b;
      font-weight: 800;
    }

    .hero p {
      font-size: 16px;
      line-height: 1.45;
      max-width: 430px;
      margin-bottom: 19px;
      color: #1f2937;
    }

    .hero .store-buttons {
      gap: 22px;
      margin-bottom: 31px;
    }

    .hero .store-badge {
      min-width: 164px;
      height: 49px;
      border-radius: 5px;
      box-shadow: none;
      gap: 8px;
    }

    .hero .store-badge span {
      font-size: 18px;
    }

    .hero .store-badge small {
      font-size: 9px;
    }

    .hero .badge-icon {
      font-size: 27px;
    }

    .hero-features {
      max-width: 505px;
      gap: 17px;
    }

    .mini-feature {
      gap: 11px;
      font-size: 11px;
      color: #111827;
      line-height: 1.25;
    }

    .mini-feature strong {
      font-size: 12px;
      color: #082b52;
      margin-bottom: 2px;
    }

    .hero .line-icon {
      width: 28px;
      height: 28px;
      flex-basis: 28px;
      border: 2px solid #0b65b9;
      border-radius: 3px;
      font-size: 15px;
      background: #ffffff;
    }

    .hero-image {
      min-height: 382px;
      border-bottom-left-radius: 0;
      background-image: url("../images/banner.png");
      background-repeat: no-repeat;
      background-size: auto 382px;
      background-position: right top;
      display: block;
    }

    .hero-image .person-card {
      display: none;
    }
    @media (max-width: 950px) {
      header .container { padding: 0 22px; }
      nav { margin-right: 0; }
      nav ul { display: none; }
      .hero-grid,
      .app-card { grid-template-columns: 1fr; }
      .hero { background: #ffffff; }
      .hero .container { padding: 0 22px; }
      .hero-grid { grid-template-columns: 1fr; min-height: auto; }
      .hero-content { padding: 34px 0 28px; }
      .hero-image { min-height: 360px; border-radius: 0; background-size: auto 360px; background-position: center top; }
      .steps { grid-template-columns: 1fr; gap: 44px; }
      .reasons { grid-template-columns: repeat(2, 1fr); }
      .trust-strip { grid-template-columns: 1fr; }
      .trust-item { border-right: 0; border-bottom: 1px solid #d7dde5; padding-bottom: 18px; }
      .trust-item:last-child { border-bottom: 0; padding-bottom: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .container { padding: 0 18px; }
      header .container { padding: 0 16px; }
      .download-btn { display: none; }
      .hero-grid { padding-top: 0; }
      .hero h1 { font-size: 34px; }
      .hero-features { grid-template-columns: 1fr; }
      .app-card { padding: 28px 20px; }
      .reasons { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .help-inner { flex-direction: column; gap: 14px; text-align: center; }
      .store-badge { min-width: 170px; }
    }