
    /* Reset và cơ bản */
    .page-bcx88info {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding: 20px 0;
    }

    .page-bcx88info__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-bcx88info__section {
      background-color: #ffffff;
      margin-bottom: 25px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-bcx88info__heading-primary {
      color: #0056b3;
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-bcx88info__heading-secondary {
      color: #007bff;
      margin-top: 30px;
      margin-bottom: 20px;
      font-size: 1.8em;
      border-bottom: 2px solid #e9ecef;
      padding-bottom: 10px;
    }

    .page-bcx88info__heading-tertiary {
      color: #007bff;
      margin-top: 25px;
      margin-bottom: 15px;
      font-size: 1.4em;
    }

    .page-bcx88info__paragraph {
      margin-bottom: 15px;
      color: #555;
      font-size: 1.05em;
    }

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

    .page-bcx88info__list-item {
      background-color: #f8f9fa;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
      flex: 1 1 calc(33% - 20px); /* 3 items per row */
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-width: 280px; /* Ensure minimum width for readability */
      max-width: 380px;
    }

    .page-bcx88info__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-bcx88info__list-item-title {
      color: #0056b3;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

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

    .page-bcx88info__image-wrapper {
      text-align: center;
      margin: 25px 0;
    }

    .page-bcx88info__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      display: block;
      margin: 0 auto;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

    .page-bcx88info__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 10px auto;
      padding: 15px 30px;
      background-color: #28a745;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

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

    /* Floating Login Button */
    .page-bcx88info__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Đỏ hấp dẫn */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      z-index: 1000;
      animation: page-bcx88info__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .page-bcx88info__floating-button:hover {
      background-color: #c82333;
    }

    @keyframes page-bcx88info__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Hero Section Specific */
    .page-bcx88info__hero-section {
      background-color: #0056b3;
      color: #ffffff;
      text-align: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top for fixed header */
      border-radius: 0 0 10px 10px;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
    }

    .page-bcx88info__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-bcx88info__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
    }

    .page-bcx88info__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-bcx88info__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-bcx88info__faq-section {
      margin-top: 40px;
    }

    .page-bcx88info__faq-item {
      background-color: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-bcx88info__faq-item:hover {
      background-color: #e2e6ea;
    }

    .page-bcx88info__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #007bff;
      color: #ffffff;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-bcx88info__faq-question h3 {
      margin: 0;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-size: 1.1em; /* Ensure consistent font size */
    }

    .page-bcx88info__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-bcx88info__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;
      background-color: #ffffff;
      color: #333;
      border-top: 1px solid #e9ecef;
      font-size: 0.95em;
    }

    .page-bcx88info__faq-item.active .page-bcx88info__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px 15px !important; /* Use !important to ensure override */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bcx88info__hero-section {
        padding-top: 10px; /* Mobile padding for fixed header */
      }
      .page-bcx88info__hero-title {
        font-size: 2.2em;
      }
      .page-bcx88info__hero-subtitle {
        font-size: 1.2em;
      }
      .page-bcx88info__heading-primary {
        font-size: 2em;
      }
      .page-bcx88info__heading-secondary {
        font-size: 1.5em;
      }
      .page-bcx88info__heading-tertiary {
        font-size: 1.2em;
      }
      .page-bcx88info__section {
        padding: 20px;
      }
      .page-bcx88info__list {
        flex-direction: column;
        gap: 15px;
      }
      .page-bcx88info__list-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-bcx88info__list-item-title {
        font-size: 1.1em;
      }
      .page-bcx88info__cta-button {
        width: 90%;
        font-size: 1.1em;
        padding: 12px 20px;
      }
      .page-bcx88info__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-bcx88info__image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bcx88info__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-bcx88info__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-bcx88info__faq-question h3 {
        font-size: 1em;
      }
      .page-bcx88info__faq-answer {
        padding: 15px 15px;
      }
    }
    @media (max-width: 480px) {
      .page-bcx88info__hero-title {
        font-size: 1.8em;
      }
      .page-bcx88info__hero-subtitle {
        font-size: 1em;
      }
      .page-bcx88info__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }
  