
    /* Base styles for the page */
    .page-jljlph-code {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 40px; /* General padding at the bottom */
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header if shared.css doesn't set body padding */
    }

    .page-jljlph-code__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-jljlph-code__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-jljlph-code__section--dark .page-jljlph-code__h2,
    .page-jljlph-code__section--dark .page-jljlph-code__h3 {
      color: #f39c12; /* A vibrant accent color */
    }

    .page-jljlph-code__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Dynamic gradient */
      color: #ffffff;
      text-align: center;
      padding: 100px 15px; /* Adjust padding to avoid double header offset */
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
      padding-top: 10px; /* Small decorative padding, relying on body for main offset */
    }

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

    .page-jljlph-code__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jljlph-code__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #f39c12;
    }

    .page-jljlph-code__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-jljlph-code__button {
      display: inline-block;
      background-color: #f39c12;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-jljlph-code__button:hover {
      background-color: #e67e22;
    }

    .page-jljlph-code__h2 {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jljlph-code__h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f39c12;
      border-radius: 2px;
    }

    .page-jljlph-code__h3 {
      font-size: 1.8em;
      color: #34495e;
      margin-bottom: 15px;
    }

    .page-jljlph-code__paragraph {
      margin-bottom: 15px;
      color: #555;
    }

    .page-jljlph-code__paragraph--center {
        text-align: center;
    }

    .page-jljlph-code__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-jljlph-code__list-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-left: 5px solid #f39c12;
      padding: 20px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px);
      box-sizing: border-box; /* Crucial for responsive lists */
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-jljlph-code__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    }

    .page-jljlph-code__list-item strong {
      color: #2c3e50;
    }

    .page-jljlph-code__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-jljlph-code__step-card {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jljlph-code__step-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .page-jljlph-code__step-icon {
      width: 200px; /* Min size requirement is 200x200px */
      height: 200px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f39c12;
      border-radius: 50%;
      font-size: 2.5em;
      color: #ffffff;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-jljlph-code__step-icon img {
        max-width: 100%;
        height: auto;
        border-radius: 50%; /* If the image itself is round */
        object-fit: cover;
        display: block;
    }

    .page-jljlph-code__step-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-jljlph-code__step-description {
      color: #666;
    }

    .page-jljlph-code__image-container {
        text-align: center;
        margin: 30px 0;
    }

    .page-jljlph-code__content-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
    }

    /* FAQ Section Styles */
    .page-jljlph-code__faq-section {
      padding: 60px 0;
      background-color: #eaf0f4;
    }

    .page-jljlph-code__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      list-style: none;
      padding: 0;
    }

    .page-jljlph-code__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-jljlph-code__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fdfdfd;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jljlph-code__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-jljlph-code__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #34495e;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-jljlph-code__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #f39c12;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

    .page-jljlph-code__faq-item.active .page-jljlph-code__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-jljlph-code__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      background-color: #ffffff;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-jljlph-code__hero-title {
        font-size: 3em;
      }
      .page-jljlph-code__hero-subtitle {
        font-size: 1.3em;
      }
      .page-jljlph-code__h2 {
        font-size: 2em;
      }
      .page-jljlph-code__h3 {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-jljlph-code__hero-section {
        padding: 60px 15px;
        padding-top: 10px; /* Small decorative padding */
      }
      .page-jljlph-code__hero-title {
        font-size: 2.5em;
      }
      .page-jljlph-code__hero-subtitle {
        font-size: 1.1em;
      }
      .page-jljlph-code__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-jljlph-code__section {
        padding: 30px 0;
      }
      .page-jljlph-code__h2 {
        font-size: 1.8em;
      }
      .page-jljlph-code__h3 {
        font-size: 1.3em;
      }

      /* Mobile responsiveness for lists */
      .page-jljlph-code__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px !important; /* Adjust padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jljlph-code__list-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jljlph-code__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-jljlph-code__step-card {
        padding: 25px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
      }

      .page-jljlph-code__faq-question {
        padding: 15px 20px;
      }

      .page-jljlph-code__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jljlph-code__faq-answer {
        padding: 15px 20px;
      }

      .page-jljlph-code__content-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-jljlph-code__image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-jljlph-code__step-icon {
          width: 200px !important; /* Enforce min size */
          height: 200px !important;
      }
    }

    @media (max-width: 480px) {
      .page-jljlph-code__hero-title {
        font-size: 2em;
      }
      .page-jljlph-code__hero-subtitle {
        font-size: 1em;
      }
      .page-jljlph-code__button {
        padding: 10px 20px;
        font-size: 0.85em;
      }
      .page-jljlph-code__faq-question h3 {
        font-size: 1em;
      }
      .page-jljlph-code__faq-toggle {
        font-size: 1.5em;
      }
    }
  