      :root {
        /* Typography */
        --jh-font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;

        /* Core Palette */
        --jh-clr-primary: #0056b3;
        --jh-clr-dark: #0a192f;
        --jh-clr-text: #333333;
        --jh-clr-text-muted: #555555;
        --jh-clr-text-alt: #4a5568;
        --jh-clr-muted: #666666;
        --jh-clr-border: #e2e8f0;
        
        /* Accents & Backgrounds */
        --jh-clr-bg-page: #ffffff;
        --jh-clr-bg-card: #ffffff;
        --jh-clr-orange: #ff5a00;       /* Palo Alto signature orange accent */
        --jh-clr-orange-hover: #ed4124; /* Palo Alto hover red/orange */
        --jh-clr-blue-icon: #00a3e0;    /* Overviews card blue icon container bg */
        --jh-clr-yellow-icon: #ffc010;  /* Solution guides default yellow icon container bg */
        --jh-clr-green-icon: #24cb70;   /* Deployment guides default green icon container bg */
      }

    .panClean .prisma-hero.hero-bg-black, .panClean .pan-gtm_bg_video-hero.hero-bg-black, .panClean .prismahero.hero-bg-black, .panClean .prismaHeroSlider.hero-bg-black {
      background-color: #141414;
      display: none;
      }

      /* ==========================================
         2. BASE PAGE LAYOUT & TYPOGRAPHY
         ========================================== */
      .jh {
        font-family: var(--jh-font-sans);
        color: var(--jh-clr-text);
        line-height: 1.6;
        padding: 40px 20px;
        background-color: var(--jh-clr-bg-page);
      }

      .jh .jh-container {
        max-width: 1200px;
        margin: 160px auto;
      }

      .jh .jh-header {
        margin-bottom: 24px;
        text-align: center;
      }

      .jh .jh-badge {
        display: inline-block;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--jh-clr-orange);
        margin-bottom: 8px;
      }

      .jh .jh-title {
        font-size: 32px;      
        font-weight: 700;
        color: var(--jh-clr-dark);
        line-height: 1.2;
        margin: 0 0 18px 0;
        font-style: normal;
      }

      .jh .jh-subtitle {
        font-size: 14px;
        color: var(--jh-clr-muted);
        margin-bottom: 26px;
        font-weight: 300;
      }

      /* ==========================================
         3. GRID SYSTEM
         ========================================== */
      .jh .jh-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
      }

      /* ==========================================
         4. SOLUTION CARD STYLES
         ========================================== */
      .solution-card {
        font-family: var(--jh-font-sans);
        background-color: var(--jh-clr-bg-card);
        border-radius: 24px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        max-width: 680px;
        box-sizing: border-box;
      }

      /* Icon / Header Section */
      .solution-card__icon-container {
        background-color: var(--jh-clr-yellow-icon);
        color: var(--jh-clr-bg-page);
        width: 45px;
        height: 45px;
        border-radius: 0px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
      }

      /* Icon Modifiers */
      .icon-container--overview {
        background-color: var(--jh-clr-blue-icon);
      }
      
      .icon-container--design {
        background-color: var(--jh-clr-orange);
      }
      
      .icon-container--deployment {
        background-color: var(--jh-clr-green-icon);
      }

      .solution-card__icon {
        width: 28px;
        height: 28px;
      }

      .solution-card__title {
        color: var(--jh-clr-text);
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        letter-spacing: -0.5px;
      }

      .solution-card__subtitle {
        color: var(--jh-clr-text-muted);
        font-size: 12px;
        line-height: 1.4;
        margin: 0 0 20px 0;
      }

      .solution-card__subheading {
        font-size: 12px;
        font-weight: 700;
        color: var(--jh-clr-orange);
        margin: 28px 0 16px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid var(--jh-clr-orange);
        padding-bottom: 6px;
      }

      /* Links List Mechanics */
      .solution-card__links-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .solution-card__link-item {
        margin-bottom: 20px;
      }

      .solution-card__link-item:last-child {
        margin-bottom: 0;
      }

      .solution-card__link {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-decoration: none !important;
        color: var(--jh-clr-text);
        transition: color 0.2s ease-in-out;
      }

      .solution-card__link-text {
        font-size: 14px;
        color: var(--jh-clr-text) !important;
        font-weight: 700;
        line-height: 1.4;
        padding-right: 24px;
      }

      .solution-card__link-arrow {
        font-size: 20px;
        line-height: 1.2;
        color: var(--jh-clr-text) !important;
        flex-shrink: 0;
      }

      /* Hover States */
      .solution-card__link:hover,
      .solution-card__link:hover .solution-card__link-text,
      .solution-card__link:hover .solution-card__link-arrow {
        color: var(--jh-clr-orange-hover) !important;
      }

      /* ==========================================
         5. RESPONSIVE RESPONSIVENESS (MEDIA QUERIES)
         ========================================== */
      @media (max-width: 768px) {
        .jh {
          padding: 24px 16px;
        }
        .jh .jh-title {
          font-size: 24px;
        }
        .jh .jh-grid {
          grid-template-columns: 1fr;
        }
      }