
    .page-78be {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-78be__section-title {
      font-size: 2.5em;
      color: #e94560;
      text-align: center;
      margin-bottom: 40px;
      padding: 20px 15px;
      position: relative;
      text-transform: uppercase;
    }

    .page-78be__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #0f3460;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-78be__fixed-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      padding: 0 15px;
    }

    .page-78be__register-button,
    .page-78be__login-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      flex-grow: 1;
      text-align: center;
      max-width: 180px;
      white-space: nowrap;
    }

    .page-78be__register-button:hover,
    .page-78be__login-button:hover {
      background-color: #ff6a80;
      transform: translateY(-2px);
    }

    .page-78be__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      padding-top: 10px; /* Adjusted for header offset */
      overflow: hidden;
    }

    .page-78be__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-78be__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-78be__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f0f0f0;
      line-height: 1.2;
    }

    .page-78be__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #cccccc;
    }

    .page-78be__hero-cta-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-78be__hero-cta-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    .page-78be__products-section,
    .page-78be__promotions-section,
    .page-78be__advantages-section,
    .page-78be__faq-section,
    .page-78be__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-78be__product-card,
    .page-78be__promotion-card {
      background-color: #2e2e4e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-78be__product-card:hover,
    .page-78be__promotion-card:hover {
      transform: translateY(-8px);
    }

    .page-78be__product-image,
    .page-78be__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid #0f3460;
    }

    .page-78be__product-title,
    .page-78be__promotion-title {
      font-size: 1.6em;
      color: #e94560;
      margin: 20px 15px 10px;
    }

    .page-78be__product-description,
    .page-78be__promotion-description {
      font-size: 1em;
      color: #c0c0c0;
      padding: 0 15px 20px;
      flex-grow: 1;
    }

    .page-78be__promotion-button {
      background-color: #0f3460;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      margin: 0 15px 20px;
      transition: background-color 0.3s ease;
      align-self: center;
    }

    .page-78be__promotion-button:hover {
      background-color: #1a1a2e;
    }

    .page-78be__advantage-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
      text-align: center;
    }

    .page-78be__advantage-item {
      background-color: #2e2e4e;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-78be__advantage-item:hover {
      transform: translateY(-5px);
    }

    .page-78be__advantage-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-78be__advantage-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-78be__advantage-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    .page-78be__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-78be__faq-item {
      background-color: #2e2e4e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-78be__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #0f3460;
      color: #ffffff;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-78be__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-78be__faq-question-text {
      margin: 0;
      flex-grow: 1;
      pointer-events: none;
      color: #ffffff;
    }

    .page-78be__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
      color: #e94560;
    }

    .page-78be__faq-item.active .page-78be__faq-toggle {
      transform: rotate(45deg);
    }

    .page-78be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #1a1a2e;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-78be__faq-item.active .page-78be__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-78be__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-78be__cta-section {
      text-align: center;
      background-color: #0f3460;
      padding: 80px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-78be__cta-section .page-78be__section-title {
      color: #ffffff;
    }

    .page-78be__cta-section .page-78be__section-title::after {
      background-color: #e94560;
    }

    .page-78be__cta-description {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-78be__cta-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 18px 45px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-78be__cta-button:hover {
      background-color: #ff6a80;
      transform: translateY(-4px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-78be__hero-title {
        font-size: 3em;
      }
      .page-78be__hero-description {
        font-size: 1.1em;
      }
      .page-78be__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-78be__hero-section {
        min-height: 400px;
      }
      .page-78be__hero-title {
        font-size: 2.2em;
      }
      .page-78be__hero-description {
        font-size: 1em;
      }
      .page-78be__hero-cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-78be__section-title {
        font-size: 1.8em;
      }
      .page-78be__products-section,
      .page-78be__promotions-section,
      .page-78be__advantages-section,
      .page-78be__faq-section,
      .page-78be__cta-section {
        padding: 40px 15px;
      }
      .page-78be__product-grid,
      .page-78be__promotion-grid,
      .page-78be__advantage-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-78be__product-card,
      .page-78be__promotion-card,
      .page-78be__advantage-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-78be__product-image,
      .page-78be__promotion-image,
      .page-78be__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-78be__faq-question,
      .page-78be__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-78be__faq-question-text {
        font-size: 1em;
      }
      .page-78be__fixed-buttons-wrapper {
        bottom: 15px;
        gap: 10px;
      }
      .page-78be__register-button,
      .page-78be__login-button {
        padding: 10px 20px;
        font-size: 1em;
        max-width: 150px;
      }
      .page-78be__cta-section {
        padding: 60px 15px;
      }
      .page-78be__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-78be__hero-title {
        font-size: 1.8em;
      }
      .page-78be__hero-description {
        font-size: 0.9em;
      }
      .page-78be__section-title {
        font-size: 1.5em;
      }
      .page-78be__fixed-buttons-wrapper {
        bottom: 10px;
        gap: 8px;
      }
      .page-78be__register-button,
      .page-78be__login-button {
        padding: 8px 15px;
        font-size: 0.9em;
        max-width: 130px;
      }
    }
  