
    /* CSS for page-50jili-ph-2 */
    .page-50jili-ph-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-50jili-ph-2__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height as needed */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 20px 40px; /* Small top padding, assuming body padding-top is handled by shared.css */
      box-sizing: border-box;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0a0a, #333333); /* Dark background for contrast */
    }

    .page-50jili-ph-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Slightly transparent to let text stand out */
      z-index: 0;
    }

    .page-50jili-ph-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-50jili-ph-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffc107; /* Gold/yellow for brand prominence */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-50jili-ph-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-50jili-ph-2__button {
      background-color: #ffc107;
      color: #000;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it doesn't look like a link */
      display: inline-block; /* For proper padding and width */
      font-weight: bold;
    }

    .page-50jili-ph-2__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-50jili-ph-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-50jili-ph-2__section--dark {
        background-color: #222;
        color: #fff;
    }

    .page-50jili-ph-2__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #333;
      position: relative;
      padding-bottom: 10px;
    }

    .page-50jili-ph-2__section--dark .page-50jili-ph-2__section-title {
        color: #ffc107;
    }

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

    .page-50jili-ph-2__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #555;
    }

    .page-50jili-ph-2__section--dark .page-50jili-ph-2__section-description {
        color: #ccc;
    }

    .page-50jili-ph-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-50jili-ph-2__card {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box;
    }

    .page-50jili-ph-2__section--dark .page-50jili-ph-2__card {
        background-color: #333;
        color: #fff;
    }

    .page-50jili-ph-2__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .page-50jili-ph-2__card-image {
      width: 100%; /* Ensure images are responsive within card */
      max-width: 300px; /* Example max width */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-50jili-ph-2__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #ffc107;
    }

    .page-50jili-ph-2__card-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-50jili-ph-2__section--dark .page-50jili-ph-2__card-description {
        color: #ccc;
    }

    .page-50jili-ph-2__promotion-link {
        color: #ffc107;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-50jili-ph-2__promotion-link:hover {
        color: #e0a800;
        text-decoration: underline;
    }

    /* Payment Methods */
    .page-50jili-ph-2__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-50jili-ph-2__payment-method-item {
      background-color: #eee;
      padding: 15px 25px;
      border-radius: 8px;
      font-weight: bold;
      color: #333;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: 180px; /* Fixed width for better layout, will be 100% on mobile */
      text-align: center;
    }

    .page-50jili-ph-2__payment-method-item:hover {
        transform: translateY(-5px);
    }

    .page-50jili-ph-2__section--dark .page-50jili-ph-2__payment-method-item {
        background-color: #444;
        color: #fff;
    }

    /* FAQ Section */
    .page-50jili-ph-2__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-50jili-ph-2__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-50jili-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #ffc107;
      color: #000;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-50jili-ph-2__faq-question:hover {
      background-color: #e0a800;
    }

    .page-50jili-ph-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #000; /* Ensure high contrast */
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-50jili-ph-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-50jili-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
      text-align: left;
    }

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

    .page-50jili-ph-2__faq-item.active .page-50jili-ph-2__faq-toggle {
      content: '−'; /* Change to minus sign, handled by JS */
    }

    /* Register/Login Floating Buttons */
    .page-50jili-ph-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-50jili-ph-2__floating-button {
      background-color: #007bff; /* Blue for action */
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 50px; /* Pill shape */
      font-size: 1em;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
    }

    .page-50jili-ph-2__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-50jili-ph-2__floating-button--login {
      background-color: #007bff; /* Blue for login */
    }

    .page-50jili-ph-2__floating-button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-50jili-ph-2__hero-section {
        height: 70vh;
        padding: 10px 15px 30px;
      }

      .page-50jili-ph-2__hero-title {
        font-size: 2.5em;
      }

      .page-50jili-ph-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-50jili-ph-2__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-50jili-ph-2__section {
        padding: 40px 15px;
      }

      .page-50jili-ph-2__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-50jili-ph-2__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-50jili-ph-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-50jili-ph-2__card {
        padding: 25px;
      }

      .page-50jili-ph-2__card-title {
        font-size: 1.3em;
      }

      .page-50jili-ph-2__card-image {
        max-width: 250px; /* Adjust for mobile */
      }

      /* List item mobile responsiveness */
      .page-50jili-ph-2__payment-methods-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-50jili-ph-2__payment-method-item {
        width: 100% !important;
        max-width: 300px !important; /* Constrain max width for better appearance */
        box-sizing: border-box !important;
        padding: 15px 10px !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-50jili-ph-2__faq-section {
        padding: 40px 15px;
      }

      .page-50jili-ph-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-50jili-ph-2__faq-question h3 {
        font-size: 1em;
      }

      .page-50jili-ph-2__faq-answer {
        padding: 0 20px;
      }

      .page-50jili-ph-2__faq-item.active .page-50jili-ph-2__faq-answer {
        padding: 15px 20px !important;
      }

      .page-50jili-ph-2__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px); /* Adjust width to fit */
        justify-content: space-around;
      }

      .page-50jili-ph-2__floating-button {
        flex: 1; /* Distribute space evenly */
        max-width: 48%; /* Ensure some gap */
        padding: 10px 15px;
        font-size: 0.95em;
      }

      /* Image responsive optimization */
      .page-50jili-ph-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-50jili-ph-2__card-image {
        max-width: 100% !important; /* Override specific image max-width */
      }
      .page-50jili-ph-2__hero-image {
        max-width: 100% !important;
      }
      /* If I use a container for images, ensure it's also responsive */
      .page-50jili-ph-2__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-50jili-ph-2__hero-title {
        font-size: 2em;
      }
      .page-50jili-ph-2__hero-subtitle {
        font-size: 1em;
      }
      .page-50jili-ph-2__floating-buttons {
        flex-direction: column; /* Stack buttons on very small screens */
        align-items: stretch;
      }
      .page-50jili-ph-2__floating-button {
        max-width: 100%;
      }
    }
  