    :root {
      /* Exact brand colours from web designer */
      --green: #8bc34f;
      --green-light: rgba(139, 195, 79, 0.12);
      --green-pale: rgba(139, 195, 79, 0.06);
      --blue: #2e7aba;
      --blue-light: rgba(46, 122, 186, 0.08);
      --orange: #f49922;
      --orange-hover: #e08815;

      /* Neutrals */
      --cream: #FEFDF8;
      --cream-dark: #F7F5EF;
      --text-dark: #2C3E50;
      --text-medium: #4A5568;
      --text-light: #718096;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Source Sans 3', -apple-system, sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Subtle background texture */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse at 15% 15%, var(--green-pale) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, var(--blue-light) 0%, transparent 50%);
      pointer-events: none;
      z-index: -1;
    }

    /* Header */
    header {
      padding: 1.25rem 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .brand {
      display: none;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 500;
      text-align: center;
      color: var(--blue);
      letter-spacing: -0.01em;
    }

    header img {
      width: 300px;
      height: auto;
    }

    .brand span {
      font-style: italic;
      color: var(--green);
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-medium);
      text-decoration: none;
      transition: color 0.2s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: var(--blue);
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Main Content */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem 4rem;
    }

    /* Hero Section */
    .hero {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .opening {
      text-align: center;
      background: var(--blue-light);
      padding: 2rem;
      border-radius: 16px;
      margin-bottom: 3.5rem;
    }

    .opening h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 0.625rem;
    }

    .opening p {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--text-medium);
      margin-bottom: 0.5rem;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--blue);
      letter-spacing: 0.02em;
      margin-bottom: 1.25rem;
      padding: 0.5rem 1.25rem;
      background: var(--green-light);
      border-radius: 100px;
      border: 1px solid rgba(139, 195, 79, 0.25);
    }

    .headline {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 500;
      color: var(--blue);
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .subhead {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--text-medium);
      max-width: 540px;
      margin: 0 auto 0.75rem;
    }

    .micro-reassurance {
      font-size: 0.875rem;
      color: var(--text-light);
      margin-bottom: 0.5rem;
    }

    .instruction {
      font-size: 0.8rem;
      color: var(--text-light);
      font-style: italic;
    }

    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.25rem;
      margin-bottom: 3rem;
    }

    /* Individual Cards */
    .card {
      background: white;
      border-radius: 16px;
      padding: 1.75rem 1.5rem 1.5rem;
      border: 1px solid rgba(46, 122, 186, 0.1);
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.02);
      cursor: pointer;
      transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 12px 32px rgba(46, 122, 186, 0.12);
      border-color: rgba(46, 122, 186, 0.2);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 0.625rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .card-title-icon {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }

    .card-recognition {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }

    .card-support {
      font-size: 0.925rem;
      color: var(--text-medium);
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--orange);
      text-decoration: none;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .card:hover .card-cta {
      gap: 0.75rem;
      color: var(--orange-hover);
    }

    .card-cta svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s ease;
    }

    .card:hover .card-cta svg {
      transform: translateX(2px);
    }

    /* Standalone card-cta hover (for buttons not inside .card) */
    .card-cta:hover {
      gap: 0.75rem;
      color: var(--orange-hover);
    }

    .card-cta:hover svg {
      transform: translateX(2px);
    }

    /* Secondary Card (Not Sure) */
    .card.secondary {
      background: var(--cream-dark);
      border: 1px dashed rgba(46, 122, 186, 0.25);
    }

    .card.secondary::before {
      background: var(--text-light);
    }

    .card.secondary .card-title {
      color: var(--text-medium);
    }

    .card.secondary .card-title-icon {
      background: var(--text-light);
    }

    .card.secondary .card-cta {
      color: var(--blue);
    }

    .card.secondary:hover .card-cta {
      color: var(--blue);
    }

    /* Reassurance Block */
    .reassurance {
      text-align: center;
      padding: 2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .reassurance-line {
      font-size: 1rem;
      color: var(--text-medium);
      margin-bottom: 0.5rem;
    }

    .reassurance-line:first-child {
      font-weight: 500;
      color: var(--blue);
    }

    .reassurance-line:last-child {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(46, 122, 186, 0.1);
      padding: 1.5rem 2rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.5);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
    }

    .copyright {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--blue);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero {
      animation: fadeInUp 0.6s ease-out;
    }

    .card {
      animation: fadeInUp 0.6s ease-out backwards;
    }

    .card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .card:nth-child(2) {
      animation-delay: 0.15s;
    }

    .card:nth-child(3) {
      animation-delay: 0.2s;
    }

    .card:nth-child(4) {
      animation-delay: 0.25s;
    }

    .card:nth-child(5) {
      animation-delay: 0.3s;
    }

    .card:nth-child(6) {
      animation-delay: 0.35s;
    }

    /* Responsive */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
      }

      nav {
        gap: 1.25rem;
      }

      main {
        padding: 2rem 1.25rem 3rem;
      }

      .card-grid {
        grid-template-columns: 1fr;
      }

      .headline {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      nav a {
        font-size: 0.8rem;
      }

      .brand {
        font-size: 1.15rem;
      }
    }