
    /* Page-specific CSS for 8k8-6 */
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights, e.g., orange-red */
      --secondary-color: #f7a000; /* A complementary vibrant color, e.g., golden orange */
      --background-dark: #1a1a1a; /* Dark background for sections */
      --background-light: #2c2c2c; /* Slightly lighter dark for cards/items */
      --text-light: #f0f0f0; /* Light text for readability */
      --text-dark: #333333; /* Dark text (less used here) */
      --border-color: #444444; /* Subtle border for elements */
      --button-bg: #e44d26; /* Button background color */
      --button-text: #ffffff; /* Button text color */
    }

    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Decorative top padding, assuming body handles header offset */
    }

    .page-8k8-6__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__section--dark {
      background-color: var(--background-light);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__section--primary {
      background-color: var(--primary-color);
      color: var(--button-text);
    }

    .page-8k8-6__hero-section {
      background-color: var(--background-dark);
      position: relative;
      overflow: hidden;
      padding: 100px 20px;
      color: var(--text-light);
      text-align: center;
    }

    .page-8k8-6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3; /* Soften the background image */
    }

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

    .page-8k8-6__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-6__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: var(--text-light);
    }

    .page-8k8-6__button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      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;
      border: none;
      cursor: pointer;
    }

    .page-8k8-6__button:hover {
      background-color: #c23b18; /* Darker shade of primary */
      transform: translateY(-2px);
    }

    .page-8k8-6__title {
      font-size: 2.5em;
      color: var(--secondary-color);
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .page-8k8-6__title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-8k8-6__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--text-light);
    }

    .page-8k8-6__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__feature-card {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-8k8-6__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-6__feature-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-6__feature-card-description {
      color: var(--text-light);
    }

    .page-8k8-6__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-8k8-6__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-6__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0;
      max-width: 800px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-8k8-6__step-item {
      background-color: var(--background-dark);
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      text-align: left;
      box-sizing: border-box; /* Ensure padding/border are included in width */
    }

    .page-8k8-6__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--button-text);
      background-color: var(--primary-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-8k8-6__step-content h3 {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-6__step-content p {
      margin: 0;
      color: var(--text-light);
    }

    .page-8k8-6__promo-card {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-8k8-6__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-6__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 20px;
    }

    .page-8k8-6__promo-title {
      font-size: 1.6em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-8k8-6__promo-description {
      flex-grow: 1;
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .page-8k8-6__promo-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--button-text);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start;
    }

    .page-8k8-6__promo-button:hover {
      background-color: #c23b18;
    }

    .page-8k8-6__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-6__payment-item {
      background-color: var(--background-dark);
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      font-weight: bold;
      color: var(--primary-color);
      font-size: 1.1em;
      text-align: center;
      min-width: 120px;
      transition: transform 0.2s ease;
    }

    .page-8k8-6__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-6__faq-list {
      list-style: none;
      padding: 0;
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-8k8-6__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--background-dark);
      color: var(--text-light);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-6__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial horizontal 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: var(--background-light);
      color: var(--text-light);
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important; /* Adjusted padding when open */
      opacity: 1;
    }

    .page-8k8-6__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-6__social-media-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-6__social-icon {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-8k8-6__social-icon:hover {
      background-color: #3a3a3a;
      transform: translateY(-3px);
    }

    .page-8k8-6__social-icon img {
      width: 48px; /* Visual size, but placeholder will be 200x200 */
      height: 48px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-6__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-6__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-6__title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-6__section {
        padding: 40px 15px;
      }

      .page-8k8-6__hero-section {
        padding: 80px 15px;
      }

      .page-8k8-6__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-6__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-6__title {
        font-size: 1.8em;
      }

      .page-8k8-6__text-content {
        font-size: 1em;
      }

      .page-8k8-6__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-6__steps-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-6__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-6__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-6__step-content h3 {
        font-size: 1.2em;
      }

      .page-8k8-6__step-content p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-6__promo-card {
        padding: 20px;
      }

      .page-8k8-6__promo-image {
        height: 150px;
      }

      .page-8k8-6__promo-title {
        font-size: 1.4em;
      }

      .page-8k8-6__payment-item {
        min-width: unset;
        width: calc(50% - 10px); /* Two items per row */
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-8k8-6__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-6__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-6__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-6__image,
      .page-8k8-6__promo-image,
      .page-8k8-6__social-icon img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-8k8-6__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-6__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-6__title {
        font-size: 1.5em;
      }

      .page-8k8-6__payment-item {
        width: 100%; /* One item per row */
      }
    }
  