
    /* Base styles for the page, ensuring it doesn't interfere with global styles */
    .page-28-bets-2 {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Header offset handling as per strict requirements */
    /* Assuming body already has padding-top from shared.css. */
    .page-28-bets-2__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

    /* General Section Styling */
    .page-28-bets-2 section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-28-bets-2__section-title {
      font-size: 2.2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-28-bets-2__brand-highlight {
      color: #ffc107;
    }

    /* Hero Section */
    .page-28-bets-2__hero-section {
      text-align: center;
      background: linear-gradient(135deg, #0056b3, #003d80);
      color: #fff;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
    }

    .page-28-bets-2__main-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-28-bets-2__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-28-bets-2__hero-image-wrapper {
      margin-top: 30px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    }

    .page-28-bets-2__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features Section */
    .page-28-bets-2__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-28-bets-2__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .page-28-bets-2__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-28-bets-2__feature-icon {
      width: 250px;
      height: auto;
      margin-bottom: 15px;
      max-width: 100%;
      object-fit: contain;
    }

    .page-28-bets-2__feature-heading {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-28-bets-2__feature-text {
      font-size: 1em;
      color: #555;
    }

    /* Products Section */
    .page-28-bets-2__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-28-bets-2__product-card {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-28-bets-2__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .page-28-bets-2__product-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-28-bets-2__product-title {
      font-size: 1.4em;
      color: #0056b3;
      margin: 15px 10px 10px;
    }

    .page-28-bets-2__product-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Promo Section */
    .page-28-bets-2__promo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 40px;
      text-align: center;
      background-color: #ffebee;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .page-28-bets-2__promo-item:last-child {
      margin-bottom: 0;
    }

    .page-28-bets-2__promo-image {
      max-width: 100%;
      width: 400px;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-28-bets-2__promo-title {
      font-size: 1.8em;
      color: #d32f2f;
      margin-bottom: 10px;
    }

    .page-28-bets-2__promo-description {
      font-size: 1.1em;
      color: #424242;
      margin-bottom: 20px;
      max-width: 700px;
    }

    .page-28-bets-2__promo-button,
    .page-28-bets-2__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-28-bets-2__promo-button:hover,
    .page-28-bets-2__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Payment and Providers Section */
    .page-28-bets-2__payment-intro,
    .page-28-bets-2__providers-intro {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #555;
    }

    .page-28-bets-2__payment-methods-grid,
    .page-28-bets-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-28-bets-2__payment-method-item,
    .page-28-bets-2__provider-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-28-bets-2__payment-logo,
    .page-28-bets-2__provider-logo {
      max-width: 100%;
      width: 200px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-28-bets-2__payment-name,
    .page-28-bets-2__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-28-bets-2__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-28-bets-2__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-28-bets-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e0e0e0;
      border-bottom: 1px solid #ccc;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-28-bets-2__faq-question:hover {
      background-color: #d0d0d0;
    }

    .page-28-bets-2__faq-heading {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      pointer-events: none;
    }

    .page-28-bets-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #0056b3;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-28-bets-2__faq-item.active .page-28-bets-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-28-bets-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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: #fcfcfc;
    }

    .page-28-bets-2__faq-item.active .page-28-bets-2__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-28-bets-2__faq-text {
      margin: 0;
      color: #555;
      font-size: 1em;
    }

    /* Call to Action Section */
    .page-28-bets-2__cta-section {
      text-align: center;
      background-color: #e8f5e9;
      padding: 50px 20px;
    }

    .page-28-bets-2__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #424242;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-28-bets-2__section-title {
        font-size: 1.8em;
      }
      .page-28-bets-2__main-title {
        font-size: 2em;
      }
      .page-28-bets-2__hero-description {
        font-size: 1em;
      }

      /* General section padding */
      .page-28-bets-2 section {
        padding: 30px 15px;
      }

      /* Feature grid */
      .page-28-bets-2__feature-grid,
      .page-28-bets-2__product-grid,
      .page-28-bets-2__payment-methods-grid,
      .page-28-bets-2__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List items responsive styles */
      .page-28-bets-2__feature-item,
      .page-28-bets-2__product-card,
      .page-28-bets-2__payment-method-item,
      .page-28-bets-2__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;
      }

      .page-28-bets-2__payment-methods-grid,
      .page-28-bets-2__providers-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Images responsive styles */
      .page-28-bets-2__hero-image,
      .page-28-bets-2__feature-icon,
      .page-28-bets-2__product-image,
      .page-28-bets-2__promo-image,
      .page-28-bets-2__payment-logo,
      .page-28-bets-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
      }
      .page-28-bets-2__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-28-bets-2__product-image {
        height: 200px !important;
      }
      .page-28-bets-2__feature-icon,
      .page-28-bets-2__payment-logo,
      .page-28-bets-2__provider-logo {
        width: 200px !important;
      }

      /* FAQ responsive */
      .page-28-bets-2__faq-question {
        padding: 15px 20px;
      }
      .page-28-bets-2__faq-heading {
        font-size: 1.1em;
      }
      .page-28-bets-2__faq-answer {
        padding: 0 20px;
      }
      .page-28-bets-2__faq-item.active .page-28-bets-2__faq-answer {
        padding: 15px 20px !important;
      }

      /* Ensure text wrapping */
      .page-28-bets-2 p,
      .page-28-bets-2 h1,
      .page-28-bets-2 h2,
      .page-28-bets-2 h3,
      .page-28-bets-2 span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-28-bets-2__main-title {
        font-size: 1.8em;
      }
      .page-28-bets-2__section-title {
        font-size: 1.6em;
      }
      .page-28-bets-2__promo-title {
        font-size: 1.5em;
      }
      .page-28-bets-2__promo-button,
      .page-28-bets-2__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  