
    /* Base styles for the page content wrapper */
    .page-phbet-download {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset, ensures content is not hidden by fixed header */
      direction: ltr;
    }

    .page-phbet-download__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-phbet-download__hero-section {
      background-color: #1a2a4a; /* Dark blue from brand */
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      padding-top: 10px; /* Small decorative top padding, main offset handled by body */
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px; /* Ensure a decent height */
    }

    .page-phbet-download__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background */
      z-index: 0;
    }

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

    .page-phbet-download__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fddb00; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      font-weight: 700;
    }

    .page-phbet-download__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-phbet-download__download-button {
      display: inline-block;
      background-color: #fddb00; /* Gold button */
      color: #1a2a4a;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-phbet-download__download-button:hover {
      background-color: #ffe033;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-phbet-download__section {
      padding: 40px 20px;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-phbet-download__section--alt {
      background-color: #eef4f9; /* Light grey-blue for contrast */
    }

    .page-phbet-download__section-title {
      font-size: 2em;
      color: #1a2a4a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      font-weight: 600;
    }

    .page-phbet-download__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #fddb00;
    }

    /* Steps Grid (How to Download) */
    .page-phbet-download__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-phbet-download__step-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-phbet-download__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .page-phbet-download__step-number {
      font-size: 2.5em;
      color: #fddb00;
      font-weight: bold;
      margin-bottom: 15px;
      display: block; /* Ensure number is on its own line */
    }

    .page-phbet-download__step-image {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-phbet-download__step-title {
      font-size: 1.4em;
      color: #1a2a4a;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-phbet-download__step-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Features Section */
    .page-phbet-download__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-phbet-download__feature-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-phbet-download__feature-icon-wrapper {
      flex-shrink: 0;
      width: 60px; /* Wrapper for visual alignment, not image size */
      height: 60px;
      background-color: #fddb00;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden; /* Ensure image stays within bounds */
    }
    .page-phbet-download__feature-icon {
        max-width: 100%; /* Image inside wrapper takes full width */
        height: auto;
        border-radius: 50%; /* If images are circular */
        display: block;
    }

    .page-phbet-download__feature-content h3 {
      margin-top: 0;
      color: #1a2a4a;
      font-size: 1.25em;
      font-weight: 600;
    }

    .page-phbet-download__feature-content p {
      margin-bottom: 0;
      color: #666;
    }

    /* Supported Devices Section */
    .page-phbet-download__device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-phbet-download__device-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-phbet-download__device-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 6px;
    }

    .page-phbet-download__device-name {
      font-size: 1.3em;
      color: #1a2a4a;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .page-phbet-download__device-os {
      color: #666;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-phbet-download__faq-section {
      background-color: #ffffff;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .page-phbet-download__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-phbet-download__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-phbet-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      user-select: none;
      background-color: #f5f5f5;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-phbet-download__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-phbet-download__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a2a4a;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-weight: 600;
    }

    .page-phbet-download__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #fddb00;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
      line-height: 1; /* Center the +/- vertically */
    }

    .page-phbet-download__faq-item.active .page-phbet-download__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus visual */
      color: #ff0000; /* Red for active state */
    }

    .page-phbet-download__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: #ffffff;
      border-radius: 0 0 5px 5px;
    }

    .page-phbet-download__faq-item.active .page-phbet-download__faq-answer {
      max-height: 2000px !important; /* Use !important as required, sufficiently large */
      padding: 20px 15px !important; /* Use !important as required */
      opacity: 1;
    }

    /* Final Call to Action */
    .page-phbet-download__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #1a2a4a;
      color: #ffffff;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .page-phbet-download__cta-title {
      font-size: 2.2em;
      color: #fddb00;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-phbet-download__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-phbet-download__hero-title {
        font-size: 2.5em;
      }
      .page-phbet-download__hero-description {
        font-size: 1.1em;
      }
      .page-phbet-download__section-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-phbet-download__container {
        padding: 15px;
      }
      .page-phbet-download__hero-section {
        padding: 40px 15px;
        padding-top: 10px; /* Small decorative top padding as body handles main offset */
        min-height: 350px;
      }
      .page-phbet-download__hero-title {
        font-size: 2em;
      }
      .page-phbet-download__hero-description {
        font-size: 1em;
      }
      .page-phbet-download__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-phbet-download__section {
        padding: 30px 15px;
      }
      .page-phbet-download__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      /* List items mobile responsiveness */
      .page-phbet-download__steps-grid,
      .page-phbet-download__feature-list,
      .page-phbet-download__device-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-phbet-download__step-item,
      .page-phbet-download__feature-item,
      .page-phbet-download__device-item,
      .page-phbet-download__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-phbet-download__feature-item {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .page-phbet-download__feature-content h3 {
          font-size: 1.1em;
      }
      .page-phbet-download__feature-icon-wrapper {
          margin-bottom: 10px;
      }

      .page-phbet-download__faq-question {
          padding: 12px;
      }
      .page-phbet-download__faq-question h3 {
          font-size: 1em;
      }
      .page-phbet-download__faq-toggle {
          font-size: 1.3em;
      }
      .page-phbet-download__faq-answer {
          padding: 15px 12px !important; /* Adjust padding for smaller screens */
      }

      .page-phbet-download__cta-section {
        padding: 40px 15px;
      }
      .page-phbet-download__cta-title {
        font-size: 1.8em;
      }
      .page-phbet-download__cta-description {
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-phbet-download__step-image,
      .page-phbet-download__device-image,
      .page-phbet-download__hero-background,
      .page-phbet-download__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-phbet-download__hero-title {
        font-size: 1.8em;
      }
      .page-phbet-download__section-title {
        font-size: 1.4em;
      }
      .page-phbet-download__cta-title {
        font-size: 1.6em;
      }
    }
  