
    :root {
      --page-0k-789-primary-color: #e44d26; /* Orange-red for vibrancy */
      --page-0k-789-secondary-color: #333;
      --page-0k-789-accent-color: #f7b731; /* Gold for highlights */
      --page-0k-789-background-light: #f9f9f9;
      --page-0k-789-background-dark: #2c3e50; /* Dark blue-grey */
      --page-0k-789-text-light: #fff;
      --page-0k-789-text-dark: #333;
    }

    .page-0k-789 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-0k-789-text-dark);
      background-color: var(--page-0k-789-background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-0k-789__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Dynamic gradient */
      color: var(--page-0k-789-text-light);
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, header offset handled by body */
    }

    .page-0k-789__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'%3E%3Cpath d='M0 60V0h60L0 60z'/%3E%3Cpath d='M60 60H0V0h60L0 60z'/%3E%3C/g%3E%3C/svg%3E"); /* Subtle pattern */
      opacity: 0.1;
      z-index: 0;
    }

    .page-0k-789__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-0k-789__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-0k-789__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-0k-789__promo-link {
      display: inline-block;
      background-color: var(--page-0k-789-accent-color);
      color: var(--page-0k-789-background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
    }

    .page-0k-789__promo-link:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    .page-0k-789__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-0k-789__section--dark {
      background-color: var(--page-0k-789-background-dark);
      color: var(--page-0k-789-text-light);
    }

    .page-0k-789__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: var(--page-0k-789-primary-color);
    }

    .page-0k-789__section--dark .page-0k-789__section-title {
      color: var(--page-0k-789-accent-color);
    }

    .page-0k-789__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-0k-789__card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid #eee;
    }

    .page-0k-789__section--dark .page-0k-789__card {
      background-color: #34495e;
      color: var(--page-0k-789-text-light);
      border: 1px solid #4a6c8e;
    }

    .page-0k-789__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-0k-789__card-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      max-height: 250px;
    }

    .page-0k-789__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-0k-789-primary-color);
      text-align: center;
    }

    .page-0k-789__section--dark .page-0k-789__card-title {
      color: var(--page-0k-789-accent-color);
    }

    .page-0k-789__card-description {
      font-size: 1em;
      color: #666;
      text-align: center;
    }

    .page-0k-789__section--dark .page-0k-789__card-description {
      color: #ccc;
    }

    .page-0k-789__features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-0k-789__features-item {
      background-color: #fff;
      border-left: 5px solid var(--page-0k-789-primary-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      width: calc(33% - 20px);
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-0k-789__section--dark .page-0k-789__features-item {
      background-color: #34495e;
      color: var(--page-0k-789-text-light);
      border-left-color: var(--page-0k-789-accent-color);
    }

    .page-0k-789__features-item:hover {
      transform: translateY(-5px);
    }

    .page-0k-789__features-item h3 {
      font-size: 1.3em;
      margin-top: 0;
      color: var(--page-0k-789-primary-color);
    }

    .page-0k-789__section--dark .page-0k-789__features-item h3 {
      color: var(--page-0k-789-accent-color);
    }

    .page-0k-789__providers-list,
    .page-0k-789__payments-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

    .page-0k-789__provider-item,
    .page-0k-789__payment-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--page-0k-789-primary-color);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      flex: 1 1 auto;
      max-width: 200px; /* Limit width for items */
      min-width: 120px;
    }

    .page-0k-789__section--dark .page-0k-789__provider-item,
    .page-0k-789__section--dark .page-0k-789__payment-item {
      background-color: #34495e;
      color: var(--page-0k-789-accent-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-0k-789__provider-item:hover,
    .page-0k-789__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-0k-789__cta-section {
      background-color: var(--page-0k-789-primary-color);
      color: var(--page-0k-789-text-light);
      padding: 60px 20px;
      text-align: center;
    }

    .page-0k-789__cta-title {
      font-size: 2em;
      margin-bottom: 20px;
    }

    .page-0k-789__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-0k-789__button {
      background-color: var(--page-0k-789-accent-color);
      color: var(--page-0k-789-background-dark);
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      min-width: 150px;
    }

    .page-0k-789__button:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    /* Floating buttons for mobile */
    .page-0k-789__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
      display: none; /* Hidden by default, shown on mobile */
    }

    .page-0k-789__floating-button {
      background-color: var(--page-0k-789-primary-color);
      color: var(--page-0k-789-text-light);
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-0k-789__floating-button--register {
      background-color: var(--page-0k-789-accent-color);
      color: var(--page-0k-789-background-dark);
    }

    .page-0k-789__floating-button:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    /* FAQ Section */
    .page-0k-789__faq-section {
      background-color: var(--page-0k-789-background-light);
      padding: 60px 0;
      text-align: center;
    }

    .page-0k-789__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-0k-789__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-0k-789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-0k-789-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-0k-789__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-0k-789__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-0k-789-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-0k-789__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-0k-789-primary-color);
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-0k-789__faq-item.active .page-0k-789__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-0k-789__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: #555;
    }

    .page-0k-789__faq-item.active .page-0k-789__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* General image styling */
    .page-0k-789 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      margin: 0 auto; /* Center images */
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-0k-789__hero-title {
        font-size: 2.2em;
      }

      .page-0k-789__hero-subtitle {
        font-size: 1.1em;
      }

      .page-0k-789__section-title {
        font-size: 1.8em;
      }

      .page-0k-789__features-item {
        width: calc(50% - 15px);
      }
    }

    @media (max-width: 768px) {
      .page-0k-789 {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
      }

      .page-0k-789__hero-section {
        padding: 60px 15px;
      }

      .page-0k-789__hero-title {
        font-size: 1.8em;
      }

      .page-0k-789__hero-subtitle {
        font-size: 1em;
      }

      .page-0k-789__section {
        padding: 40px 0;
      }

      .page-0k-789__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
      }

      .page-0k-789__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-0k-789__card {
        padding: 20px;
      }

      .page-0k-789__card-title {
        font-size: 1.3em;
      }

      .page-0k-789__features-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-0k-789__features-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-0k-789__features-item h3 {
        font-size: 1.2em;
      }

      .page-0k-789__providers-list,
      .page-0k-789__payments-list {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-0k-789__provider-item,
      .page-0k-789__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-0k-789__cta-title {
        font-size: 1.6em;
      }

      .page-0k-789__cta-buttons {
        flex-direction: column;
      }

      .page-0k-789__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-0k-789__floating-buttons {
        display: flex; /* Show floating buttons on mobile */
      }

      .page-0k-789__faq-list {
        padding: 0 15px;
      }

      .page-0k-789__faq-question {
        padding: 15px 20px;
      }

      .page-0k-789__faq-question h3 {
        font-size: 1em;
      }

      .page-0k-789__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-0k-789__hero-title {
        font-size: 1.5em;
      }
      .page-0k-789__hero-subtitle {
        font-size: 0.9em;
      }
      .page-0k-789__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  