
    /* Page specific CSS styles for jljlph.com */
    .page-jljlph-com-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-jljlph-com-2__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-jljlph-com-2__hero-section {
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #ffffff;
      padding: 10px 20px 80px; /* Adjusted padding-top to rely on body offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-jljlph-com-2__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .page-jljlph-com-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jljlph-com-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-jljlph-com-2__hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold-like color for emphasis */
    }

    .page-jljlph-com-2__hero-content p {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-jljlph-com-2__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Bright yellow/gold */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-jljlph-com-2__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-jljlph-com-2__section h2 {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-jljlph-com-2__section p {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    .page-jljlph-com-2__image-container {
      margin: 30px auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jljlph-com-2__content-image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-jljlph-com-2__content-image:hover {
      transform: scale(1.02);
    }

    .page-jljlph-com-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      padding: 0 10px;
    }

    .page-jljlph-com-2__grid-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-jljlph-com-2__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jljlph-com-2__grid-item img {
      max-width: 150px; /* Max width for logos, but min size is 200px. The actual image will be larger. */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-height: 120px; /* Limit height for uniform display */
      object-fit: contain;
    }
    
    .page-jljlph-com-2__grid-item h3 {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-jljlph-com-2__grid-item p {
      font-size: 1em;
      color: #666;
    }

    .page-jljlph-com-2__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-jljlph-com-2__list-item {
      background-color: #e6f2ff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      color: #333;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-jljlph-com-2__list-item strong {
      color: #0056b3;
    }

    /* FAQ Section */
    .page-jljlph-com-2__faq-section {
      text-align: left;
    }

    .page-jljlph-com-2__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-jljlph-com-2__faq-item.active {
      background-color: #eaf6ff;
      border-color: #007bff;
    }

    .page-jljlph-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-jljlph-com-2__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-jljlph-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jljlph-com-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-jljlph-com-2__faq-item.active .page-jljlph-com-2__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-jljlph-com-2__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;
      font-size: 1.05em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jljlph-com-2__hero-content h1 {
        font-size: 3em;
      }
      .page-jljlph-com-2__hero-content p {
        font-size: 1.2em;
      }
      .page-jljlph-com-2__section h2 {
        font-size: 2em;
      }
      .page-jljlph-com-2__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-jljlph-com-2__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }
      .page-jljlph-com-2__hero-section {
        padding: 10px 15px 60px;
      }
      .page-jljlph-com-2__hero-content h1 {
        font-size: 2.5em;
      }
      .page-jljlph-com-2__hero-content p {
        font-size: 1em;
      }
      .page-jljlph-com-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-jljlph-com-2__section h2 {
        font-size: 1.8em;
      }
      .page-jljlph-com-2__section p {
        font-size: 0.95em;
      }
      .page-jljlph-com-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
      }
      .page-jljlph-com-2__grid-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jljlph-com-2__grid-item img {
        max-width: 120px;
      }
      .page-jljlph-com-2__list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jljlph-com-2__list-item {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jljlph-com-2__list-item,
      .page-jljlph-com-2__grid-item {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness for mobile */
      .page-jljlph-com-2__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-jljlph-com-2__content-image {
        max-width: 100% !important;
        height: auto !important;
      }

      /* FAQ responsiveness */
      .page-jljlph-com-2__faq-question {
        padding: 15px 20px;
      }
      .page-jljlph-com-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jljlph-com-2__faq-toggle {
        font-size: 1.5em;
      }
      .page-jljlph-com-2__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-jljlph-com-2__faq-item.active .page-jljlph-com-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-jljlph-com-2__hero-content h1 {
        font-size: 2em;
      }
      .page-jljlph-com-2__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  