
    .page-22bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-22bet__header {
      text-align: center;
      padding: 10px 0;
      background-color: #0d47a1;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-22bet__brand-title {
      margin: 0;
      font-size: 2.5em;
      font-weight: bold;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      padding-top: 10px; /* Adjust for shared header offset */
    }

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

    .page-22bet__button {
      background-color: #ffc107;
      color: #0d47a1;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: block;
      width: 120px;
    }

    .page-22bet__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-22bet__button--register {
      background-color: #28a745;
      color: white;
    }

    .page-22bet__button--register:hover {
      background-color: #218838;
    }

    .page-22bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-22bet__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffc107;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-22bet__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-22bet__card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-22bet__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-22bet__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-22bet__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-22bet__card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-22bet__cta-button {
      background-color: #ffc107;
      color: #0d47a1;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      display: inline-block;
      margin-top: auto; /* Pushes button to the bottom */
    }

    .page-22bet__cta-button:hover {
      background-color: #e0a800;
    }

    .page-22bet__text-content {
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: justify;
      color: #444;
    }

    .page-22bet__text-content p {
      margin-bottom: 1em;
    }

    .page-22bet__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-22bet__logo-item {
      flex: 0 0 auto;
      width: 150px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f2f5;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      overflow: hidden;
      box-sizing: border-box !important;
    }

    .page-22bet__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-22bet__logo-image {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      width: auto;
      height: auto;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
      box-sizing: border-box !important;
    }

    .page-22bet__social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-22bet__social-link {
      display: inline-block;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #0d47a1;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box !important;
    }

    .page-22bet__social-link:hover {
      background-color: #ffc107;
      transform: translateY(-3px);
    }

    .page-22bet__social-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
      filter: brightness(0) invert(1); /* This is a common pattern for white icons, but if actual color icons are needed, remove this. Keeping it for general social icon style */
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
      box-sizing: border-box !important;
    }

    /* FAQ Section */
    .page-22bet__faq-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
    }

    .page-22bet__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-22bet__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-22bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #e3f2fd;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #0d47a1;
      font-weight: bold;
      box-sizing: border-box;
    }

    .page-22bet__faq-question:hover {
      background-color: #bbdefb;
    }

    .page-22bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      color: #0d47a1;
      flex-grow: 1;
    }

    .page-22bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

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

    .page-22bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f1f8e9;
      color: #444;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      border-radius: 0 0 5px 5px;
      box-sizing: border-box;
    }

    .page-22bet__faq-item.active .page-22bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-22bet__faq-answer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-22bet__brand-title {
        font-size: 2em;
      }

      .page-22bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-22bet__button {
        padding: 10px 20px;
        font-size: 1em;
        width: 100px;
      }

      .page-22bet__section {
        padding: 30px 15px;
      }

      .page-22bet__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-22bet__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-22bet__card-image {
        height: 180px;
      }

      .page-22bet__card-title {
        font-size: 1.3em;
      }

      .page-22bet__text-content {
        padding: 0 10px;
        text-align: left;
      }

      .page-22bet__logo-item {
        width: 120px;
        height: 80px;
      }

      .page-22bet__social-link {
        width: 50px;
        height: 50px;
      }

      .page-22bet__social-icon {
        width: 30px;
        height: 30px;
      }

      /* List item responsiveness */
      .page-22bet__grid > *,
      .page-22bet__logo-grid > *,
      .page-22bet__social-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Adjust padding for mobile */
        padding-right: 10px !important; /* Adjust padding for mobile */
      }

      .page-22bet__grid,
      .page-22bet__logo-grid,
      .page-22bet__social-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-22bet__card-description,
      .page-22bet__text-content p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-22bet__card-image,
      .page-22bet__logo-image,
      .page-22bet__social-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-22bet__brand-title {
        font-size: 1.8em;
      }

      .page-22bet__section-title {
        font-size: 1.5em;
      }

      .page-22bet__button {
        font-size: 0.9em;
        padding: 8px 15px;
        width: 90px;
      }
    }

    /* Ensure image minimum sizes */
    .page-22bet img {
      min-width: 200px;
      min-height: 200px;
    }

    /* Overriding social icon filter for original colors */
    .page-22bet__social-icon {
      filter: none; /* Remove filter to keep original icon colors */
    }

  