
    .page-888clb {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-888clb__header-brand {
      text-align: center;
      padding: 15px 0;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      font-size: 2.2em;
      font-weight: bold;
      position: relative;
      z-index: 100;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      margin-bottom: 10px;
    }

    .page-888clb__hero-section {
      padding: 10px 0 20px 0; /* Adjusted padding-top as body handles offset */
      background: linear-gradient(135deg, #1e3a8a, #0d47a1);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-888clb__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
    }

    .page-888clb__hero-content {
      padding: 0 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-888clb__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-888clb__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-888clb__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Amber */
      color: #333;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-888clb__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-888clb__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-888clb__section-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: #0d47a1;
      position: relative;
    }

    .page-888clb__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffc107;
      margin: 10px auto 0;
    }

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

    .page-888clb__grid-item {
      background-color: #f0f8ff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-888clb__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

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

    .page-888clb__grid-content {
      padding: 20px;
    }

    .page-888clb__grid-title {
      font-size: 1.4em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-888clb__grid-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-888clb__promo-card {
      display: flex;
      flex-direction: column;
      background-color: #e3f2fd;
      border-left: 5px solid #0d47a1;
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-888clb__promo-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .page-888clb__promo-description {
      font-size: 1em;
      color: #444;
      margin-bottom: 15px;
    }

    .page-888clb__promo-link {
      color: #0d47a1;
      text-decoration: none;
      font-weight: bold;
      align-self: flex-start;
    }

    .page-888clb__promo-link:hover {
      text-decoration: underline;
    }

    .page-888clb__payment-list,
    .page-888clb__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-888clb__payment-item,
    .page-888clb__provider-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 15px 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: 180px; /* Fixed width for consistency */
    }

    .page-888clb__payment-item:hover,
    .page-888clb__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-888clb__payment-link,
    .page-888clb__provider-link {
      color: #0d47a1;
      text-decoration: none;
      font-weight: bold;
      display: block;
    }

    .page-888clb__payment-link:hover,
    .page-888clb__provider-link:hover {
      text-decoration: underline;
    }

    .page-888clb__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-888clb__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e3f2fd;
      color: #0d47a1;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-888clb__faq-question:hover {
      background-color: #d1e5f8;
    }

    .page-888clb__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
    }

    .page-888clb__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none;
    }

    .page-888clb__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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-888clb__faq-item.active .page-888clb__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-888clb__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 999;
      width: 100%;
      justify-content: center;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-888clb__floating-button {
      background-color: #ffc107; /* Amber */
      color: #333;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      flex-grow: 1;
      max-width: 150px;
      text-align: center;
    }

    .page-888clb__floating-button--register {
      background-color: #28a745; /* Green */
      color: #fff;
    }

    .page-888clb__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-888clb__floating-button--login {
      background-color: #007bff; /* Blue */
      color: #fff;
    }

    .page-888clb__floating-button--login:hover {
      background-color: #0069d9;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-888clb__hero-title {
        font-size: 2em;
      }

      .page-888clb__hero-subtitle {
        font-size: 1em;
      }

      .page-888clb__section {
        padding: 30px 10px;
      }

      .page-888clb__section-title {
        font-size: 1.8em;
      }

      .page-888clb__grid {
        grid-template-columns: 1fr;
      }

      .page-888clb__payment-list,
      .page-888clb__provider-list {
        flex-direction: column;
        align-items: center;
      }

      .page-888clb__payment-item,
      .page-888clb__provider-item {
        width: 100% !important;
        max-width: 250px !important; /* Limit max width on mobile */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-888clb__payment-list,
      .page-888clb__provider-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-888clb__grid-image {
        height: 180px;
      }
      .page-888clb__floating-buttons {
        width: calc(100% - 30px);
        gap: 10px;
      }
      .page-888clb__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        max-width: 120px;
      }
      .page-888clb__faq-question h3 {
        font-size: 1em;
      }
      .page-888clb__faq-answer {
        padding: 0 10px;
      }
      .page-888clb__faq-item.active .page-888clb__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-888clb__hero-title {
        font-size: 1.8em;
      }
      .page-888clb__hero-subtitle {
        font-size: 0.9em;
      }
      .page-888clb__section-title {
        font-size: 1.5em;
      }
      .page-888clb__floating-buttons {
        flex-direction: column;
        bottom: 10px;
      }
      .page-888clb__floating-button {
        max-width: 200px;
        width: 100%;
      }
      .page-888clb {
        padding-bottom: 120px;
      }
    }
  