      html {
        scroll-behavior: smooth;
      }
      :root {
        --navy: #14284d;
        --navy-dark: #0d1c38;
        --gold: #c99a3c;
        --gold-dark: #b3852b;
        --cream: #faf7f0;
        --cream-2: #f4efe4;
        --text-dark: #1c2a3f;
        --text-muted: #5b6473;
        --border: #e6e0d3;
      }

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

      body {
        font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
        color: var(--text-dark);
        background: var(--cream);
        line-height: 1.5;
        padding-top: 95px;
      }

      h1,
      h2,
      h3 {
        font-family: Georgia, "Times New Roman", serif;
        color: var(--navy);
        font-weight: 700;
      }

      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }
      img {
        max-width: 100%;
        display: block;
      }

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

      /* Header */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 40px;
        background: rgba(250, 247, 240, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        border-bottom: 1px solid var(--border);
        transition: all 0.3s ease;
      }

      .logo-group {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .logo-icon {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
      }

      .logo-text .name {
        font-family: Georgia, serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
        line-height: 1;
      }

      .logo-text .sub {
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--navy);
        font-weight: 600;
        margin-top: 4px;
      }

      .logo-text .dept {
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 2px;
      }

      nav ul {
        display: flex;
        gap: 34px;
        align-items: center;
      }

      nav a {
        font-size: 15px;
        color: var(--text-dark);
        font-weight: 500;
        position: relative;
        padding-bottom: 4px;
      }

      nav a.active {
        color: var(--navy);
        font-weight: 700;
      }

      nav a.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: var(--gold);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 22px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 2px solid transparent;
      }

      .btn-navy {
        background: var(--navy);
        color: #fff;
      }
      .btn-navy:hover {
        background: var(--navy-dark);
      }

      .btn-outline-navy {
        background: transparent;
        color: var(--navy);
        border-color: var(--navy);
      }
      .btn-outline-navy:hover {
        background: var(--navy);
        color: #fff;
      }

      /* Hero */
      .hero {
        background: linear-gradient(
          120deg,
          var(--cream) 0%,
          var(--cream) 45%,
          #ede4d0 100%
        );
        position: relative;
        overflow: hidden;
      }

      .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        padding: 60px 40px 0;
        max-width: 1180px;
        margin: 0 auto;
      }

      .eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--gold-dark);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 13px;
        margin-bottom: 20px;
      }
      .eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        background: var(--gold);
      }

      .hero h1 {
        font-size: 46px;
        line-height: 1.2;
        margin-bottom: 20px;
      }

      .hero p {
        color: var(--text-muted);
        font-size: 16px;
        max-width: 460px;
        margin-bottom: 30px;
      }

      .hero-buttons {
        display: flex;
        gap: 16px;
      }

      .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 460px;
      }

      .hero-photo {
        position: absolute;
        right: -40px;
        top: 0;
        width: 78%;
        height: 100%;
        border-radius: 4px;
        background: linear-gradient(
          160deg,
          #d8c9a3 0%,
          #c7b78e 40%,
          #8f9a7a 100%
        );
        overflow: hidden;
      }

      .hero-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            circle at 85% 15%,
            rgba(120, 140, 90, 0.55) 0%,
            transparent 45%
          ),
          linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.15),
            rgba(0, 0, 0, 0.08)
          );
      }

      .hero-emblem {
        position: relative;
        z-index: 2;
        text-align: center;
      }

      .hero-emblem svg {
        width: 150px;
        height: 150px;
      }

      .hero-emblem .caption {
        margin-top: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--navy);
        font-size: 14px;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
        padding-bottom: 8px;
      }

      .laptop-mock {
        position: absolute;
        right: 30px;
        bottom: 30px;
        width: 300px;
        z-index: 3;
      }

      .laptop-screen {
        background: #1b1f27;
        border-radius: 8px 8px 0 0;
        padding: 8px;
      }

      .laptop-inner {
        background: #fff;
        border-radius: 4px;
        padding: 10px;
        font-size: 8px;
      }

      .laptop-inner .stat-row {
        display: flex;
        gap: 6px;
        margin-bottom: 8px;
      }

      .laptop-inner .stat-box {
        flex: 1;
        background: #f4efe4;
        border-radius: 3px;
        padding: 6px 4px;
        text-align: center;
      }

      .laptop-inner .stat-box b {
        display: block;
        font-size: 12px;
        color: var(--navy);
      }

      .bars {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 46px;
        background: #fafafa;
        border-radius: 3px;
        padding: 6px;
      }
      .bars div {
        flex: 1;
        background: var(--navy);
        border-radius: 2px 2px 0 0;
      }

      .laptop-base {
        height: 14px;
        background: #d9dde3;
        border-radius: 0 0 10px 10px;
      }

      .books-stack {
        position: absolute;
        left: 40px;
        bottom: 20px;
        width: 90px;
        z-index: 2;
      }
      .book {
        height: 22px;
        border-radius: 2px;
        margin-bottom: 3px;
      }

      .plant {
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 50px;
        z-index: 2;
      }

      .inventory-card {
        position: absolute;
        left: 50%;
        bottom: 15px;
        transform: translateX(-10%);
        background: #f5f0e2;
        border: 1px solid #cfc6ab;
        padding: 10px 16px;
        font-size: 11px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
        text-align: center;
        z-index: 2;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      /* What we do */
      .section {
        padding: 90px 40px;
      }

      .section-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 60px;
      }

      .section-head .eyebrow {
        justify-content: center;
      }
      .section-head .eyebrow::before {
        display: none;
      }

      .section-head h2 {
        font-size: 34px;
        margin-bottom: 14px;
        position: relative;
        display: inline-block;
      }

      .section-head h2::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--gold);
      }

      .section-head p {
        color: var(--text-muted);
        margin-top: 24px;
      }

      .card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1180px;
        margin: 0 auto;
      }

      .feature-card {
        background: var(--cream-2);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 34px 26px;
        text-align: center;
      }

      .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .feature-icon svg {
        width: 28px;
        height: 28px;
      }

      .feature-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
      }

      .feature-card .tag {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 12px;
      }

      .feature-card p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 18px;
      }

      .learn-more {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
      }

      /* Stats band */
      .stats-band {
        background: var(--navy);
        padding: 50px 40px;
      }

      .stats-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }

      .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        color: #fff;
        padding: 0 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
      }
      .stat-item:last-child {
        border-right: none;
      }

      .stat-item svg {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
      }

      .stat-item .num {
        font-family: Georgia, serif;
        font-size: 26px;
        font-weight: 700;
      }

      .stat-item .label {
        font-size: 13px;
        font-weight: 700;
      }

      .stat-item .desc {
        font-size: 12px;
        color: #b9c2d4;
      }

      /* About */
      .about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1180px;
        margin: 0 auto;
        padding: 90px 40px;
      }

      .about-photo {
        background: linear-gradient(135deg, #eef0ed, #e2e6de);
        border-radius: 6px;
        aspect-ratio: 4/3;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 24px;
      }

      .binders {
        display: flex;
        gap: 6px;
        align-items: flex-end;
      }
      .binder {
        width: 26px;
        height: 130px;
        background: var(--navy);
        border-radius: 2px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 10px;
      }
      .binder span {
        background: #fff;
        color: var(--navy);
        font-size: 8px;
        font-weight: 700;
        padding: 3px 4px;
        border-radius: 2px;
        writing-mode: vertical-rl;
      }

      .mug {
        width: 46px;
        height: 46px;
        border-radius: 0 0 50% 50%/0 0 60% 60%;
        background: #fff;
        border: 1px solid #ddd;
        margin-left: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 7px;
        font-weight: 700;
        color: var(--navy);
      }

      .about-text .eyebrow::before {
        display: none;
      }

      .about-text h2 {
        font-size: 32px;
        margin-bottom: 18px;
        position: relative;
        display: inline-block;
      }
      .about-text h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 3px;
        background: var(--gold);
      }

      .about-text p {
        color: var(--text-muted);
        margin: 24px 0 28px;
        max-width: 480px;
      }

      /* Resources */
      .resources-band {
        background: var(--cream-2);
      }

      /* Guidelines */
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1180px;
        margin: 0 auto;
        counter-reset: step;
      }

      .step-card {
        position: relative;
        padding: 34px 26px 26px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 6px;
      }

      .step-card .step-num {
        font-family: Georgia, serif;
        font-weight: 700;
        font-size: 15px;
        color: var(--gold-dark);
        letter-spacing: 1px;
        margin-bottom: 14px;
      }

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

      .step-card p {
        font-size: 14px;
        color: var(--text-muted);
      }

      /* Contact section */
      .contact-section {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
        max-width: 1180px;
        margin: 0 auto;
        padding: 90px 40px;
      }

      .contact-info .contact-item {
        margin-bottom: 22px;
        font-size: 15px;
        color: var(--text-dark);
      }

      .contact-info .contact-item svg {
        color: var(--gold-dark);
        width: 20px;
        height: 20px;
      }

      .contact-form {
        display: grid;
        gap: 18px;
      }

      .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }

      .contact-form label {
        display: block;
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        margin-bottom: 6px;
        text-transform: uppercase;
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        border: 1px solid var(--border);
        background: #fff;
        border-radius: 4px;
        padding: 11px 13px;
        font-family: inherit;
        font-size: 14.5px;
        color: var(--text-dark);
      }

      .contact-form textarea {
        min-height: 120px;
        resize: vertical;
      }

      .contact-form button {
        justify-self: start;
      }

      @media (max-width: 900px) {
        .steps-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .contact-section {
          grid-template-columns: 1fr;
        }
        .contact-form .form-row {
          grid-template-columns: 1fr;
        }
      }

      /* Footer */
      footer {
        background: var(--navy);
        color: #cfd6e3;
        padding: 60px 40px 0;
      }

      .footer-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 40px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .footer-logo {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 16px;
      }
      .footer-logo svg {
        width: 46px;
        height: 46px;
      }
      .footer-logo .name {
        font-family: Georgia, serif;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
      }
      .footer-logo .sub {
        font-size: 10px;
        letter-spacing: 1px;
        color: #cfd6e3;
      }
      .footer-logo .dept {
        font-size: 10px;
        color: #97a2b8;
      }

      footer h4 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 18px;
        font-family: Georgia, serif;
      }

      footer ul li {
        margin-bottom: 10px;
        font-size: 14px;
        color: #c3cbdb;
      }

      .contact-item {
        display: flex;
        gap: 10px;
        margin-bottom: 14px;
        font-size: 14px;
        align-items: flex-start;
      }

      .contact-item svg {
        width: 16px;
        height: 16px;
        margin-top: 3px;
        flex-shrink: 0;
        color: var(--gold);
      }

      .footer-bottom {
        max-width: 1180px;
        margin: 0 auto;
        padding: 22px 0;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #97a2b8;
      }
      .footer-bottom a {
        margin-left: 20px;
      }

      @media (max-width: 900px) {
        nav {
          display: none;
        }
        .hero-inner,
        .about {
          grid-template-columns: 1fr;
        }
        .card-grid,
        .stats-grid,
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat-item {
          border-right: none;
        }
        .hero-visual {
          min-height: 320px;
        }
      }

      /* Enhanced Resources and Guidelines */
      .resources-band {
        position: relative;
        background: #fbf8f1;
        padding-top: 0;
        overflow: hidden;
      }

      .resources-hero {
        position: relative;
        background:
          radial-gradient(
            circle at 78% 20%,
            rgba(201, 154, 60, 0.12),
            transparent 28%
          ),
          linear-gradient(135deg, #fbf8f1 0%, #f6efe1 58%, #efe3ca 100%);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
      }

      .resources-hero::after {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        bottom: -74px;
        height: 130px;
        background: #fffdf9;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        border-top: 3px solid rgba(201, 154, 60, 0.85);
      }

      .resources-hero-inner {
        max-width: 1180px;
        margin: 0 auto;
        min-height: 360px;
        padding: 54px 40px 78px;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 60px;
        position: relative;
        z-index: 2;
      }

      .resources-copy h2 {
        font-size: 48px;
        line-height: 1.08;
        margin-bottom: 18px;
        max-width: 480px;
      }

      .resources-copy p {
        color: var(--text-muted);
        font-size: 16px;
        max-width: 470px;
      }

      .resources-visual {
        position: relative;
        min-height: 260px;
      }

      .school-silhouette {
        position: absolute;
        right: 8px;
        top: 15px;
        width: 270px;
        height: 190px;
        opacity: 0.2;
        background: linear-gradient(#cabd9f, #b9a984);
        clip-path: polygon(
          5% 45%,
          20% 45%,
          20% 25%,
          35% 25%,
          35% 38%,
          50% 16%,
          65% 38%,
          65% 25%,
          80% 25%,
          80% 45%,
          95% 45%,
          95% 100%,
          5% 100%
        );
      }

      .visual-book {
        position: absolute;
        left: 54px;
        bottom: 22px;
        width: 108px;
        height: 132px;
        padding: 24px 12px;
        background: linear-gradient(145deg, #17315e, #0d1c38);
        color: white;
        border-radius: 4px 10px 10px 4px;
        box-shadow: 0 16px 30px rgba(20, 40, 77, 0.2);
        font-family: Georgia, serif;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
      }

      .visual-book::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: -18px;
        height: 16px;
        border-radius: 2px;
        background: #c99a3c;
        box-shadow: 0 19px 0 #14284d;
      }

      .visual-clipboard {
        position: absolute;
        left: 155px;
        top: 5px;
        width: 145px;
        height: 190px;
        border-radius: 8px;
        background: #f8f6ef;
        border: 9px solid #30415b;
        transform: rotate(-3deg);
        box-shadow: 0 18px 35px rgba(32, 45, 64, 0.18);
      }

      .visual-clipboard::before {
        content: "";
        position: absolute;
        width: 50px;
        height: 20px;
        top: -19px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold);
        border-radius: 8px 8px 3px 3px;
      }

      .visual-clipboard span,
      .visual-screen span {
        display: block;
        height: 8px;
        margin: 21px 18px 0 34px;
        background: #d7d8d2;
        border-radius: 20px;
        position: relative;
      }

      .visual-clipboard span::before {
        content: "✓";
        position: absolute;
        left: -24px;
        top: -7px;
        color: #52715d;
        font-weight: 800;
        font-size: 18px;
      }

      .visual-screen {
        position: absolute;
        right: 8px;
        bottom: 0;
        width: 250px;
        height: 160px;
        border: 10px solid #26364d;
        border-radius: 10px 10px 5px 5px;
        background: #fff;
        box-shadow: 0 20px 35px rgba(20, 40, 77, 0.2);
      }

      .visual-screen::before {
        content: "";
        position: absolute;
        left: -28px;
        right: -28px;
        bottom: -22px;
        height: 18px;
        background: #bfc3c4;
        border-radius: 0 0 20px 20px;
      }

      .visual-screen .screen-top {
        height: 20px;
        background: #eef0ed;
        border-bottom: 1px solid #ddd;
      }

      .visual-screen .screen-icon {
        width: 42px;
        height: 50px;
        margin: 18px 0 0 24px;
        border: 3px solid var(--gold);
        border-radius: 4px;
        position: relative;
      }

      .visual-screen .screen-icon::after {
        content: "";
        position: absolute;
        left: 8px;
        right: 8px;
        top: 12px;
        height: 4px;
        background: var(--gold);
        box-shadow:
          0 10px 0 var(--gold),
          0 20px 0 var(--gold);
      }

      .resources-card-wrap {
        max-width: 1180px;
        margin: -28px auto 0;
        padding: 0 40px 18px;
        position: relative;
        z-index: 5;
      }

      .resources-card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
      }

      .resource-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e7e2d7;
        border-radius: 12px;
        padding: 26px 26px 24px;
        min-height: 215px;
        box-shadow: 0 12px 30px rgba(30, 44, 68, 0.08);
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
      }

      .resource-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 38px rgba(30, 44, 68, 0.14);
        border-color: rgba(201, 154, 60, 0.45);
      }

      .resource-icon {
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        margin-bottom: 20px;
      }

      .resource-icon.gold {
        background: #fff4d9;
        color: #bf841b;
      }
      .resource-icon.green {
        background: #edf7ec;
        color: #4f7d42;
      }
      .resource-icon.violet {
        background: #f1eafd;
        color: #6f48b8;
      }
      .resource-icon.blue {
        background: #eaf2ff;
        color: #4c75b7;
      }
      .resource-icon svg {
        width: 29px;
        height: 29px;
      }

      .resource-card h3 {
        font-size: 19px;
        margin-bottom: 5px;
      }
      .resource-card .tag {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 12px;
      }
      .resource-card p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 18px;
      }
      .resource-card .learn-more {
        display: inline-flex;
        gap: 9px;
        align-items: center;
      }
      .resource-card .learn-more span {
        color: var(--gold-dark);
        font-size: 18px;
        transition: transform 0.2s ease;
      }
      .resource-card:hover .learn-more span {
        transform: translateX(4px);
      }

      .guidelines-enhanced {
        position: relative;
        background: #fffdf9;
        padding: 80px 40px 90px;
        overflow: hidden;
      }

      .guidelines-enhanced::before,
      .guidelines-enhanced::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 220px;
        bottom: 10px;
        opacity: 0.18;
        background: radial-gradient(
          ellipse at center,
          #c99a3c 0 16%,
          transparent 17%
        );
        background-size: 34px 54px;
      }
      .guidelines-enhanced::before {
        left: 20px;
        transform: rotate(-18deg);
      }
      .guidelines-enhanced::after {
        right: 20px;
        transform: rotate(18deg);
      }

      .guidelines-enhanced .section-head {
        margin-bottom: 46px;
      }
      .guidelines-enhanced .section-head h2 {
        font-size: 38px;
      }

      .timeline-steps {
        max-width: 1050px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        z-index: 2;
      }

      .timeline-steps::before {
        content: "";
        position: absolute;
        top: 21px;
        left: 12.5%;
        right: 12.5%;
        border-top: 2px dashed rgba(201, 154, 60, 0.55);
      }

      .timeline-step {
        text-align: center;
        padding: 0 22px;
        position: relative;
      }

      .timeline-num {
        width: 44px;
        height: 44px;
        margin: 0 auto 18px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 2px solid var(--gold);
        background: #fffdf9;
        color: var(--gold-dark);
        font-family: Georgia, serif;
        font-weight: 700;
        position: relative;
        z-index: 2;
      }

      .timeline-icon {
        width: 62px;
        height: 62px;
        margin: 0 auto 14px;
        border-radius: 50%;
        display: grid;
        place-items: center;
      }
      .timeline-icon svg {
        width: 30px;
        height: 30px;
      }
      .timeline-step:nth-child(1) .timeline-icon {
        background: #fff3d9;
        color: #bf841b;
      }
      .timeline-step:nth-child(2) .timeline-icon {
        background: #edf7ec;
        color: #4f7d42;
      }
      .timeline-step:nth-child(3) .timeline-icon {
        background: #f1eafd;
        color: #6f48b8;
      }
      .timeline-step:nth-child(4) .timeline-icon {
        background: #eaf2ff;
        color: #4c75b7;
      }
      .timeline-step h3 {
        font-size: 17px;
        margin-bottom: 7px;
      }
      .timeline-step p {
        font-size: 13px;
        color: var(--text-muted);
      }

      footer {
        background: #f6f0e5;
        color: var(--text-dark);
        border-top: 1px solid #e5dccb;
        padding-top: 42px;
      }
      footer h4 {
        color: var(--navy);
      }
      footer ul li,
      footer .contact-item {
        color: var(--text-muted);
      }
      .footer-grid {
        border-bottom: 1px solid #ded4c3;
        padding-bottom: 34px;
      }
      .footer-logo .name {
        color: var(--navy);
      }
      .footer-logo .sub {
        color: var(--navy);
      }
      .footer-logo .dept {
        color: var(--text-muted);
      }
      .footer-bottom {
        max-width: none;
        background: var(--navy);
        color: #cfd6e3;
        padding: 18px max(40px, calc((100% - 1180px) / 2));
      }

      @media (max-width: 900px) {
        .resources-hero-inner {
          grid-template-columns: 1fr;
          padding-bottom: 95px;
        }
        .resources-copy h2 {
          font-size: 38px;
        }
        .resources-visual {
          min-height: 300px;
        }
        .resources-card-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .timeline-steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 42px 18px;
        }
        .timeline-steps::before {
          display: none;
        }
      }

      @media (max-width: 600px) {
        .resources-card-grid,
        .timeline-steps {
          grid-template-columns: 1fr;
        }
        .resources-hero-inner,
        .resources-card-wrap,
        .guidelines-enhanced {
          padding-left: 22px;
          padding-right: 22px;
        }
        .resources-copy h2 {
          font-size: 34px;
        }
        .visual-screen {
          width: 210px;
          right: 0;
        }
        .visual-clipboard {
          left: 72px;
        }
        .visual-book {
          left: 0;
        }
      }

      /* =========================================================
         PREMIUM LANDING PAGE REFINEMENT
         ========================================================= */
      :root {
        --surface: #fffdf9;
        --surface-2: #f7f1e6;
        --shadow-soft: 0 10px 30px rgba(20, 40, 77, 0.08);
        --shadow-strong: 0 22px 55px rgba(20, 40, 77, 0.15);
      }

      body {
        overflow-x: hidden;
      }

      header {
        padding-left: 32px;
        padding-right: 32px;
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        padding: 9px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: #fff;
        cursor: pointer;
      }

      .menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 4px auto;
        background: var(--navy);
        border-radius: 999px;
      }

      .btn {
        border-radius: 10px;
        padding: 13px 22px;
        box-shadow: 0 8px 20px rgba(20, 40, 77, 0.08);
      }

      .btn:hover {
        transform: translateY(-2px);
      }

      .hero {
        min-height: 640px;
        background:
          radial-gradient(
            circle at 84% 15%,
            rgba(201, 154, 60, 0.16),
            transparent 24%
          ),
          linear-gradient(120deg, #fbf8f1 0%, #fbf8f1 45%, #efe4cf 100%);
      }

      .hero::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        right: -190px;
        top: -180px;
        border: 1px solid rgba(201, 154, 60, 0.25);
        border-radius: 50%;
      }

      .hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        left: -190px;
        bottom: -260px;
        background: rgba(201, 154, 60, 0.06);
        border-radius: 50%;
      }

      .hero-inner {
        min-height: 640px;
        padding-top: 38px;
        padding-bottom: 45px;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: clamp(46px, 5vw, 68px);
        line-height: 1.04;
        letter-spacing: -1.4px;
        margin-bottom: 24px;
      }

      .hero p {
        font-size: 17px;
        line-height: 1.75;
        max-width: 520px;
      }

      .hero-photo {
        right: -10px;
        width: 90%;
        border-radius: 34px 0 0 34px;
        box-shadow: 0 34px 80px rgba(20, 40, 77, 0.2);
      }

      .hero-photo::after {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 24px 0 0 24px;
        pointer-events: none;
      }

      .hero-emblem img {
        border: 10px solid rgba(255, 255, 255, 0.74);
        backdrop-filter: blur(6px);
      }

      .laptop-mock {
        filter: drop-shadow(0 18px 26px rgba(20, 40, 77, 0.18));
      }

      .section {
        padding-top: 105px;
        padding-bottom: 105px;
      }

      .section-head {
        max-width: 720px;
      }

      .section-head h2 {
        font-size: clamp(34px, 4vw, 48px);
        letter-spacing: -0.5px;
      }

      .card-grid {
        gap: 22px;
      }

      .premium-card {
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        transition:
          transform 0.28s ease,
          box-shadow 0.28s ease,
          border-color 0.28s ease;
      }

      .premium-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(var(--gold), #e2bf72);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.28s ease;
      }

      .premium-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-strong);
        border-color: rgba(201, 154, 60, 0.38);
      }

      .premium-card:hover::before {
        transform: scaleY(1);
      }

      .feature-card {
        background: rgba(255, 255, 255, 0.88);
        border-radius: 20px;
        padding: 40px 28px 34px;
      }

      .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        box-shadow: 0 10px 22px rgba(20, 40, 77, 0.08);
      }

      .feature-card h3 {
        font-size: 20px;
      }

      .feature-card p {
        line-height: 1.65;
      }

      .stats-band {
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(
            circle at 8% 0%,
            rgba(201, 154, 60, 0.18),
            transparent 28%
          ),
          linear-gradient(125deg, var(--navy-dark), var(--navy));
      }

      .stats-band::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
          );
        background-size: 36px 36px;
        pointer-events: none;
      }

      .stat-item {
        position: relative;
        z-index: 2;
      }

      .resources-hero-inner {
        min-height: 430px;
      }

      .resources-copy h2 {
        font-size: clamp(44px, 5vw, 64px);
        letter-spacing: -1px;
      }

      .resource-card {
        border-radius: 18px;
        min-height: 245px;
        padding: 30px;
      }

      .resource-icon {
        box-shadow: 0 10px 22px rgba(20, 40, 77, 0.08);
      }

      .guidelines-enhanced {
        padding-top: 110px;
        padding-bottom: 115px;
      }

      .timeline-step {
        padding-inline: 28px;
      }

      .timeline-icon {
        box-shadow: 0 10px 24px rgba(20, 40, 77, 0.08);
      }

      .about {
        padding-top: 110px;
        padding-bottom: 110px;
      }

      .about-photo {
        min-height: 390px;
        border-radius: 26px;
        background:
          radial-gradient(
            circle at 80% 20%,
            rgba(201, 154, 60, 0.22),
            transparent 26%
          ),
          linear-gradient(145deg, #eef2ec, #dfe7db);
        box-shadow: var(--shadow-strong);
      }

      .about-photo::before {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(20, 40, 77, 0.08);
        border-radius: 18px;
      }

      .about-photo::after {
        content: "Organized records. Clear accountability.";
        position: absolute;
        top: 28px;
        right: 28px;
        max-width: 170px;
        color: var(--navy);
        font-family: Georgia, serif;
        font-size: 19px;
        line-height: 1.35;
        text-align: right;
      }

      #contact.section {
        background:
          radial-gradient(
            circle at 12% 15%,
            rgba(201, 154, 60, 0.09),
            transparent 24%
          ),
          linear-gradient(180deg, var(--cream), #f3ebde);
      }

      .contact-section {
        padding-top: 0;
      }

      .contact-info,
      .contact-form {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 36px;
        box-shadow: var(--shadow-soft);
      }

      .contact-form input,
      .contact-form textarea {
        border-radius: 11px;
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease;
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(201, 154, 60, 0.12);
      }

      footer a {
        transition: color 0.2s ease;
      }

      footer a:hover {
        color: var(--gold-dark);
      }

      @media (max-width: 1100px) {
        nav ul {
          gap: 20px;
        }
      }

      @media (max-width: 900px) {
        body {
          padding-top: 82px;
        }

        header {
          padding: 14px 22px;
        }

        .logo-icon {
          width: 46px;
          height: 46px;
        }

        .logo-text .name {
          font-size: 22px;
        }

        .menu-toggle {
          display: block;
        }

        .staff-portal {
          display: none;
        }

        nav {
          display: block;
          position: fixed;
          top: 82px;
          left: 16px;
          right: 16px;
          padding: 18px;
          background: rgba(255, 253, 249, 0.98);
          border: 1px solid var(--border);
          border-radius: 18px;
          box-shadow: var(--shadow-strong);
          transform: translateY(-18px);
          opacity: 0;
          visibility: hidden;
          transition: 0.25s ease;
        }

        nav.open {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }

        nav ul {
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
        }

        nav a {
          display: block;
          padding: 11px 12px;
          border-radius: 9px;
        }

        nav a:hover,
        nav a.active {
          background: #f5efe4;
        }

        nav a.active::after {
          display: none;
        }

        .hero {
          min-height: auto;
        }

        .hero-inner {
          min-height: auto;
          padding-top: 70px;
          padding-bottom: 70px;
        }

        .hero-visual {
          min-height: 420px;
        }

        .hero-photo {
          right: 0;
          width: 100%;
          border-radius: 28px;
        }

        .resources-visual {
          width: min(100%, 520px);
          margin-inline: auto;
        }

        .contact-info,
        .contact-form {
          padding: 28px;
        }
      }

      @media (max-width: 600px) {
        .container,
        .hero-inner,
        .section,
        .about,
        .contact-section {
          padding-left: 20px;
          padding-right: 20px;
        }

        .logo-text .sub {
          letter-spacing: 1px;
          font-size: 9px;
        }

        .logo-text .dept {
          font-size: 9px;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: stretch;
        }

        .hero-buttons .btn {
          justify-content: center;
        }

        .card-grid,
        .stats-grid,
        .footer-grid {
          grid-template-columns: 1fr;
        }

        .stats-grid {
          gap: 28px;
        }

        .stat-item {
          border-right: none;
        }

        .hero-visual {
          min-height: 360px;
        }

        .laptop-mock {
          width: 240px;
          right: 8px;
        }

        .hero-emblem img {
          width: 130px !important;
          height: 130px !important;
        }

        .resources-visual {
          transform: scale(0.82);
          transform-origin: center;
          margin-top: -24px;
          margin-bottom: -30px;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 12px;
          padding-left: 20px;
          padding-right: 20px;
        }

        .footer-bottom a {
          margin-left: 0;
          margin-right: 14px;
        }
      }

      /* ---------- Forms & Templates page ---------- */
      .breadcrumb {
        background: var(--cream-2);
        border-bottom: 1px solid var(--border);
      }
      .breadcrumb-inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 16px 40px;
        font-size: 13px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .breadcrumb-inner a {
        color: var(--navy);
        font-weight: 600;
      }
      .breadcrumb-inner a:hover {
        text-decoration: underline;
      }
      .breadcrumb-inner span.sep {
        color: var(--border);
      }
      .breadcrumb-inner span.current {
        color: var(--text-dark);
        font-weight: 600;
      }

      .page-hero {
        background: linear-gradient(
          120deg,
          var(--cream) 0%,
          var(--cream) 45%,
          #ede4d0 100%
        );
        padding: 56px 40px 44px;
      }
      .page-hero-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        flex-wrap: wrap;
      }
      .page-hero h1 {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 14px;
      }
      .page-hero p {
        color: var(--text-muted);
        font-size: 16px;
        max-width: 520px;
      }
      .page-hero-stats {
        display: flex;
        gap: 28px;
      }
      .page-hero-stats div {
        text-align: center;
      }
      .page-hero-stats .num {
        font-family: Georgia, serif;
        font-size: 30px;
        font-weight: 700;
        color: var(--navy);
      }
      .page-hero-stats .lbl {
        font-size: 12px;
        letter-spacing: 1px;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-top: 2px;
      }

      .toolbar {
        max-width: 1180px;
        margin: -26px auto 0;
        padding: 0 40px;
        position: relative;
        z-index: 5;
      }
      .toolbar-inner {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(20, 40, 77, 0.08);
        padding: 20px 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
      }
      .search-box {
        position: relative;
        flex: 1;
        min-width: 220px;
      }
      .search-box input {
        width: 100%;
        padding: 11px 14px 11px 38px;
        border: 1px solid var(--border);
        border-radius: 5px;
        font-size: 14px;
        font-family: inherit;
        color: var(--text-dark);
        background: var(--cream);
      }
      .search-box input:focus {
        outline: none;
        border-color: var(--gold);
      }
      .search-box svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        color: var(--text-muted);
      }
      .filter-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .filter-tab {
        padding: 9px 16px;
        border-radius: 20px;
        border: 1px solid var(--border);
        background: var(--cream);
        color: var(--text-dark);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
      }
      .filter-tab:hover {
        border-color: var(--gold);
      }
      .filter-tab.active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
      }

      .forms-section {
        padding: 50px 40px 90px;
        max-width: 1180px;
        margin: 0 auto;
      }
      .forms-group {
        margin-bottom: 46px;
      }
      .forms-group-head {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border);
      }
      .forms-group-head h2 {
        font-size: 22px;
      }
      .forms-group-head .count {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 600;
      }
      .forms-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }

      .form-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
      }
      .form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(20, 40, 77, 0.1);
        border-color: var(--gold);
      }
      .form-card-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 14px;
      }
      .form-icon {
        width: 46px;
        height: 46px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .form-icon svg {
        width: 22px;
        height: 22px;
      }
      .form-icon.gold {
        background: #f7ecd4;
        color: var(--gold-dark);
      }
      .form-icon.green {
        background: #dfeee0;
        color: #3f7d4a;
      }
      .form-icon.violet {
        background: #e7e1f5;
        color: #6b4fa0;
      }
      .form-icon.blue {
        background: #dbe6f5;
        color: #2f5ea8;
      }
      .format-badge {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 4px 9px;
        border-radius: 4px;
        background: var(--cream-2);
        color: var(--text-muted);
        border: 1px solid var(--border);
      }
      .form-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.35;
      }
      .form-card .code {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--gold-dark);
        margin-bottom: 10px;
        text-transform: uppercase;
      }
      .form-card p {
        font-size: 13.5px;
        color: var(--text-muted);
        margin-bottom: 18px;
        flex-grow: 1;
      }
      .form-card-meta {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 16px;
        display: flex;
        gap: 14px;
      }
      .form-card-actions {
        display: flex;
        gap: 10px;
      }
      .form-card-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
      }
      .form-card-actions .btn-ghost {
        background: transparent;
        color: var(--navy);
        border: 1px solid var(--border);
      }
      .form-card-actions .btn-ghost:hover {
        border-color: var(--navy);
        background: var(--cream-2);
      }

      .no-results {
        display: none;
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
      }
      .no-results svg {
        width: 40px;
        height: 40px;
        margin: 0 auto 14px;
        color: var(--border);
      }

      .help-cta {
        background: var(--navy);
        border-radius: 10px;
        padding: 40px 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
        color: #fff;
      }
      .help-cta h3 {
        color: #fff;
        font-size: 22px;
        margin-bottom: 8px;
      }
      .help-cta p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        max-width: 480px;
      }
      .help-cta .btn-gold {
        background: var(--gold);
        color: var(--navy-dark);
        border-color: var(--gold);
        flex-shrink: 0;
      }
      .help-cta .btn-gold:hover {
        background: var(--gold-dark);
      }

      @media (max-width: 900px) {
        .forms-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .page-hero-inner {
          flex-direction: column;
          align-items: flex-start;
        }
      }
      @media (max-width: 620px) {
        .forms-grid {
          grid-template-columns: 1fr;
        }
        .toolbar-inner {
          flex-direction: column;
          align-items: stretch;
        }
        .filter-tabs {
          overflow-x: auto;
          flex-wrap: nowrap;
          padding-bottom: 4px;
        }
        .help-cta {
          flex-direction: column;
          text-align: center;
        }
        .page-hero {
          padding-top: 40px;
        }
        .breadcrumb-inner {
          padding: 12px 20px;
        }
        .page-hero-inner,
        .toolbar,
        .forms-section {
          padding-left: 20px;
          padding-right: 20px;
        }
      }

      /* Document Preview Modal */
      .preview-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(13, 28, 56, 0.72);
        z-index: 200;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
      }
      .preview-overlay.active {
        display: flex;
      }
      .preview-modal {
        background: #fff;
        border-radius: 10px;
        max-width: 780px;
        width: 100%;
        max-height: 88vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(13, 28, 56, 0.35);
      }
      .preview-modal-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        border-bottom: 1px solid var(--border);
        background: var(--cream-2);
      }
      .preview-modal-head h3 {
        font-size: 16px;
        color: var(--navy);
      }
      .preview-modal-head .code {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 2px;
      }
      .preview-close {
        border: none;
        background: transparent;
        font-size: 22px;
        line-height: 1;
        color: var(--text-muted);
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 6px;
      }
      .preview-close:hover {
        background: #fff;
        color: var(--navy);
      }
      .preview-modal-body {
        overflow: auto;
        padding: 20px;
        background: #ece7da;
        text-align: center;
      }
      .preview-modal-body img {
        max-width: 100%;
        border: 1px solid var(--border);
        box-shadow: 0 6px 18px rgba(13, 28, 56, 0.15);
        background: #fff;
      }
      .preview-modal-foot {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        padding: 14px 24px;
        border-top: 1px solid var(--border);
      }

      @media (max-width: 620px) {
        .preview-modal {
          max-height: 92vh;
        }
        .preview-modal-body {
          padding: 12px;
        }
      }

      button.btn {
        font-family: inherit;
      }
