
    /* Base styles for the page content, ensuring it's responsive and centered */
    .page-pba-spin-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      padding-top: 10px; /* Small offset from header, assuming body padding-top is handled by shared.css */
      background-color: #f9f9f9;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* General text handling for responsiveness and preventing overflow */
    .page-pba-spin-ph p,
    .page-pba-spin-ph h1,
    .page-pba-spin-ph h2,
    .page-pba-spin-ph h3,
    .page-pba-spin-ph h4,
    .page-pba-spin-ph h5,
    .page-pba-spin-ph h6,
    .page-pba-spin-ph__feature-description,
    .page-pba-spin-ph__hero-description {
      word-break: break-word;
      overflow-wrap: break-word; /* Modern equivalent */
    }

    .page-pba-spin-ph__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-pba-spin-ph__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-pba-spin-ph__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-pba-spin-ph__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-pba-spin-ph__hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
    }

    .page-pba-spin-ph__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-pba-spin-ph__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-pba-spin-ph__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-pba-spin-ph__cta-button:hover {
      background-color: #0056b3;
    }

    /* Section Styling */
    .page-pba-spin-ph__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-pba-spin-ph__section-title {
      font-size: 2.2em;
      color: #2c3e50; /* Darker blue-grey */
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-pba-spin-ph__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    /* Content Blocks */
    .page-pba-spin-ph__content-block {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 40px;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .page-pba-spin-ph__content-block:nth-child(even) {
      flex-direction: row-reverse; /* Alternate image and text */
    }

    .page-pba-spin-ph__content-text {
      flex: 1;
      min-width: 300px;
    }

    .page-pba-spin-ph__content-text h3 {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-pba-spin-ph__content-text p {
      font-size: 1.1em;
      color: #555;
    }

    .page-pba-spin-ph__content-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    /* Features/Benefits List */
    .page-pba-spin-ph__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-pba-spin-ph__feature-item {
      background-color: #f0f8ff; /* Light blue background */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-pba-spin-ph__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-pba-spin-ph__feature-icon {
      max-width: 200px; /* Minimum size for images */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-pba-spin-ph__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-pba-spin-ph__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Call to Action Section */
    .page-pba-spin-ph__cta-section {
      text-align: center;
      background-color: #2c3e50; /* Dark background */
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-pba-spin-ph__cta-section h2 {
      color: #ffcc00;
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-pba-spin-ph__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-pba-spin-ph__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-pba-spin-ph__secondary-button {
      background-color: #6c757d; /* Grey for secondary action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-pba-spin-ph__secondary-button:hover {
      background-color: #5a6268;
    }

    /* FAQ Section */
    .page-pba-spin-ph__faq-section {
      margin-top: 40px;
    }

    .page-pba-spin-ph__faq-item {
      background-color: #f8f8f8;
      border: 1px solid #eee;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-pba-spin-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #007bff; /* Blue header for questions */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-pba-spin-ph__faq-question:hover {
      background-color: #0056b3;
    }

    .page-pba-spin-ph__faq-question h3 {
      margin: 0;
      color: #fff;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-pba-spin-ph__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
      transition: transform 0.3s ease;
    }

    .page-pba-spin-ph__faq-item.active .page-pba-spin-ph__faq-toggle {
      transform: rotate(45deg);
    }

    .page-pba-spin-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #444;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.1em;
    }

    .page-pba-spin-ph__faq-item.active .page-pba-spin-ph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-pba-spin-ph__hero-title {
        font-size: 2.8em;
      }

      .page-pba-spin-ph__hero-description {
        font-size: 1.1em;
      }

      .page-pba-spin-ph__section-title {
        font-size: 2em;
      }

      .page-pba-spin-ph__content-block {
        flex-direction: column;
        text-align: center;
      }

      .page-pba-spin-ph__content-block:nth-child(even) {
        flex-direction: column; /* Reset alternation on mobile */
      }

      .page-pba-spin-ph__content-text,
      .page-pba-spin-ph__content-image-wrapper {
        min-width: unset;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-pba-spin-ph__container {
        padding: 15px;
      }

      .page-pba-spin-ph__hero-section {
        padding: 60px 15px;
        min-height: 350px;
      }

      .page-pba-spin-ph__hero-title {
        font-size: 2.2em;
      }

      .page-pba-spin-ph__hero-description {
        font-size: 1em;
      }

      .page-pba-spin-ph__cta-button,
      .page-pba-spin-ph__secondary-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-pba-spin-ph__section {
        padding: 25px;
      }

      .page-pba-spin-ph__section-title {
        font-size: 1.8em;
      }

      .page-pba-spin-ph__content-text h3 {
        font-size: 1.5em;
      }

      .page-pba-spin-ph__content-text p,
      .page-pba-spin-ph__feature-description {
        font-size: 0.95em;
      }

      .page-pba-spin-ph__features-grid {
        grid-template-columns: 1fr; /* Stack features vertically */
        gap: 20px;
      }
      
      /* Specific responsive rules for list items (features) */
      .page-pba-spin-ph__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding to prevent overflow */
      }

      /* Image responsive rules */
      .page-pba-spin-ph__hero-image,
      .page-pba-spin-ph__content-image,
      .page-pba-spin-ph__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-pba-spin-ph__content-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-pba-spin-ph__cta-section h2 {
        font-size: 2em;
      }

      .page-pba-spin-ph__cta-section p {
        font-size: 1em;
      }

      .page-pba-spin-ph__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-pba-spin-ph__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-pba-spin-ph__faq-question h3 {
        font-size: 1.1em;
      }

      .page-pba-spin-ph__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-pba-spin-ph__faq-item.active .page-pba-spin-ph__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-pba-spin-ph__hero-section {
        padding: 40px 10px;
        min-height: 300px;
      }
      .page-pba-spin-ph__hero-title {
        font-size: 1.8em;
      }
      .page-pba-spin-ph__hero-description {
        font-size: 0.9em;
      }
      .page-pba-spin-ph__section {
        padding: 20px 15px;
      }
      .page-pba-spin-ph__section-title {
        font-size: 1.6em;
      }
      .page-pba-spin-ph__faq-question {
        font-size: 1em;
      }
      .page-pba-spin-ph__faq-question h3 {
        font-size: 1em;
      }
      .page-pba-spin-ph__faq-toggle {
        font-size: 1.5em;
      }
    }
  