
    /* Base styles for the page */
    :root {
      --page-www-8k8-primary-color: #e44d26; /* A vibrant orange for highlights */
      --page-www-8k8-secondary-color: #333;
      --page-www-8k8-accent-color: #f0ad4e; /* A golden yellow for accents */
      --page-www-8k8-text-color: #333;
      --page-www-8k8-light-text-color: #f9f9f9;
      --page-www-8k8-background-light: #f9f9f9;
      --page-www-8k8-background-dark: #222;
      --page-www-8k8-border-color: #ddd;
      --page-www-8k8-font-family: 'Arial', sans-serif;
    }

    .page-www-8k8 {
      font-family: var(--page-www-8k8-font-family);
      line-height: 1.6;
      color: var(--page-www-8k8-text-color);
      background-color: var(--page-www-8k8-background-light);
      padding-top: 10px; /* Small padding for the first section, assuming body handles header offset */
    }

    /* General Section Styling */
    .page-www-8k8__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-www-8k8__section--dark {
      background-color: var(--page-www-8k8-background-dark);
      color: var(--page-www-8k8-light-text-color);
    }

    .page-www-8k8__section-title {
      font-size: 2.5em;
      color: var(--page-www-8k8-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-www-8k8__section-subtitle {
      font-size: 1.8em;
      color: var(--page-www-8k8-secondary-color);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-www-8k8__section--dark .page-www-8k8__section-subtitle {
      color: var(--page-www-8k8-light-text-color);
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-www-8k8-light-text-color);
      overflow: hidden;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-www-8k8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-www-8k8__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

    .page-www-8k8__hero-content {
      z-index: 1;
      max-width: 800px;
      padding: 20px;
    }

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-www-8k8__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-www-8k8-primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-www-8k8__button:hover {
      background-color: #c73c1c;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-www-8k8__floating-buttons {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-www-8k8__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: var(--page-www-8k8-primary-color);
      color: #fff;
      border-radius: 50%;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-www-8k8__floating-button:hover {
      background-color: #c73c1c;
      transform: scale(1.05);
    }

    /* Product Display Section */
    .page-www-8k8__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center; /* Center items if they don't fill the grid */
    }

    .page-www-8k8__product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-www-8k8__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8__product-image {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 1px solid var(--page-www-8k8-border-color);
    }

    .page-www-8k8__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-www-8k8__product-title {
      font-size: 1.5em;
      color: var(--page-www-8k8-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-www-8k8__product-description {
      font-size: 0.95em;
      color: var(--page-www-8k8-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-www-8k8__product-button {
      padding: 10px 20px;
      background-color: var(--page-www-8k8-accent-color);
      color: #fff;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-www-8k8__product-button:hover {
      background-color: #e09b3d;
    }

    /* Promotions Section */
    .page-www-8k8__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-www-8k8__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-www-8k8__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__promo-title {
      font-size: 1.4em;
      color: var(--page-www-8k8-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-www-8k8__promo-description {
      font-size: 0.95em;
      color: var(--page-www-8k8-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-www-8k8__promo-details {
      font-size: 0.85em;
      color: #666;
      margin-top: 10px;
    }

    /* Payment Methods Section */
    .page-www-8k8__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-www-8k8__payment-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: 100%;
      max-width: 180px; /* Limit max width for larger screens */
    }

    .page-www-8k8__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-www-8k8__payment-image {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-www-8k8__payment-name {
      font-size: 0.9em;
      font-weight: bold;
      color: var(--page-www-8k8-secondary-color);
    }

    /* FAQ Section */
    .page-www-8k8__faq-list {
      margin-top: 40px;
    }

    .page-www-8k8__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-www-8k8-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: var(--page-www-8k8-secondary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-www-8k8__faq-question:hover {
      background-color: #eee;
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      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-www-8k8-text-color);
      box-sizing: border-box;
    }

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

    .page-www-8k8__faq-answer p {
        margin-top: 0;
        margin-bottom: 1em;
    }
    .page-www-8k8__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-title {
        font-size: 3em;
      }
      .page-www-8k8__hero-description {
        font-size: 1.1em;
      }
      .page-www-8k8__section-title {
        font-size: 2em;
      }
      .page-www-8k8__section-subtitle {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8 {
        padding-top: 0 !important; /* Ensure no double padding on mobile if body padding is present */
      }
      .page-www-8k8__hero-section {
        height: 50vh;
        min-height: 300px;
      }
      .page-www-8k8__hero-title {
        font-size: 2.2em;
      }
      .page-www-8k8__hero-description {
        font-size: 1em;
      }
      .page-www-8k8__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-www-8k8__section {
        padding: 30px 15px;
      }
      .page-www-8k8__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-www-8k8__section-subtitle {
        font-size: 1.3em;
      }

      /* Product Grid Mobile */
      .page-www-8k8__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-www-8k8__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-www-8k8__product-image {
        height: 180px;
      }

      /* Promo Grid Mobile */
      .page-www-8k8__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-www-8k8__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Payment Grid Mobile */
      .page-www-8k8__payment-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller mobiles */
        gap: 15px;
      }
      .page-www-8k8__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
      }
      .page-www-8k8__payment-image {
        max-width: 80px;
      }

      /* FAQ Mobile */
      .page-www-8k8__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-www-8k8__faq-question h3 {
        font-size: 1em;
      }
      .page-www-8k8__faq-answer {
        padding: 0 10px;
      }
      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px 10px !important;
      }

      /* Floating Buttons Mobile */
      .page-www-8k8__floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
      }
      .page-www-8k8__floating-button {
        width: 50px;
        height: 50px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-title {
        font-size: 1.8em;
      }
      .page-www-8k8__hero-description {
        font-size: 0.9em;
      }
      .page-www-8k8__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-www-8k8__section-title {
        font-size: 1.5em;
      }
      .page-www-8k8__payment-grid {
        grid-template-columns: 1fr; /* Single column on very small mobiles */
      }
      .page-www-8k8__payment-item {
        max-width: 200px; /* Adjust max-width for better centering on single column */
      }
    }
  