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

    .page-b29-apk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-b29-apk__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      padding-top: 10px; /* Small decorative padding, body handles header offset */
    }

    .page-b29-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
    }

    .page-b29-apk__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-b29-apk__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-b29-apk__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      text-align: center;
    }

    .page-b29-apk__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-b29-apk__cta-button--secondary {
      background-color: #28a745;
      color: #fff;
    }

    .page-b29-apk__cta-button--secondary:hover {
      background-color: #218838;
    }

    .page-b29-apk__heading {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-b29-apk__sub-heading {
      font-size: 1.5em;
      color: #007bff;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-b29-apk__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-b29-apk__features-grid,
    .page-b29-apk__games-grid,
    .page-b29-apk__providers-list,
    .page-b29-apk__payments-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-b29-apk__feature-item,
    .page-b29-apk__game-card {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-b29-apk__feature-item:hover,
    .page-b29-apk__game-card:hover {
      transform: translateY(-5px);
    }

    .page-b29-apk__feature-title,
    .page-b29-apk__game-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-b29-apk__feature-description,
    .page-b29-apk__game-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-b29-apk__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-b29-apk__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-b29-apk__steps-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-b29-apk__step-item {
      background-color: #e6f7ff;
      margin-bottom: 15px;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-b29-apk__step-item strong {
      color: #0056b3;
      font-size: 1.1em;
      display: block;
      margin-bottom: 5px;
    }

    .page-b29-apk__game-card img {
      border-radius: 5px;
    }

    .page-b29-apk__promotions-list,
    .page-b29-apk__payment-methods-list,
    .page-b29-apk__providers-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .page-b29-apk__promotions-item,
    .page-b29-apk__payment-item,
    .page-b29-apk__provider-item {
      background-color: #f9f9f9;
      padding: 15px 20px;
      border-radius: 8px;
      border: 1px solid #eee;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      font-size: 1.05em;
      color: #333;
    }

    .page-b29-apk__promotions-item::before,
    .page-b29-apk__payment-item::before,
    .page-b29-apk__provider-item::before {
      content: '✔';
      color: #28a745;
      margin-right: 10px;
      font-weight: bold;
    }

    /* FAQ Styles */
    .page-b29-apk__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 20px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-b29-apk__faq-heading {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-b29-apk__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-b29-apk__faq-question {
      background-color: #e9f5ff;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-b29-apk__faq-question:hover {
      background-color: #d1e9ff;
    }

    .page-b29-apk__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-b29-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-b29-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f9f9f9;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

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

    /* Responsive styles */
    @media (max-width: 768px) {
      .page-b29-apk__hero-title {
        font-size: 2em;
      }

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

      .page-b29-apk__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-b29-apk__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-b29-apk__heading {
        font-size: 1.8em;
      }

      .page-b29-apk__sub-heading {
        font-size: 1.3em;
      }

      .page-b29-apk__section {
        padding: 20px 15px;
      }

      .page-b29-apk__features-grid,
      .page-b29-apk__games-grid,
      .page-b29-apk__providers-list,
      .page-b29-apk__payments-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-b29-apk__feature-item,
      .page-b29-apk__game-card,
      .page-b29-apk__promotions-item,
      .page-b29-apk__payment-item,
      .page-b29-apk__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-b29-apk__steps-list {
        padding: 0;
      }

      .page-b29-apk__step-item {
        padding: 15px;
      }

      .page-b29-apk__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-b29-apk__image {
        max-width: 100% !important;
        height: auto !important;
      }

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

      .page-b29-apk__faq-answer {
        padding: 15px !important;
      }
    }
  