
    :root {
      --page-8k8-3-primary-bg: #1a1a1a;
      --page-8k8-3-secondary-bg: #2a2a2a;
      --page-8k8-3-accent-color: #00aaff; /* A vibrant blue for highlights */
      --page-8k8-3-text-color: #e0e0e0;
      --page-8k8-3-heading-color: #ffffff;
      --page-8k8-3-border-color: #3a3a3a;
      --page-8k8-3-button-hover-bg: #0088cc;
      --page-8k8-3-card-bg: #333333;
    }

    /* Base styles for the page content, ensuring it doesn't interfere with shared components */
    .page-8k8-3 {
      background-color: var(--page-8k8-3-primary-bg);
      color: var(--page-8k8-3-text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, assuming body already has header offset */
    }

    .page-8k8-3__section-title {
      color: var(--page-8k8-3-heading-color);
      font-size: 2.2em;
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-8k8-3__section-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-8k8-3-secondary-bg);
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-8k8-3__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-8k8-3__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtle background image */
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-3__hero-title {
      font-size: 3em;
      color: var(--page-8k8-3-heading-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8k8-3__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-3__hero-button,
    .page-8k8-3__cta-button,
    .page-8k8-3__final-cta-button {
      display: inline-block;
      background-color: var(--page-8k8-3-accent-color);
      color: var(--page-8k8-3-heading-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-3__hero-button:hover,
    .page-8k8-3__cta-button:hover,
    .page-8k8-3__final-cta-button:hover {
      background-color: var(--page-8k8-3-button-hover-bg);
    }

    /* Benefits Section */
    .page-8k8-3__benefits-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-primary-bg);
    }

    .page-8k8-3__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-3__benefit-card {
      background-color: var(--page-8k8-3-card-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Required for list items, cards can benefit too */
    }

    .page-8k8-3__benefit-icon {
      width: 200px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive */
    }

    .page-8k8-3__benefit-title {
      color: var(--page-8k8-3-heading-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-8k8-3__benefit-text {
      font-size: 1em;
      color: var(--page-8k8-3-text-color);
    }

    /* Steps Section */
    .page-8k8-3__steps-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-secondary-bg);
    }

    .page-8k8-3__steps-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-3__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: var(--page-8k8-3-card-bg);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Ensure padding is included */
    }

    .page-8k8-3__step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: var(--page-8k8-3-accent-color);
      color: var(--page-8k8-3-heading-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4em;
      font-weight: bold;
    }

    .page-8k8-3__step-content {
      flex-grow: 1;
    }

    .page-8k8-3__step-title {
      color: var(--page-8k8-3-heading-color);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-8k8-3__step-text {
      font-size: 0.95em;
      color: var(--page-8k8-3-text-color);
    }

    .page-8k8-3__cta-button {
      margin-top: 40px;
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* Promotions Section */
    .page-8k8-3__promotions-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-primary-bg);
    }

    .page-8k8-3__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-3__promo-card {
      background-color: var(--page-8k8-3-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-3__promo-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive */
    }

    .page-8k8-3__promo-title {
      color: var(--page-8k8-3-heading-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-8k8-3__promo-text {
      font-size: 0.95em;
      color: var(--page-8k8-3-text-color);
      padding: 0 15px 25px 15px;
    }

    /* Security Section */
    .page-8k8-3__security-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-secondary-bg);
    }

    .page-8k8-3__security-features {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-8k8-3__security-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }

    .page-8k8-3__security-item {
      background-color: var(--page-8k8-3-card-bg);
      color: var(--page-8k8-3-text-color);
      padding: 15px 25px;
      margin-bottom: 15px;
      border-radius: 8px;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Ensure padding is included */
      word-wrap: break-word; /* For long texts */
      overflow-wrap: break-word; /* For long texts */
    }

    .page-8k8-3__security-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      max-width: 100%; /* Responsive */
    }

    /* Payments Section */
    .page-8k8-3__payments-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-primary-bg);
    }

    .page-8k8-3__payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-3__payment-item {
      background-color: var(--page-8k8-3-card-bg);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Ensure padding is included */
    }

    .page-8k8-3__payment-logo {
      width: 100%;
      max-width: 180px; /* Adjusted to fit minmax(150px) grid item */
      height: auto;
      margin-bottom: 10px;
      max-width: 100%; /* Responsive */
    }

    .page-8k8-3__payment-name {
      font-weight: bold;
      color: var(--page-8k8-3-heading-color);
      margin: 0;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-secondary-bg);
    }

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

    .page-8k8-3__faq-item {
      background-color: var(--page-8k8-3-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-3-card-bg);
      color: var(--page-8k8-3-heading-color);
      font-size: 1.15em;
      font-weight: bold;
      border-bottom: 1px solid var(--page-8k8-3-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-3__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-3__faq-q-text {
      margin: 0;
      pointer-events: none; /* Crucial to allow click on parent div */
      flex-grow: 1;
      color: var(--page-8k8-3-heading-color);
    }

    .page-8k8-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial to allow click on parent div */
      color: var(--page-8k8-3-accent-color);
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or - */
    }

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #333333; /* Slightly different background for answer */
      color: var(--page-8k8-3-text-color);
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Padding when active */
      opacity: 1;
    }

    .page-8k8-3__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Final CTA Section */
    .page-8k8-3__final-cta-section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-8k8-3-primary-bg);
      border-top: 1px solid var(--page-8k8-3-border-color);
    }

    .page-8k8-3__final-cta-button {
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .page-8k8-3__legal-note {
      font-size: 0.85em;
      color: #888;
      margin-top: 20px;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-8k8-3__hero-section {
        padding: 100px 40px;
      }

      .page-8k8-3__hero-title {
        font-size: 4em;
      }

      .page-8k8-3__hero-description {
        font-size: 1.3em;
      }

      .page-8k8-3__section-title {
        font-size: 2.8em;
      }

      .page-8k8-3__section-intro {
        font-size: 1.2em;
      }

      .page-8k8-3__security-features {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: left;
      }

      .page-8k8-3__security-list {
        text-align: left;
        flex: 1;
        max-width: 45%;
      }

      .page-8k8-3__security-image {
        flex: 1;
        max-width: 45%;
      }

      .page-8k8-3__security-item {
        text-align: left;
      }
    }

    /* Mobile-specific adjustments (max-width: 768px) */
    @media (max-width: 768px) {
      .page-8k8-3__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-3__hero-description {
        font-size: 1em;
      }

      .page-8k8-3__section-title {
        font-size: 1.8em;
      }

      .page-8k8-3__section-intro {
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-8k8-3__benefits-grid,
      .page-8k8-3__steps-list,
      .page-8k8-3__promo-grid,
      .page-8k8-3__security-list,
      .page-8k8-3__payment-methods {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important; /* Adjusted to prevent overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-3__benefit-card,
      .page-8k8-3__step-item,
      .page-8k8-3__promo-card,
      .page-8k8-3__security-item,
      .page-8k8-3__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-3__faq-question,
      .page-8k8-3__faq-answer {
        padding: 15px 20px !important; /* Adjust FAQ padding */
      }

      .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
        padding: 15px 20px !important; /* Ensure padding is consistent for active state */
      }

      /* Image responsive requirements */
      .page-8k8-3__hero-image,
      .page-8k8-3__benefit-icon,
      .page-8k8-3__promo-image,
      .page-8k8-3__security-image,
      .page-8k8-3__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-3__hero-image-wrapper,
      .page-8k8-3__benefit-card,
      .page-8k8-3__promo-card,
      .page-8k8-3__security-features,
      .page-8k8-3__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  