
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #333;
      --text-color: #333;
      --light-bg: #f8f8f8;
      --dark-bg: #222;
      --white-color: #fff;
      --border-color: #ddd;
      --hover-color: #ff6a42;
    }

    /* Base styles for the page-8k8-17 container */
    .page-8k8-17 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--light-bg);
      padding-top: 10px; /* Small decorative padding, assuming body has main header offset */
    }

    .page-8k8-17__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-17__section {
      background-color: var(--white-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-17__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* Dark gradient for hero */
      color: var(--white-color);
      border-radius: 0; /* No border-radius for full-width hero */
      box-shadow: none;
      margin-bottom: 0;
      overflow: hidden; /* Ensure content doesn't spill */
    }

    .page-8k8-17__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-8k8-17__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-17__hero-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-17__hero-button:hover {
      background-color: var(--hover-color);
      transform: translateY(-2px);
    }

    .page-8k8-17__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-top: 40px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-8k8-17__heading-primary {
      font-size: 2.5em;
      color: var(--secondary-color);
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
    }

    .page-8k8-17__heading-secondary {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .page-8k8-17__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.7;
    }

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

    .page-8k8-17__feature-card {
      background-color: var(--light-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-17__feature-icon {
      width: 250px; /* Minimum size */
      height: 250px; /* Minimum size */
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

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

    .page-8k8-17__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
    }

    .page-8k8-17__list-item {
      background-color: #f0f0f0;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      font-size: 1.05em;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* Break long words */
    }

    .page-8k8-17__list-item::before {
      content: '✓';
      color: var(--primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-8k8-17__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-17__provider-card {
      text-align: center;
      background-color: var(--white-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

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

    .page-8k8-17__provider-logo {
      width: 200px; /* Minimum size */
      height: 100px; /* Minimum size */
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-8k8-17__provider-name {
      font-weight: 600;
      color: var(--secondary-color);
      font-size: 1.1em;
    }

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

    .page-8k8-17__payment-logo {
      width: 200px; /* Minimum size */
      height: 100px; /* Minimum size */
      max-width: 100%;
      height: auto;
      object-fit: contain;
      background-color: var(--white-color);
      padding: 10px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-17__promo-link {
      display: inline-block;
      background-color: #007bff; /* A distinct color for promo */
      color: var(--white-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17__promo-link:hover {
      background-color: #0056b3;
    }

    /* FAQ Section Styles */
    .page-8k8-17__faq-section {
      background-color: var(--white-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-17__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-8k8-17__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--light-bg);
      cursor: pointer;
      user-select: none;
      font-weight: 600;
      color: var(--secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-8k8-17__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-8k8-17__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-17__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-toggle {
      transform: rotate(45deg); /* Plus to X / Minus */
    }

    .page-8k8-17__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;
      background-color: var(--white-color);
      color: var(--text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-17__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-17__heading-primary {
        font-size: 2em;
      }
      .page-8k8-17__heading-secondary {
        font-size: 1.6em;
      }
      .page-8k8-17__section {
        padding: 30px 20px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-17__hero-section {
        padding: 40px 15px;
      }
      .page-8k8-17__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-17__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-17__heading-primary {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-17__heading-secondary {
        font-size: 1.4em;
      }
      .page-8k8-17__paragraph {
        font-size: 1em;
      }

      .page-8k8-17__features-grid,
      .page-8k8-17__providers-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }

      .page-8k8-17__list {
        grid-template-columns: 1fr; /* Stack list items */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 10px !important; /* Adjust padding for smaller screens */
        box-sizing: border-box !important;
      }

      .page-8k8-17__payment-methods {
        flex-direction: column;
        align-items: center;
      }

      .page-8k8-17__payment-logo {
        width: 100% !important;
        max-width: 250px !important; /* Limit max width even when stacked */
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-17__faq-question h3 {
        font-size: 1.05em;
      }
      .page-8k8-17__faq-answer {
        padding: 0 10px;
      }
      .page-8k8-17__faq-item.active .page-8k8-17__faq-answer {
        padding: 15px 10px !important;
      }
    }

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