
    /* Page-specific CSS for 8k8-6.html */
    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    .page-8k8-6__hero-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding, relying on body for header offset */
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-6__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-6__button {
      display: inline-block;
      background-color: #ffcc00; /* Gold accent */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-6__section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-6__section-title {
      font-size: 2.2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-6__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

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

    .page-8k8-6__feature-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #eee;
    }

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

    .page-8k8-6__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ffcc00;
      box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    }

    .page-8k8-6__feature-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-8k8-6__login-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-6__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f3f3f3;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      border-left: 5px solid #ffcc00;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-6__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-right: 15px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-6__step-content h3 {
      margin-top: 0;
      font-size: 1.3em;
      color: #1a1a1a;
    }

    .page-8k8-6__step-content p {
      margin-bottom: 0;
      color: #555;
    }

    .page-8k8-6__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-6__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive width */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-8k8-6__provider-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-8k8-6__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 0.95em;
    }

    .page-8k8-6__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-6__payment-item {
      text-align: center;
      padding: 10px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive width */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-8k8-6__payment-logo {
      width: 100px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 8px;
      border-radius: 4px;
    }

    .page-8k8-6__payment-name {
      font-size: 0.9em;
      color: #333;
      font-weight: 600;
    }

    .page-8k8-6__faq-section {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-6__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fdfdfd;
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #ffcc00;
      color: #1a1a1a;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-6__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a1a1a;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      background-color: #fff;
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Expanded padding */
      opacity: 1;
    }

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

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

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

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

      .page-8k8-6__section {
        margin: 30px 15px;
        padding: 15px;
      }

      .page-8k8-6__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-8k8-6__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .page-8k8-6__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-8k8-6__feature-title {
        font-size: 1.3em;
      }

      .page-8k8-6__login-steps {
        gap: 15px;
      }

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

      .page-8k8-6__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

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

      .page-8k8-6__provider-grid,
      .page-8k8-6__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-8k8-6__provider-item,
      .page-8k8-6__payment-item {
        width: 100% !important; /* Important for list items */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-6__provider-logo {
        width: 100px;
        height: 60px;
      }

      .page-8k8-6__payment-logo {
        width: 80px;
        height: 50px;
      }

      .page-8k8-6__faq-section {
        margin: 30px 15px;
        padding: 15px;
      }

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

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

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

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

      /* Ensure images are responsive */
      .page-8k8-6__hero-image,
      .page-8k8-6__feature-icon,
      .page-8k8-6__provider-logo,
      .page-8k8-6__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  