
    .page-28-bets {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for sticky buttons */
    }

    .page-28-bets__hero-section {
      background: linear-gradient(135deg, #001f3f, #004080); /* Dark blue gradient */
      color: #fff;
      padding: 60px 20px 40px;
      text-align: center;
      padding-top: 10px; /* Small top padding as body handles header offset */
    }

    .page-28-bets__hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-28-bets__main-heading {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #FFD700; /* Gold */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-28-bets__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-28-bets__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .page-28-bets__button {
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure buttons don't look like links if using <a> for styling */
      display: inline-block;
      text-align: center;
      color: #fff; /* Default button text color */
    }

    .page-28-bets__button--primary {
      background-color: #FFD700; /* Gold */
      color: #001f3f; /* Dark blue text for contrast */
    }

    .page-28-bets__button--primary:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-28-bets__button--secondary {
      background-color: #007bff; /* Blue */
      color: #fff;
      border: 2px solid #007bff;
    }

    .page-28-bets__button--secondary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-28-bets__button--product,
    .page-28-bets__button--promo,
    .page-28-bets__button--news {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 5px;
    }

    .page-28-bets__button--product:hover,
    .page-28-bets__button--promo:hover,
    .page-28-bets__button--news:hover {
      background-color: #0056b3;
    }

    .page-28-bets__button--large {
      padding: 15px 30px;
      font-size: 1.1em;
      background-color: #FFD700;
      color: #001f3f;
      border-radius: 10px;
    }

    .page-28-bets__button--large:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Sticky Buttons */
    .page-28-bets__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 31, 63, 0.95); /* Semi-transparent dark blue */
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      gap: 10px;
    }

    .page-28-bets__sticky-button {
      flex: 1;
      max-width: 150px;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      color: #001f3f;
    }

    .page-28-bets__sticky-button--register {
      background-color: #FFD700; /* Gold */
    }

    .page-28-bets__sticky-button--register:hover {
      background-color: #e6c200;
    }

    .page-28-bets__sticky-button--login {
      background-color: #007bff; /* Blue */
      color: #fff;
    }

    .page-28-bets__sticky-button--login:hover {
      background-color: #0056b3;
    }

    /* General Section Styling */
    .page-28-bets__section-title {
      font-size: 2em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-28-bets__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-28-bets__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #555;
    }

    .page-28-bets__products-overview,
    .page-28-bets__promotions-section,
    .page-28-bets__news-section,
    .page-28-bets__about-section,
    .page-28-bets__faq-section,
    .page-28-bets__final-cta {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Product Grid */
    .page-28-bets__product-grid,
    .page-28-bets__promo-grid,
    .page-28-bets__news-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-28-bets__product-item,
    .page-28-bets__promo-card,
    .page-28-bets__news-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-28-bets__product-image,
    .page-28-bets__promo-image,
    .page-28-bets__news-image {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      display: block;
    }

    .page-28-bets__product-title,
    .page-28-bets__promo-title,
    .page-28-bets__news-title {
      font-size: 1.4em;
      color: #001f3f;
      margin: 10px 15px;
    }

    .page-28-bets__product-text,
    .page-28-bets__promo-text,
    .page-28-bets__news-excerpt {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1; /* Allows text to take available space */
    }

    .page-28-bets__news-date {
      font-size: 0.85em;
      color: #888;
      margin-bottom: 10px;
    }

    /* About Section Features */
    .page-28-bets__features-list {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-28-bets__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      padding: 30px;
      text-align: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-28-bets__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-28-bets__feature-title {
      font-size: 1.3em;
      color: #001f3f;
      margin-bottom: 10px;
    }

    .page-28-bets__feature-text {
      font-size: 0.9em;
      color: #666;
    }

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

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

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

    .page-28-bets__faq-question:hover {
      background-color: #e6e6e6;
    }

    .page-28-bets__faq-title {
      font-size: 1.1em;
      color: #001f3f;
      margin: 0;
      pointer-events: none; /* Crucial: ensures click on parent div works */
    }

    .page-28-bets__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial: ensures click on parent div works */
    }

    .page-28-bets__faq-item.active .page-28-bets__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
      color: #FFD700;
    }
    .page-28-bets__faq-item.active .page-28-bets__faq-question {
      background-color: #e6e6e6;
      border-bottom: none;
    }

    .page-28-bets__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      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;
      font-size: 0.95em;
    }

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

    /* Final CTA */
    .page-28-bets__final-cta {
      text-align: center;
      background-color: #001f3f;
      color: #fff;
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-28-bets__final-cta .page-28-bets__section-title {
      color: #FFD700;
    }

    .page-28-bets__final-cta .page-28-bets__section-description {
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-28-bets__main-heading {
        font-size: 2em;
      }

      .page-28-bets__hero-description {
        font-size: 1em;
      }

      .page-28-bets__cta-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-28-bets__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-28-bets__section-title {
        font-size: 1.7em;
      }

      .page-28-bets__section-description {
        margin-bottom: 30px;
      }

      .page-28-bets__product-grid,
      .page-28-bets__promo-grid,
      .page-28-bets__news-grid,
      .page-28-bets__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item responsiveness */
      .page-28-bets__features-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-28-bets__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Image responsiveness */
      .page-28-bets__product-image,
      .page-28-bets__promo-image,
      .page-28-bets__news-image,
      .page-28-bets__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-28-bets__product-item,
      .page-28-bets__promo-card,
      .page-28-bets__news-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px;
        padding-right: 10px;
      }
      .page-28-bets__product-image,
      .page-28-bets__promo-image,
      .page-28-bets__news-image {
        height: 180px; /* Slightly smaller height on mobile */
      }

      .page-28-bets__faq-title {
        font-size: 1em;
      }

      .page-28-bets__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-28-bets__hero-section,
      .page-28-bets__products-overview,
      .page-28-bets__promotions-section,
      .page-28-bets__news-section,
      .page-28-bets__about-section,
      .page-28-bets__faq-section,
      .page-28-bets__final-cta {
        padding: 30px 15px;
      }

      .page-28-bets__main-heading {
        font-size: 1.8em;
      }

      .page-28-bets__section-title {
        font-size: 1.5em;
      }

      .page-28-bets__sticky-buttons {
        padding: 8px 0;
      }

      .page-28-bets__sticky-button {
        font-size: 0.9em;
        padding: 8px 10px;
      }
    }
  