
    .page-p-789 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky buttons */
    }

    .page-p-789__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-p-789__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-p-789__section--dark {
      background-color: #16213e;
    }

    .page-p-789__section-title {
      font-size: 2.5em;
      color: #e94560;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
      text-align: center;
    }

    .page-p-789__section-subtitle {
      font-size: 1.2em;
      color: #b0b0b0;
      margin-bottom: 40px;
    }

    .page-p-789__hero-section {
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-p-789__hero-content {
      position: relative;
      z-index: 1;
      padding: 60px 20px;
    }

    .page-p-789__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #f0f0f0;
      line-height: 1.2;
    }

    .page-p-789__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #c0c0c0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-p-789__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-p-789__cta-button:hover {
      background-color: #ff6a81;
      transform: translateY(-3px);
    }

    .page-p-789__hero-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      margin-top: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: cover;
    }

    .page-p-789__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(22, 33, 62, 0.95);
      padding: 10px 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .page-p-789__sticky-button {
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .page-p-789__sticky-button--secondary {
      background-color: #0f3460;
    }

    .page-p-789__sticky-button:hover {
      background-color: #ff6a81;
    }

    .page-p-789__sticky-button--secondary:hover {
      background-color: #1a4a80;
    }

    .page-p-789__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center; /* Center items in the grid */
    }

    .page-p-789__product-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
      width: 100%; /* Ensure full width in grid cell */
      max-width: 350px; /* Limit max width for larger screens */
    }

    .page-p-789__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-p-789__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #e94560;
      max-width: 100%;
      display: block;
    }

    .page-p-789__product-title {
      font-size: 1.4em;
      color: #e94560;
      margin: 20px 15px 10px;
    }

    .page-p-789__product-description {
      font-size: 0.95em;
      color: #b0b0b0;
      padding: 0 15px;
    }

    .page-p-789__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-p-789__promo-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%;
      max-width: 450px;
    }

    .page-p-789__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-p-789__promo-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      display: block;
      max-width: 100%;
      height: auto;
      margin-left: 0; /* Align left */
    }

    .page-p-789__promo-title {
      font-size: 1.3em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-p-789__promo-description {
      font-size: 0.95em;
      color: #b0b0b0;
    }

    .page-p-789__benefits-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .page-p-789__benefit-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%;
      max-width: 300px;
    }

    .page-p-789__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-p-789__benefit-title {
      font-size: 1.2em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-p-789__benefit-description {
      font-size: 0.9em;
      color: #b0b0b0;
    }

    .page-p-789__faq-section {
      padding: 40px 0;
      background-color: #1a1a2e;
      color: #e0e0e0;
    }

    .page-p-789__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      padding: 0;
      list-style: none;
    }

    .page-p-789__faq-item {
      background-color: #16213e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-p-789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #0f3460;
      color: #fff;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-bottom: 1px solid #1a1a2e;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-p-789__faq-question:hover {
      background-color: #1a4a80;
    }

    .page-p-789__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-p-789__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-p-789__faq-item.active .page-p-789__faq-toggle {
      transform: rotate(45deg);
    }

    .page-p-789__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #b0b0b0;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-p-789__faq-item.active .page-p-789__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-p-789__final-cta {
      text-align: center;
      padding: 50px 20px;
      background-color: #0f3460;
      margin-top: 50px;
      border-radius: 10px;
    }

    .page-p-789__final-cta-title {
      font-size: 2.2em;
      color: #fff;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-p-789__hero-title {
        font-size: 2.2em;
      }
      .page-p-789__hero-description {
        font-size: 1.1em;
      }
      .page-p-789__section-title {
        font-size: 2em;
      }
      .page-p-789__product-grid,
      .page-p-789__promo-list,
      .page-p-789__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-p-789__product-item,
      .page-p-789__promo-item,
      .page-p-789__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-p-789__product-image,
      .page-p-789__promo-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-p-789__product-title,
      .page-p-789__promo-title,
      .page-p-789__benefit-title {
        font-size: 1.1em;
      }
      .page-p-789__product-description,
      .page-p-789__promo-description,
      .page-p-789__benefit-description {
        font-size: 0.85em;
      }
      .page-p-789__sticky-buttons {
        gap: 10px;
        padding: 8px 0;
      }
      .page-p-789__sticky-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-p-789__faq-question,
      .page-p-789__faq-answer {
        padding: 15px !important;
      }
      .page-p-789__faq-question h3 {
        font-size: 1em;
      }
      .page-p-789__final-cta-title {
        font-size: 1.8em;
      }
      .page-p-789__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-p-789__hero-content {
        padding: 40px 15px;
      }
      .page-p-789__section {
        padding: 30px 0;
      }
    }

    @media (max-width: 480px) {
      .page-p-789__hero-title {
        font-size: 1.8em;
      }
      .page-p-789__hero-description {
        font-size: 1em;
      }
      .page-p-789__section-title {
        font-size: 1.7em;
      }
      .page-p-789__sticky-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px 10px;
      }
      .page-p-789__sticky-button {
        flex-shrink: 0;
      }
    }
  