
    .page-789-cub {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define it on body */
    }

    .page-789-cub__section-title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__hero-section {
      position: relative;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 0; /* Small decorative padding, body has main offset */
      box-sizing: border-box;
    }

    .page-789-cub__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      max-width: 100%;
    }

    .page-789-cub__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: -1;
    }

    .page-789-cub__hero-content {
      z-index: 1;
      max-width: 900px;
      padding: 0 20px;
    }

    .page-789-cub__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #FFD700;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-789-cub__button {
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
      white-space: nowrap;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__button--primary {
      background-color: #FFD700;
      color: #1a1a1a;
      border: 2px solid #FFD700;
    }

    .page-789-cub__button--primary:hover {
      background-color: #e6c200;
      border-color: #e6c200;
    }

    .page-789-cub__button--secondary {
      background-color: transparent;
      color: #FFD700;
      border: 2px solid #FFD700;
    }

    .page-789-cub__button--secondary:hover {
      background-color: #FFD700;
      color: #1a1a1a;
    }

    .page-789-cub__button--small {
      padding: 10px 20px;
      font-size: 1em;
    }

    .page-789-cub__features-section,
    .page-789-cub__products-section,
    .page-789-cub__promotions-section,
    .page-789-cub__about-section,
    .page-789-cub__faq-section,
    .page-789-cub__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-789-cub__features-grid,
    .page-789-cub__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-789-cub__feature-item,
    .page-789-cub__promotion-card {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__feature-item:hover,
    .page-789-cub__promotion-card:hover {
      transform: translateY(-10px);
    }

    .page-789-cub__feature-icon {
      width: 150px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-789-cub__feature-title,
    .page-789-cub__promotion-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__feature-description,
    .page-789-cub__promotion-description {
      font-size: 1em;
      color: #c0c0c0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__product-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding-bottom: 20px;
      justify-content: flex-start;
    }

    .page-789-cub__product-item {
      flex: 0 0 auto;
      width: 300px;
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      scroll-snap-align: start;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-789-cub__product-title {
      font-size: 1.5em;
      color: #FFD700;
      padding: 15px 15px 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__product-description {
      font-size: 0.9em;
      color: #c0c0c0;
      padding: 0 15px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-789-cub__button-wrapper {
      margin-top: 20px;
    }

    .page-789-cub__promotion-footer {
      text-align: center;
      margin-top: 40px;
      font-size: 1.1em;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    .page-789-cub__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    .page-789-cub__about-text {
      font-size: 1.1em;
      color: #c0c0c0;
    }

    .page-789-cub__about-text p {
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-789-cub__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #f0f0f0;
      box-sizing: border-box;
    }

    .page-789-cub__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #FFD700;
    }

    .page-789-cub__faq-item.active .page-789-cub__faq-question {
      background-color: #444;
    }

    .page-789-cub__faq-item.active .page-789-cub__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-789-cub__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #c0c0c0;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-789-cub__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__cta-section {
      text-align: center;
      background-color: #2a2a2a;
      padding: 80px 20px;
      border-radius: 10px;
      margin-top: 60px;
    }

    .page-789-cub__cta-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 25px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__cta-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-789-cub__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-789-cub__hero-title {
        font-size: 3em;
      }
      .page-789-cub__section-title {
        font-size: 2em;
      }
      .page-789-cub__feature-title,
      .page-789-cub__promotion-title {
        font-size: 1.5em;
      }
      .page-789-cub__product-item {
        width: 280px;
      }
    }

    @media (max-width: 768px) {
      .page-789-cub__hero-section {
        height: 60vh;
      }
      .page-789-cub__hero-title {
        font-size: 2.2em;
      }
      .page-789-cub__hero-description {
        font-size: 1em;
      }
      .page-789-cub__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-789-cub__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-789-cub__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-789-cub__features-section,
      .page-789-cub__products-section,
      .page-789-cub__promotions-section,
      .page-789-cub__about-section,
      .page-789-cub__faq-section,
      .page-789-cub__cta-section {
        padding: 40px 15px;
      }

      /* List Item Responsive Requirements */
      .page-789-cub__features-grid,
      .page-789-cub__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-789-cub__feature-item,
      .page-789-cub__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-789-cub__product-carousel {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-789-cub__product-item {
        width: 250px;
        flex-shrink: 0;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-789-cub__product-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789-cub__about-content {
        flex-direction: column;
      }
      .page-789-cub__about-image {
        max-width: 100%;
      }
      .page-789-cub__cta-title {
        font-size: 2em;
      }
      .page-789-cub__cta-description {
        font-size: 1em;
      }
      .page-789-cub__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-789-cub__faq-question,
      .page-789-cub__faq-answer {
        padding: 15px 20px;
      }
      .page-789-cub__faq-question h3 {
        font-size: 1.1em;
      }
      .page-789-cub__faq-answer p {
        font-size: 0.95em;
      }
      .page-789-cub__faq-item.active .page-789-cub__faq-answer {
        padding: 15px 20px !important;
      }
      .page-789-cub__feature-icon {
        width: 120px;
      }
    }

    @media (max-width: 480px) {
      .page-789-cub__hero-title {
        font-size: 1.8em;
      }
      .page-789-cub__hero-description {
        font-size: 0.9em;
      }
      .page-789-cub__button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-789-cub__section-title {
        font-size: 1.6em;
      }
      .page-789-cub__cta-title {
        font-size: 1.8em;
      }
      .page-789-cub__cta-description {
        font-size: 0.9em;
      }
      .page-789-cub__product-item {
        width: 90%; /* Adjust for very small screens */
      }
    }
  