
    :root {
      --page-8k8-primary-color: #f1c40f; /* Yellow */
      --page-8k8-secondary-color: #2c3e50; /* Dark Blue */
      --page-8k8-accent-color: #e74c3c; /* Red */
      --page-8k8-text-color: #ecf0f1; /* Light Gray */
      --page-8k8-dark-text-color: #34495e; /* Darker Blue */
      --page-8k8-background-light: #1a2530; /* Dark background */
      --page-8k8-background-dark: #121a22; /* Even darker background */
      --page-8k8-border-radius: 8px;
      --page-8k8-padding-section: 60px 20px;
      --page-8k8-padding-item: 15px;
    }

    .page-8k8 {
      font-family: 'Roboto', sans-serif;
      color: var(--page-8k8-text-color);
      background-color: var(--page-8k8-background-dark);
      line-height: 1.6;
    }

    .page-8k8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8__hero-section {
      position: relative;
      background-color: var(--page-8k8-background-light);
      padding: 10px 0 0; /* Small decorative padding, assuming body handles main offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

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

    .page-8k8__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 800px;
    }

    .page-8k8__hero-title {
      font-size: 3.2em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8__hero-description {
      font-size: 1.3em;
      color: var(--page-8k8-text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8__cta-button:hover {
      background-color: #c0392b; /* Darker red */
      transform: translateY(-2px);
    }

    .page-8k8__floating-buttons {
      position: fixed;
      top: 10px;
      right: 15px;
      z-index: 1000;
      display: flex;
      gap: 10px;
    }

    .page-8k8__floating-button {
      background-color: var(--page-8k8-primary-color);
      color: var(--page-8k8-secondary-color);
      padding: 8px 15px;
      border-radius: var(--page-8k8-border-radius);
      font-weight: bold;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-8k8__floating-button:hover {
      background-color: #d4ac0d; /* Darker yellow */
      transform: translateY(-2px);
    }

    .page-8k8__section {
      padding: var(--page-8k8-padding-section);
      background-color: var(--page-8k8-background-light);
      margin-bottom: 20px;
    }

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

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

    .page-8k8__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8__card {
      background-color: var(--page-8k8-background-dark);
      border-radius: var(--page-8k8-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-8k8__card:hover {
      transform: translateY(-5px);
    }

    .page-8k8__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8__card-content {
      padding: var(--page-8k8-padding-item);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

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

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

    .page-8k8__card-button {
      background-color: var(--page-8k8-accent-color);
      color: #fff;
      padding: 10px 15px;
      border-radius: var(--page-8k8-border-radius);
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start;
    }

    .page-8k8__card-button:hover {
      background-color: #c0392b;
    }

    .page-8k8__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8__provider-item {
      background-color: var(--page-8k8-background-dark);
      padding: 15px 25px;
      border-radius: var(--page-8k8-border-radius);
      color: var(--page-8k8-primary-color);
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
      overflow-wrap: break-word; /* Required for list items */
      word-break: break-word; /* Required for list items */
      text-align: center;
    }

    .page-8k8__provider-item:hover {
      background-color: var(--page-8k8-secondary-color);
      transform: translateY(-3px);
    }

    .page-8k8__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8__payment-item {
      background-color: var(--page-8k8-background-dark);
      padding: 15px 25px;
      border-radius: var(--page-8k8-border-radius);
      color: var(--page-8k8-text-color);
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
      overflow-wrap: break-word; /* Required for list items */
      word-break: break-word; /* Required for list items */
      text-align: center;
    }

    .page-8k8__payment-item:hover {
      background-color: var(--page-8k8-secondary-color);
      transform: translateY(-3px);
    }

    .page-8k8__text-block {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: center;
      font-size: 1.1em;
      color: var(--page-8k8-text-color);
    }

    .page-8k8__faq-section {
      background-color: var(--page-8k8-background-light);
      padding: var(--page-8k8-padding-section);
      margin-bottom: 20px;
    }

    .page-8k8__faq-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-8k8__faq-item {
      background-color: var(--page-8k8-background-dark);
      margin-bottom: 15px;
      border-radius: var(--page-8k8-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8__faq-question:hover {
      background-color: #3b526b; /* Slightly lighter dark blue */
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: inherit;
      font-size: 1em; /* Adjust to fit parent font size */
    }

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: var(--page-8k8-primary-color);
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X or - */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-8k8-text-color);
      font-size: 1em;
      background-color: var(--page-8k8-background-dark);
    }

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

    /* Responsive Styles */
    @media (max-width: 992px) {
      .page-8k8__hero-title {
        font-size: 2.8em;
      }
      .page-8k8__hero-description {
        font-size: 1.2em;
      }
      .page-8k8__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8__floating-buttons {
        top: auto;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: center;
        gap: 8px;
      }
      .page-8k8__floating-button {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.9em;
      }
      .page-8k8__hero-title {
        font-size: 2.2em;
      }
      .page-8k8__hero-description {
        font-size: 1em;
      }
      .page-8k8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8__section {
        padding: 40px 15px;
      }
      .page-8k8__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8__card-image {
        height: 180px;
      }
      .page-8k8__card-title {
        font-size: 1.3em;
      }
      .page-8k8__card-description {
        font-size: 0.9em;
      }

      /* List item responsiveness */
      .page-8k8__providers-list,
      .page-8k8__payments-list {
        flex-direction: column;
        align-items: center;
        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__provider-item,
      .page-8k8__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 1em;
      }

      .page-8k8__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 1.8em;
      }
      .page-8k8__hero-description {
        font-size: 0.9em;
      }
      .page-8k8__section-title {
        font-size: 1.6em;
      }
      .page-8k8__floating-buttons {
        flex-direction: column;
      }
      .page-8k8__floating-button {
        width: 100%;
      }
    }
  