
    :root {
      --page-b-23__primary-bg: #1a1a1a;
      --page-b-23__secondary-bg: #2a2a2a;
      --page-b-23__accent-color: #FFD700; /* Gold */
      --page-b-23__text-color: #f0f0f0;
      --page-b-23__light-text: #cccccc;
      --page-b-23__border-color: #444444;
      --page-b-23__button-hover-bg: #e0b800;
    }

    .page-b-23 {
      background-color: var(--page-b-23__primary-bg);
      color: var(--page-b-23__text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-b-23__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-b-23__hero-section {
      text-align: center;
      padding: 40px 20px 60px;
      background: linear-gradient(135deg, var(--page-b-23__primary-bg) 0%, var(--page-b-23__secondary-bg) 100%);
      border-bottom: 2px solid var(--page-b-23__accent-color);
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, main offset from body */
    }

    .page-b-23__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,dark]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-b-23__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-b-23__hero-title {
      font-size: 2.8em;
      color: var(--page-b-23__accent-color);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
      font-weight: bold;
    }

    .page-b-23__hero-subtitle {
      font-size: 1.4em;
      color: var(--page-b-23__light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-b-23__action-button {
      display: inline-block;
      background-color: var(--page-b-23__accent-color);
      color: var(--page-b-23__primary-bg);
      padding: 15px 30px;
      border-radius: 50px;
      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-b-23__action-button:hover {
      background-color: var(--page-b-23__button-hover-bg);
      transform: translateY(-2px);
    }

    .page-b-23__section {
      padding: 60px 20px;
      border-bottom: 1px solid var(--page-b-23__border-color);
    }

    .page-b-23__section:last-of-type {
      border-bottom: none;
    }

    .page-b-23__section-title {
      font-size: 2.2em;
      color: var(--page-b-23__accent-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-b-23__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-b-23__card {
      background-color: var(--page-b-23__secondary-bg);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-b-23__border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-b-23__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-b-23__card-icon {
      width: 120px; /* Min size 200x200px requirement, this is an example */
      height: 120px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--page-b-23__accent-color);
    }

    .page-b-23__card-title {
      font-size: 1.5em;
      color: var(--page-b-23__accent-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-b-23__card-description {
      color: var(--page-b-23__light-text);
      font-size: 0.95em;
    }

    .page-b-23__image-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      object-fit: cover;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-b-23__faq-section {
      padding: 60px 20px;
      background-color: var(--page-b-23__secondary-bg);
      border-top: 1px solid var(--page-b-23__border-color);
    }

    .page-b-23__faq-item {
      background-color: var(--page-b-23__primary-bg);
      border: 1px solid var(--page-b-23__border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-b-23__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-b-23__primary-bg);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-b-23__faq-question:hover {
      background-color: #2e2e2e;
    }

    .page-b-23__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-b-23__accent-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-b-23__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-b-23__accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      margin-left: 15px;
    }

    .page-b-23__faq-item.active .page-b-23__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar visual */
    }

    .page-b-23__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: var(--page-b-23__light-text);
      font-size: 0.95em;
    }

    .page-b-23__faq-item.active .page-b-23__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Floating buttons */
    .page-b-23__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-b-23__floating-button {
      background-color: var(--page-b-23__accent-color);
      color: var(--page-b-23__primary-bg);
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 0.95em;
    }

    .page-b-23__floating-button:hover {
      background-color: var(--page-b-23__button-hover-bg);
      transform: translateY(-2px);
    }
    
    .page-b-23__product-display {
      text-align: center;
      margin-top: 40px;
    }

    .page-b-23__product-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      object-fit: cover;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-b-23__hero-title {
        font-size: 2em;
      }

      .page-b-23__hero-subtitle {
        font-size: 1.1em;
      }

      .page-b-23__section-title {
        font-size: 1.8em;
      }

      .page-b-23__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-b-23__card {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-b-23__card-title {
        font-size: 1.3em;
      }

      .page-b-23__card-description {
        font-size: 0.9em;
      }

      .page-b-23__faq-question {
        padding: 15px 20px;
      }

      .page-b-23__faq-question h3 {
        font-size: 1.1em;
      }

      .page-b-23__faq-toggle {
        font-size: 1.5em;
      }

      .page-b-23__faq-answer {
        padding: 0 20px;
        font-size: 0.85em;
      }

      .page-b-23__faq-item.active .page-b-23__faq-answer {
        padding: 15px 20px !important;
      }

      .page-b-23__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal for mobile */
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-b-23__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-b-23__product-image {
        max-width: calc(100% - 40px); /* Adjust for padding */
        margin-left: 20px;
        margin-right: 20px;
      }

      .page-b-23__container {
        padding: 10px;
      }

      .page-b-23__image-banner {
        max-width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-b-23__hero-title {
        font-size: 1.8em;
      }
      .page-b-23__hero-subtitle {
        font-size: 1em;
      }
      .page-b-23__action-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-b-23__section {
        padding: 40px 15px;
      }
      .page-b-23__section-title {
        font-size: 1.6em;
      }
      .page-b-23__floating-buttons {
        gap: 8px;
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
      }
      .page-b-23__floating-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  