
    .page-abu99 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
    }

    .page-abu99__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-abu99__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-abu99__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #2c3e50;
    }

    .page-abu99__section--dark .page-abu99__section-title {
      color: #ecf0f1;
    }

    .page-abu99__hero-section {
      background-color: #0d1e3a;
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Decorative top padding, assuming body has header offset */
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .page-abu99__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
        z-index: 1;
    }

    .page-abu99__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-abu99__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #e0f2f7;
    }

    .page-abu99__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0f2f7;
    }

    .page-abu99__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      object-fit: cover;
      pointer-events: none;
    }

    .page-abu99__hero-cta {
      display: inline-block;
      background-color: #ffcc00;
      color: #0d1e3a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
    }

    .page-abu99__hero-cta:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-abu99__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-abu99__button {
      background-color: #ffcc00;
      color: #0d1e3a;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-abu99__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

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

    .page-abu99__product-item, .page-abu99__promo-item, .page-abu99__provider-item, .page-abu99__payment-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-abu99__product-item:hover, .page-abu99__promo-item:hover, .page-abu99__provider-item:hover, .page-abu99__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-abu99__product-item-image, .page-abu99__promo-item-image, .page-abu99__provider-item-image, .page-abu99__payment-item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      pointer-events: none;
    }

    .page-abu99__provider-item-image, .page-abu99__payment-item-image {
        height: 120px; /* Smaller height for logos */
        object-fit: contain;
        padding: 15px;
    }

    .page-abu99__item-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-abu99__item-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .page-abu99__item-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-abu99__about-us-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-abu99__about-us-content p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-abu99__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-abu99__faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-abu99__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 20px;
      background-color: #f7f7f7;
      border-bottom: 1px solid #eee;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-abu99__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-abu99__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      pointer-events: none;
      color: #2c3e50;
    }

    .page-abu99__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none;
      color: #555;
      transition: transform 0.3s ease;
    }

    .page-abu99__faq-item.active .page-abu99__faq-toggle {
        transform: rotate(45deg);
    }

    .page-abu99__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #666;
    }

    .page-abu99__faq-answer p {
      margin: 0;
      padding-bottom: 15px;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-abu99__faq-item.active .page-abu99__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-abu99__section {
        padding: 30px 10px;
      }

      .page-abu99__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-abu99__hero-title {
        font-size: 2.2em;
      }

      .page-abu99__hero-description {
        font-size: 1em;
      }

      .page-abu99__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-abu99__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-abu99__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-abu99__product-grid, .page-abu99__promo-grid, .page-abu99__provider-grid, .page-abu99__payment-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }

      .page-abu99__product-item, .page-abu99__promo-item, .page-abu99__provider-item, .page-abu99__payment-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding: 0 !important; /* Adjust padding if needed, ensure it fits */
      }

      .page-abu99__product-item-image, .page-abu99__promo-item-image, .page-abu99__provider-item-image, .page-abu99__payment-item-image {
          max-width: 100% !important;
          height: auto !important;
          object-fit: cover !important;
          box-sizing: border-box !important;
      }

      .page-abu99__item-content {
        padding: 15px;
      }

      .page-abu99__item-title {
        font-size: 1.1em;
      }

      .page-abu99__faq-question {
        padding: 12px 15px;
      }

      .page-abu99__faq-question h3 {
        font-size: 1em;
      }

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

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

    @media (max-width: 480px) {
        .page-abu99__hero-title {
            font-size: 1.8em;
        }
        .page-abu99__hero-description {
            font-size: 0.9em;
        }
        .page-abu99__floating-buttons {
            bottom: 10px;
            right: 10px;
            width: calc(100% - 20px);
        }
        .page-abu99__button {
            padding: 8px 10px;
            font-size: 0.85em;
        }
    }
  