
    :root {
      --page-789b3-primary-color: #FFD700; /* Gold */
      --page-789b3-secondary-color: #007bff; /* Blue for highlights */
      --page-789b3-dark-bg: #1a1a2e; /* Dark background */
      --page-789b3-light-bg: #21213e; /* Slightly lighter dark background */
      --page-789b3-text-color: #f0f0f0; /* Light text */
      --page-789b3-accent-color: #ff4136; /* Red for emphasis */
      --page-789b3-border-color: #333;
      --page-789b3-button-hover-bg: #ffc107;
      --page-789b3-faq-question-bg: #2a2a4a;
      --page-789b3-faq-answer-bg: #1e1e3b;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789b3-text-color);
      background-color: var(--page-789b3-dark-bg);
    }

    .page-789b3 {
      background-color: var(--page-789b3-dark-bg);
      color: var(--page-789b3-text-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-789b3__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789b3__hero-section {
      text-align: center;
      padding-top: 10px; /* For fixed header */
      position: relative;
      overflow: hidden;
      background-color: var(--page-789b3-light-bg);
    }

    .page-789b3__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

    .page-789b3__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px;
      background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
      margin-top: -80px; /* Overlap with image for visual appeal */
      color: var(--page-789b3-text-color);
    }

    .page-789b3__hero-title {
      font-size: 2.5em;
      color: var(--page-789b3-primary-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789b3__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-789b3-text-color);
      margin-bottom: 20px;
    }

    .page-789b3__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-789b3-secondary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-789b3__button:hover {
      background-color: var(--page-789b3-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-789b3__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-789b3-accent-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      z-index: 1000;
      animation: page-789b3__pulse 2s infinite;
      border: 2px solid var(--page-789b3-primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .page-789b3__floating-login-button:hover {
      background-color: #e63946;
      animation: none;
    }

    @keyframes page-789b3__pulse {
      0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
      }
      100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      }
    }

    .page-789b3__section-title {
      font-size: 2em;
      color: var(--page-789b3-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-789b3__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-789b3-secondary-color);
      border-radius: 2px;
    }

    .page-789b3__text-center {
      text-align: center;
    }

    .page-789b3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-789b3__card {
      background-color: var(--page-789b3-light-bg);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--page-789b3-border-color);
    }

    .page-789b3__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-789b3__card-content {
      padding: 15px;
    }

    .page-789b3__card-title {
      font-size: 1.4em;
      color: var(--page-789b3-primary-color);
      margin-bottom: 10px;
    }

    .page-789b3__card-text {
      font-size: 0.95em;
      color: var(--page-789b3-text-color);
    }

    .page-789b3__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .page-789b3__provider-item {
      background-color: var(--page-789b3-light-bg);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-789b3-border-color);
    }

    .page-789b3__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-789b3__provider-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
      object-fit: contain;
    }

    .page-789b3__provider-name {
      font-size: 1em;
      color: var(--page-789b3-text-color);
      font-weight: bold;
    }

    .page-789b3__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-789b3__promo-item {
      background-color: var(--page-789b3-light-bg);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-789b3-primary-color);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-789b3__promo-icon {
      font-size: 2em;
      color: var(--page-789b3-primary-color);
      flex-shrink: 0;
    }

    .page-789b3__promo-title {
      font-size: 1.3em;
      color: var(--page-789b3-secondary-color);
      margin-bottom: 5px;
    }

    .page-789b3__promo-description {
      font-size: 0.95em;
      color: var(--page-789b3-text-color);
    }

    .page-789b3__process-step {
      background-color: var(--page-789b3-light-bg);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid var(--page-789b3-border-color);
    }

    .page-789b3__step-icon {
      font-size: 3em;
      color: var(--page-789b3-primary-color);
      margin-bottom: 15px;
    }

    .page-789b3__step-title {
      font-size: 1.2em;
      color: var(--page-789b3-secondary-color);
      margin-bottom: 10px;
    }

    .page-789b3__step-description {
      font-size: 0.9em;
      color: var(--page-789b3-text-color);
    }

    .page-789b3__faq-item {
      margin-bottom: 10px;
      background-color: var(--page-789b3-faq-question-bg);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-789b3-border-color);
    }

    .page-789b3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-789b3-faq-question-bg);
      color: var(--page-789b3-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789b3__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-789b3-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789b3__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-789b3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-789b3-secondary-color);
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-789b3__faq-item.active .page-789b3__faq-toggle {
      transform: rotate(45deg);
      color: var(--page-789b3-accent-color);
    }

    .page-789b3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      background-color: var(--page-789b3-faq-answer-bg);
      color: var(--page-789b3-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
      border-top: 1px solid var(--page-789b3-border-color);
    }

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

    .page-789b3__advantage-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-789b3__advantage-item {
      background-color: var(--page-789b3-light-bg);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-789b3-secondary-color);
    }

    .page-789b3__advantage-title {
      font-size: 1.3em;
      color: var(--page-789b3-primary-color);
      margin-bottom: 5px;
    }

    .page-789b3__advantage-description {
      font-size: 0.95em;
      color: var(--page-789b3-text-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789b3__hero-title {
        font-size: 2em;
      }

      .page-789b3__hero-subtitle {
        font-size: 1em;
      }

      .page-789b3__section {
        padding: 30px 15px;
      }

      .page-789b3__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-789b3__grid {
        grid-template-columns: 1fr;
      }

      .page-789b3__card-image {
        height: 180px;
      }

      .page-789b3__card-title {
        font-size: 1.2em;
      }

      .page-789b3__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-789b3__provider-logo {
        max-width: 80px;
      }

      .page-789b3__floating-login-button {
        padding: 12px 25px;
        font-size: 1em;
        width: calc(100% - 40px);
        max-width: 350px;
      }

      .page-789b3__promo-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .page-789b3__promo-icon {
        margin-bottom: 10px;
      }

      .page-789b3__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-789b3__faq-answer {
        padding: 0 15px;
      }

      .page-789b3__faq-item.active .page-789b3__faq-answer {
        padding: 15px 15px !important;
      }

      /* Ensure images are responsive */
      .page-789b3 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789b3__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789b3__card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789b3__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  