
    /* General reset for this page's elements */
    .page-3-bet * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .page-3-bet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #e0e0e0; /* Light gray text */
      background-color: #1a1a2e; /* Dark blue/purple background */
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-3-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
      pointer-events: none; /* Allow clicks to pass through if not on button */
    }

    .page-3-bet__button {
      background-color: #e94560; /* Accent color */
      color: #ffffff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      text-decoration: none;
      pointer-events: auto; /* Re-enable clicks for buttons */
      min-width: 120px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-3-bet__button:hover {
      background-color: #ff6b81; /* Lighter accent */
      transform: translateY(-2px);
    }

    .page-3-bet__button--secondary {
      background-color: transparent;
      border: 2px solid #e94560;
      color: #e94560;
    }

    .page-3-bet__button--secondary:hover {
      background-color: rgba(233, 69, 96, 0.1);
      color: #ff6b81;
    }

    .page-3-bet__button--card {
      padding: 8px 15px;
      font-size: 0.9rem;
      min-width: unset;
    }

    .page-3-bet__button--external {
      display: inline-block; /* For <a> tag styling */
    }

    /* Hero Section */
    .page-3-bet__hero-section {
      width: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px; /* Added 10px top padding for visual spacing */
      min-height: 500px;
    }

    .page-3-bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.3; /* Slightly dim the background image */
    }

    .page-3-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-3-bet__title {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .page-3-bet__subtitle {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-3-bet__hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    /* General Section Styling */
    .page-3-bet__introduction-section,
    .page-3-bet__product-section,
    .page-3-bet__why-choose-us-section,
    .page-3-bet__promo-section,
    .page-3-bet__faq-section {
      width: 100%;
      max-width: 1200px;
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #2a2a4a; /* Slightly lighter background for sections */
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-3-bet__section-title {
      font-size: 2rem;
      color: #ffffff;
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 10px;
      position: relative;
    }

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

    .page-3-bet__text-content {
      font-size: 1.1rem;
      color: #c0c0c0;
      text-align: center;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-3-bet__highlight {
      color: #e94560;
      font-weight: bold;
    }

    /* Product Section */
    .page-3-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-content: center; /* Center items in the grid */
    }

    .page-3-bet__product-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-3-bet__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-3-bet__product-title {
      font-size: 1.5rem;
      color: #ffffff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-3-bet__product-description {
      font-size: 1rem;
      color: #c0c0c0;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1; /* Make descriptions take available space */
    }

    /* Why Choose Us Section */
    .page-3-bet__feature-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0; /* Override default ul padding */
      width: 100%; /* Ensure container takes full width */
      max-width: 100%; /* Ensure container takes full width */
      box-sizing: border-box;
    }

    .page-3-bet__feature-item {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      width: 100%; /* Default for mobile */
      box-sizing: border-box; /* Crucial for list items */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-3-bet__feature-title {
      font-size: 1.3rem;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-3-bet__feature-description {
      font-size: 1rem;
      color: #c0c0c0;
    }

    /* Promo Section */
    .page-3-bet__promo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-3-bet__promo-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-3-bet__promo-text {
      text-align: center;
    }

    /* FAQ Section */
    .page-3-bet__faq-container {
      margin-top: 30px;
    }

    .page-3-bet__faq-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-3-bet__faq-question:hover {
      background-color: #5a5a7a;
    }

    .page-3-bet__faq-q-text {
      font-size: 1.1rem;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-3-bet__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-3-bet__faq-item.active .page-3-bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      content: '−'; /* This content change will be handled by JS */
    }

    .page-3-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    }

    .page-3-bet__faq-item.active .page-3-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-3-bet__faq-a-text {
      font-size: 1rem;
      color: #c0c0c0;
      margin: 0;
      line-height: 1.5;
    }

    /* Responsive Design */
    @media (min-width: 769px) {
      .page-3-bet__hero-section {
        padding-top: 20px; /* Slightly more top padding for desktop */
      }

      .page-3-bet__title {
        font-size: 3.5rem;
      }

      .page-3-bet__subtitle {
        font-size: 1.5rem;
      }

      .page-3-bet__floating-buttons {
        flex-direction: row;
        gap: 15px;
        bottom: 30px;
        right: 30px;
      }

      .page-3-bet__product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
      }

      .page-3-bet__feature-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for features on desktop */
      }

      .page-3-bet__promo-content {
        flex-direction: row;
        text-align: left;
      }

      .page-3-bet__promo-image {
        max-width: 40%;
      }

      .page-3-bet__promo-text {
        text-align: left;
        flex: 1;
      }

      .page-3-bet__text-content {
        text-align: left;
      }
    }

    /* Mobile specific adjustments (max-width: 768px) for list items and images */
    @media (max-width: 768px) {
      .page-3-bet__title {
        font-size: 2rem;
      }
      .page-3-bet__subtitle {
        font-size: 1rem;
      }
      .page-3-bet__section-title {
        font-size: 1.7rem;
      }
      .page-3-bet__text-content {
        font-size: 0.95rem;
      }

      .page-3-bet__hero-cta {
        flex-direction: column;
      }

      /* List item responsive rules */
      .page-3-bet__feature-list {
        padding: 0 10px !important; /* Adjust padding for list container */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-3-bet__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center; /* Ensure text is centered on mobile */
      }
      .page-3-bet__feature-title {
        font-size: 1.2rem;
      }
      .page-3-bet__feature-description {
        font-size: 0.9rem;
      }

      /* Image responsive rules */
      .page-3-bet__hero-image,
      .page-3-bet__product-image,
      .page-3-bet__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* Image containers */
      .page-3-bet__promo-content,
      .page-3-bet__product-card { /* These act as containers for images */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-3-bet__product-card {
        padding: 0 0 20px 0; /* Adjust padding for cards */
      }
      .page-3-bet__product-title,
      .page-3-bet__product-description {
        padding: 0 10px;
      }

      .page-3-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
        flex-direction: row; /* Keep row for floating buttons */
        width: calc(100% - 30px); /* Adjust width to not be too wide */
        justify-content: center;
      }
      .page-3-bet__button {
        flex: 1; /* Allow buttons to grow and share space */
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.9rem;
      }

      .page-3-bet__faq-question {
        padding: 12px 15px;
      }
      .page-3-bet__faq-q-text {
        font-size: 1rem;
      }
      .page-3-bet__faq-answer {
        padding: 0 15px;
      }
      .page-3-bet__faq-item.active .page-3-bet__faq-answer {
        padding: 15px !important;
      }
      .page-3-bet__faq-a-text {
        font-size: 0.95rem;
      }
    }
  