
    .page-8day8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 20px; /* Adjust if footer needs more space */
    }

    /* Fixed Nav Bar Spacing - assumed body handles main padding-top */
    .page-8day8__hero-section {
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-8day8__section-title {
      font-size: 2.2em;
      color: #e94560; /* Accent color for titles */
      text-align: center;
      margin-bottom: 40px;
      padding: 20px 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8day8__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      padding: 0 15px;
      font-size: 1.1em;
      color: #cccccc;
    }

    .page-8day8__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 60vh;
      position: relative;
      overflow: hidden;
      padding: 100px 20px 50px 20px;
      background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
    }

    .page-8day8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-8day8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-8day8__hero-title {
      font-size: 3em;
      color: #e94560;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8day8__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8day8__cta-button {
      display: inline-block;
      background-color: #00bcd4; /* Cyan accent */
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 5px;
      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, 188, 212, 0.4);
    }

    .page-8day8__cta-button:hover {
      background-color: #00a8bd;
      transform: translateY(-2px);
    }

    .page-8day8__about-section,
    .page-8day8__products-section,
    .page-8day8__promotions-section,
    .page-8day8__payments-providers-section,
    .page-8day8__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8day8__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
    }

    .page-8day8__about-content p {
      max-width: 800px;
      margin: 0 auto;
      color: #cccccc;
      font-size: 1.1em;
    }

    .page-8day8__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      object-fit: cover;
      box-sizing: border-box !important;
    }

    .page-8day8__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-8day8__product-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-8day8__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8day8__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #e94560;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-8day8__product-title {
      font-size: 1.6em;
      color: #e94560;
      margin: 20px 15px 10px 15px;
      flex-grow: 0;
    }

    .page-8day8__product-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }

    .page-8day8__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-8day8__promo-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8day8__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8day8__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 2px solid #00bcd4;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-8day8__promo-title {
      font-size: 1.5em;
      color: #00bcd4;
      margin: 20px 15px 10px 15px;
      text-align: center;
    }

    .page-8day8__promo-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px 15px;
      text-align: center;
    }

    .page-8day8__view-all-promos {
      text-align: center;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-8day8__view-all-promos p {
      color: #e0e0e0;
    }

    .page-8day8__payments-providers-section {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .page-8day8__payments-section,
    .page-8day8__providers-section {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 40px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-8day8__payments-section .page-8day8__section-title,
    .page-8day8__providers-section .page-8day8__section-title {
      color: #e94560;
      margin-bottom: 20px;
    }

    .page-8day8__payments-section .page-8day8__section-description,
    .page-8day8__providers-section .page-8day8__section-description {
      color: #cccccc;
      font-size: 1em;
      margin-bottom: 30px;
    }

    .page-8day8__payment-methods,
    .page-8day8__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8day8__payment-logo,
    .page-8day8__provider-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      background-color: #3f3f6a;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-8day8__payment-logo:hover,
    .page-8day8__provider-logo:hover {
      transform: translateY(-3px);
    }

    .page-8day8__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-8day8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #3f3f6a;
      color: #e0e0e0;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #1a1a2e;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8day8__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-8day8__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: #e0e0e0;
      pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-8day8__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent icon interfering with click */
      transition: transform 0.3s ease;
      color: #00bcd4;
    }

    .page-8day8__faq-item.active .page-8day8__faq-toggle {
      transform: rotate(45deg);
      color: #e94560;
    }

    .page-8day8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      background-color: #2a2a4a;
    }

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

    .page-8day8__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8day8__hero-section {
        padding: 80px 15px 40px 15px;
      }

      .page-8day8__hero-title {
        font-size: 2.2em;
      }

      .page-8day8__hero-description {
        font-size: 1em;
      }

      .page-8day8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8day8__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8day8__about-section,
      .page-8day8__products-section,
      .page-8day8__promotions-section,
      .page-8day8__payments-providers-section,
      .page-8day8__faq-section {
        padding: 40px 15px;
      }

      .page-8day8__product-grid,
      .page-8day8__promo-list {
        grid-template-columns: 1fr;
      }

      .page-8day8__product-item,
      .page-8day8__promo-item {
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8day8__payment-methods,
      .page-8day8__provider-logos {
        gap: 15px;
      }

      .page-8day8__payment-logo,
      .page-8day8__provider-logo {
        width: 100px;
        height: 70px;
        padding: 8px;
      }

      .page-8day8__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }

      .page-8day8__faq-question-text {
        font-size: 1.1em;
      }

      .page-8day8__faq-toggle {
        font-size: 1.5em;
      }

      .page-8day8__faq-answer {
        padding: 0 15px;
      }

      .page-8day8__faq-item.active .page-8day8__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness for all images */
      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8day8__about-image,
      .page-8day8__product-image,
      .page-8day8__promo-image,
      .page-8day8__payment-logo,
      .page-8day8__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8day8__hero-title {
        font-size: 1.8em;
      }

      .page-8day8__section-title {
        font-size: 1.5em;
      }

      .page-8day8__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8day8__payment-logo,
      .page-8day8__provider-logo {
        width: 80px;
        height: 60px;
        padding: 5px;
      }
    }
  