
    /* CSS Styles for mb66.com page */
    .page-mb66 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark background */
      color: #f0f0f0; /* Light text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-mb66__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-mb66__hero-section {
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      margin-bottom: 40px;
    }

    .page-mb66__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-mb66__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-mb66__hero-content {
      padding: 0 15px;
    }

    .page-mb66__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-mb66__hero-subtitle {
      font-size: 1.3em;
      color: #cccccc;
      margin-bottom: 25px;
    }

    .page-mb66__cta-button {
      display: inline-block;
      background-color: #00cc66; /* Green accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 204, 102, 0.4);
    }

    .page-mb66__cta-button:hover {
      background-color: #00e673;
      transform: translateY(-3px);
    }

    .page-mb66__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e0a800; /* Gold accent */
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 20px rgba(224, 168, 0, 0.6);
      z-index: 1000;
      animation: page-mb66__pulse 2s infinite;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 90%; /* For mobile */
    }

    .page-mb66__floating-button:hover {
      background-color: #ffc107;
    }

    @keyframes page-mb66__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-mb66__section {
      padding: 60px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-mb66__section:last-of-type {
      border-bottom: none;
    }

    .page-mb66__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-mb66__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-mb66__card {
      background-color: #2b2b45;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-mb66__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }
    
    .page-mb66__card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-mb66__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-mb66__card-title {
      font-size: 1.5em;
      color: #00cc66;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-mb66__card-title a {
      color: #00cc66;
      text-decoration: none;
    }

    .page-mb66__card-title a:hover {
      text-decoration: underline;
    }

    .page-mb66__card-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-mb66__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }
    
    .page-mb66__provider-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: #2b2b45;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-mb66__provider-item:hover {
        transform: translateY(-5px);
    }

    .page-mb66__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-mb66__promo-card {
      background-color: #2b2b45;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .page-mb66__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-mb66__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-mb66__promo-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-mb66__promo-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 25px;
    }

    .page-mb66__guide-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-mb66__guide-step {
      background-color: #2b2b45;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-mb66__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #00cc66;
      flex-shrink: 0;
      width: 40px;
      text-align: center;
    }

    .page-mb66__step-content h3 {
      font-size: 1.4em;
      color: #ffcc00;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-mb66__step-content p {
      color: #cccccc;
      margin-bottom: 0;
    }

    .page-mb66__faq-item {
      background-color: #2b2b45;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-mb66__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-mb66__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #f0f0f0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mb66__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #00cc66;
      width: 30px;
      text-align: center;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-mb66__faq-item.active .page-mb66__faq-toggle {
      transform: rotate(45deg); /* Change + to X or a dash */
    }

    .page-mb66__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;
      color: #cccccc;
    }

    .page-mb66__faq-item.active .page-mb66__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-mb66__testimonials-section {
        background-color: #1a1a2e;
        padding: 60px 0;
    }

    .page-mb66__testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-mb66__testimonial-card {
        background-color: #2b2b45;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-mb66__testimonial-text {
        font-style: italic;
        color: #cccccc;
        margin-bottom: 20px;
        font-size: 1.1em;
    }

    .page-mb66__testimonial-author {
        font-weight: bold;
        color: #00cc66;
        font-size: 1.1em;
    }

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

      .page-mb66__hero-subtitle {
        font-size: 1.1em;
      }

      .page-mb66__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-mb66__section-title {
        font-size: 1.8em;
      }

      .page-mb66__grid {
        grid-template-columns: 1fr;
      }

      .page-mb66__card {
        padding: 20px;
      }

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

      .page-mb66__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Adjusted for smaller screens */
        gap: 15px;
      }
      
      .page-mb66__provider-logo {
          min-width: 150px; /* Maintain minimum size */
          min-height: 150px; /* Maintain minimum size */
          max-width: 100% !important;
          height: auto !important;
      }

      .page-mb66__promo-card {
        padding: 20px;
      }

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

      .page-mb66__guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-mb66__step-number {
        margin-bottom: 10px;
      }

      .page-mb66__faq-question {
        padding: 15px 20px;
      }

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

      .page-mb66__faq-answer {
        padding: 0 20px;
      }

      .page-mb66__faq-item.active .page-mb66__faq-answer {
        padding: 15px 20px !important;
      }

      .page-mb66__floating-button {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 10px 15px;
      }

      .page-mb66__hero-image-wrapper img,
      .page-mb66__card-image-wrapper img,
      .page-mb66__promo-image-wrapper img {
          max-width: 100% !important;
          height: auto !important;
      }

    }
    @media (max-width: 480px) {
        .page-mb66__provider-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
        }
        .page-mb66__provider-logo {
            min-width: 120px; /* Further adjust for smaller screens */
            min-height: 120px; /* Further adjust for smaller screens */
        }
    }
  