
    /* Base styles for the page-specific content */
    .page-phbet-vip-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-phbet-vip-login-password__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-phbet-vip-login-password__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Small padding-top as body handles header offset */
      color: #fff;
      text-align: center;
      overflow: hidden;
      background-color: #003366; /* Dark blue background for contrast */
    }

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

    .page-phbet-vip-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-phbet-vip-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phbet-vip-login-password__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-phbet-vip-login-password__button {
      display: inline-block;
      background-color: #FFD700; /* Gold/Yellow for prominence */
      color: #003366;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-phbet-vip-login-password__button:hover {
      background-color: #e6c300;
      transform: translateY(-2px);
    }

    .page-phbet-vip-login-password__heading {
      color: #003366;
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-phbet-vip-login-password__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-phbet-vip-login-password__sub-heading {
      color: #0056b3;
      font-size: 1.6em;
      margin-top: 30px;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-phbet-vip-login-password__paragraph {
      margin-bottom: 15px;
      text-align: justify;
      color: #555;
    }

    .page-phbet-vip-login-password__image-container {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-phbet-vip-login-password__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-phbet-vip-login-password__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Center list items for better aesthetics */
      counter-reset: list-item;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-phbet-vip-login-password__list-item {
      background-color: #e9f5ff;
      border-left: 5px solid #007bff;
      margin: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 280px; /* Adjust for better desktop layout */
      max-width: 48%; /* Two items per row on desktop */
      box-sizing: border-box;
      color: #333;
      position: relative;
      padding-left: 40px;
    }

    .page-phbet-vip-login-password__list-item::before {
      content: counter(list-item);
      counter-increment: list-item;
      position: absolute;
      left: 10px;
      top: 15px;
      background-color: #007bff;
      color: #fff;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.9em;
    }

    .page-phbet-vip-login-password__list--unordered {
      list-style: disc;
      padding-left: 20px;
      display: block; /* Override flex for unordered lists */
    }

    .page-phbet-vip-login-password__list--unordered .page-phbet-vip-login-password__list-item {
      border-left: none;
      padding-left: 15px;
      min-width: unset;
      max-width: 100%; /* Unordered list items should not be side-by-side */
      background-color: #f0f8ff;
    }
    
    .page-phbet-vip-login-password__list--unordered .page-phbet-vip-login-password__list-item::before {
        content: ''; /* Remove number counter */
        display: none;
    }

    .page-phbet-vip-login-password__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-phbet-vip-login-password__faq-item {
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-phbet-vip-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #003366;
      font-weight: bold;
    }

    .page-phbet-vip-login-password__faq-question:hover {
      background-color: #eee;
    }

    .page-phbet-vip-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-phbet-vip-login-password__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
      color: #007bff;
    }

    .page-phbet-vip-login-password__faq-item.active .page-phbet-vip-login-password__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-phbet-vip-login-password__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;
      background-color: #fff;
    }

    .page-phbet-vip-login-password__faq-item.active .page-phbet-vip-login-password__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phbet-vip-login-password__hero-title {
        font-size: 2em;
      }

      .page-phbet-vip-login-password__hero-description {
        font-size: 1em;
      }

      .page-phbet-vip-login-password__heading {
        font-size: 1.8em;
      }

      .page-phbet-vip-login-password__sub-heading {
        font-size: 1.4em;
      }

      .page-phbet-vip-login-password__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }

      .page-phbet-vip-login-password__list {
        flex-direction: column;
        padding: 0 !important; /* Ensure no extra padding from ul */
        margin: 15px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-phbet-vip-login-password__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0 !important;
        padding: 15px 20px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-phbet-vip-login-password__list--unordered {
        padding-left: 20px !important; /* Keep disc list padding */
      }
      .page-phbet-vip-login-password__list--unordered .page-phbet-vip-login-password__list-item {
        padding-left: 15px !important; /* Reset specific item padding for unordered list */
      }


      .page-phbet-vip-login-password__faq-section {
        padding: 20px 15px;
      }

      .page-phbet-vip-login-password__faq-question {
        padding: 12px;
      }

      .page-phbet-vip-login-password__faq-question h3 {
        font-size: 1em;
      }

      .page-phbet-vip-login-password__faq-answer {
        padding: 15px 12px !important; /* Adjusted for mobile */
      }

      .page-phbet-vip-login-password__image-container {
        padding: 0;
      }
    }
  