
    .page-alo789-h-ng {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng {
        padding-top: 10px; /* Ensure small top padding on mobile too */
      }
    }

    .page-alo789-h-ng__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }
    }

    .page-alo789-h-ng__section-title {
      font-size: 2.5em;
      color: #d90000; /* Red color for brand */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
    }

    .page-alo789-h-ng__hero-section {
      background: linear-gradient(135deg, #ff4d4d 0%, #d90000 100%);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__hero-section {
        padding: 60px 15px;
      }
    }

    .page-alo789-h-ng__hero-title {
      font-size: 3.8em;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__hero-title {
        font-size: 2.5em;
      }
    }

    .page-alo789-h-ng__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }

    .page-alo789-h-ng__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.15;
      z-index: 0;
    }

    .page-alo789-h-ng__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-alo789-h-ng__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    @media (min-width: 769px) {
      .page-alo789-h-ng__floating-buttons {
        width: 300px;
        left: auto;
        right: 20px;
        bottom: 20px;
        border-radius: 15px;
      }
    }

    .page-alo789-h-ng__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      color: #fff;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    .page-alo789-h-ng__button--primary {
      background-color: #ffcc00; /* Yellow for primary action */
      color: #333;
    }
    .page-alo789-h-ng__button--primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-alo789-h-ng__button--secondary {
      background-color: #d90000; /* Red for secondary action */
      color: #fff;
      border: 2px solid #ffcc00;
    }
    .page-alo789-h-ng__button--secondary:hover {
      background-color: #b30000;
      border-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-alo789-h-ng__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-alo789-h-ng__grid-item {
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      padding: 0;
    }
    .page-alo789-h-ng__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__grid-item {
        width: 100% !important;
        max-width: 100% !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-alo789-h-ng__grid-item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%;
      height: auto;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__grid-item-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-alo789-h-ng__grid-item-content {
      padding: 20px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__grid-item-content {
        padding: 15px;
      }
    }

    .page-alo789-h-ng__grid-item-title {
      font-size: 1.4em;
      color: #d90000;
      margin-bottom: 10px;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__grid-item-title {
        font-size: 1.2em;
      }
    }

    .page-alo789-h-ng__grid-item-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-alo789-h-ng__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-alo789-h-ng__list-item {
      background-color: #fefefe;
      padding: 20px;
      border-left: 5px solid #d90000;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }
    .page-alo789-h-ng__list-item:hover {
      transform: translateX(5px);
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__list-item {
        width: 100% !important;
        max-width: 100% !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-alo789-h-ng__list-item h3 {
      color: #d90000;
      margin-top: 0;
      font-size: 1.25em;
      margin-bottom: 10px;
    }

    .page-alo789-h-ng__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-alo789-h-ng__provider-item {
      text-align: center;
      padding: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      background-color: #fefefe;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }
    .page-alo789-h-ng__provider-item:hover {
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__provider-item {
        width: 100% !important;
        max-width: 100% !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-alo789-h-ng__provider-logo {
      max-width: 120px;
      height: auto;
      margin-bottom: 10px;
      max-height: 60px;
      object-fit: contain;
      max-width: 100%;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-alo789-h-ng__provider-name {
      font-weight: bold;
      color: #555;
      font-size: 0.95em;
    }

    .page-alo789-h-ng__faq-container {
      margin-top: 30px;
    }

    .page-alo789-h-ng__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      background-color: #fefefe;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__faq-item {
        width: 100% !important;
        max-width: 100% !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-alo789-h-ng__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #d90000;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }
    .page-alo789-h-ng__faq-question:hover {
      background-color: #b30000;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
    }

    .page-alo789-h-ng__faq-question h3 {
      margin: 0;
      color: #fff;
      font-size: 1.1em;
      pointer-events: none; /* Prevents text from blocking click event */
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-alo789-h-ng__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevents icon from blocking click event */
      transition: transform 0.3s ease;
    }
    .page-alo789-h-ng__faq-item.active .page-alo789-h-ng__faq-toggle {
      transform: rotate(45deg);
    }

    .page-alo789-h-ng__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;
      background-color: #fcfcfc;
    }
    .page-alo789-h-ng__faq-item.active .page-alo789-h-ng__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__faq-item.active .page-alo789-h-ng__faq-answer {
        padding: 15px 15px !important;
      }
    }

    .page-alo789-h-ng__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__payment-methods {
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-alo789-h-ng__payment-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      min-width: 100px;
      flex-basis: calc(25% - 20px);
      max-width: calc(25% - 20px);
    }
    .page-alo789-h-ng__payment-item:hover {
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__payment-item {
        flex-basis: calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        width: 100% !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-alo789-h-ng__payment-logo {
      max-width: 80px;
      height: auto;
      margin-bottom: 5px;
      object-fit: contain;
      max-width: 100%;
      max-height: 40px;
    }
    @media (max-width: 768px) {
      .page-alo789-h-ng__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-alo789-h-ng__payment-name {
      font-size: 0.9em;
      color: #555;
      font-weight: 600;
    }

    .page-alo789-h-ng__centered-text {
      text-align: center;
      margin-top: 20px;
      font-size: 1.1em;
      color: #666;
    }
  