
    /* Base styles for the page */
    .page-jljlph-legit-or-not {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f9f9f9;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-jljlph-legit-or-not__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__hero-section {
      background: linear-gradient(135deg, hsl(210, 80%, 30%), hsl(220, 70%, 20%));
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 30px;
      padding-top: 10px; /* Small decorative padding, main offset from body */
    }

    .page-jljlph-legit-or-not__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 0;
    }

    .page-jljlph-legit-or-not__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-jljlph-legit-or-not__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 700;
      color: hsl(45, 100%, 50%); /* Gold accent */
    }

    .page-jljlph-legit-or-not__hero-subtitle {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .page-jljlph-legit-or-not__section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__section-title {
      font-size: 2.2em;
      color: hsl(210, 80%, 30%);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jljlph-legit-or-not__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: hsl(45, 100%, 50%);
      border-radius: 2px;
    }

    .page-jljlph-legit-or-not__content-text {
      font-size: 1.05em;
      margin-bottom: 20px;
      color: #444;
    }

    .page-jljlph-legit-or-not__content-text strong {
      color: hsl(210, 80%, 30%);
    }

    .page-jljlph-legit-or-not__feature-list {
      list-style: none;
      padding: 0;
      margin: 0 -10px; /* Negative margin for spacing */
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-jljlph-legit-or-not__feature-item {
      flex: 1 1 calc(33% - 40px); /* 3 items per row, accounting for gap */
      background-color: #f0f8ff; /* Lighter background for features */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      text-align: center;
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__feature-item-title {
      font-size: 1.4em;
      color: hsl(210, 80%, 30%);
      margin-bottom: 15px;
    }

    .page-jljlph-legit-or-not__feature-item-description {
      color: #555;
      font-size: 0.95em;
    }

    .page-jljlph-legit-or-not__image-wrapper {
      text-align: center;
      margin: 30px 0;
    }

    .page-jljlph-legit-or-not__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-jljlph-legit-or-not__button-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    .page-jljlph-legit-or-not__primary-button {
      background-color: hsl(45, 100%, 50%); /* Gold accent */
      color: hsl(210, 80%, 30%); /* Dark blue text on gold */
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For potential external link */
      display: inline-block;
    }

    .page-jljlph-legit-or-not__primary-button:hover {
      background-color: hsl(45, 100%, 40%);
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-jljlph-legit-or-not__faq-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-jljlph-legit-or-not__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-jljlph-legit-or-not__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      color: hsl(210, 80%, 30%);
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .page-jljlph-legit-or-not__faq-question:hover {
      color: hsl(45, 100%, 50%);
    }

    .page-jljlph-legit-or-not__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-jljlph-legit-or-not__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
      color: hsl(45, 100%, 50%);
    }

    .page-jljlph-legit-or-not__faq-item.active .page-jljlph-legit-or-not__faq-toggle {
      transform: rotate(45deg); /* Rotates '+' to 'x' or similar, visually indicating open */
    }

    .page-jljlph-legit-or-not__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-jljlph-legit-or-not__faq-item.active .page-jljlph-legit-or-not__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jljlph-legit-or-not__hero-title {
        font-size: 2.2em;
      }

      .page-jljlph-legit-or-not__hero-subtitle {
        font-size: 1em;
      }

      .page-jljlph-legit-or-not__section {
        padding: 20px;
      }

      .page-jljlph-legit-or-not__section-title {
        font-size: 1.8em;
      }

      .page-jljlph-legit-or-not__feature-list {
        flex-direction: column;
        gap: 15px;
        margin: 0;
      }

      .page-jljlph-legit-or-not__feature-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jljlph-legit-or-not__feature-item-title {
        font-size: 1.2em;
      }

      .page-jljlph-legit-or-not__content-text {
        font-size: 0.95em;
      }

      .page-jljlph-legit-or-not__primary-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jljlph-legit-or-not__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-jljlph-legit-or-not__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-jljlph-legit-or-not__faq-question {
        font-size: 1em;
        padding: 10px 0;
      }

      .page-jljlph-legit-or-not__faq-toggle {
        font-size: 1.5em;
      }

      .page-jljlph-legit-or-not__faq-answer {
        padding: 15px 10px !important;
      }

      .page-jljlph-legit-or-not__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }
  