
    /* Page-specific CSS for m.8k8.com login */
    .page-m-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-m-8k8-com-login__hero-section {
      position: relative;
      background-color: #1a2a3a;
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px; /* Added a small padding-top */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-m-8k8-com-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
      max-width: 100%;
      height: auto;
    }
    
    .page-m-8k8-com-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-m-8k8-com-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-m-8k8-com-login__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-m-8k8-com-login__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a2a3a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-m-8k8-com-login__cta-button:hover {
      background-color: #e6b800;
    }

    .page-m-8k8-com-login__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-m-8k8-com-login__section:nth-of-type(even) {
      background-color: #f0f0f0;
    }

    .page-m-8k8-com-login__section-title {
      font-size: 2.2em;
      color: #1a2a3a;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-m-8k8-com-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-m-8k8-com-login__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-m-8k8-com-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-m-8k8-com-login__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-m-8k8-com-login__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-m-8k8-com-login__feature-icon {
      width: 80px; /* Min size 200x200px. This will be replaced by a placeholder that respects the min size */
      height: 80px; /* Placeholder image will be larger, but the container ensures it fits */
      margin: 0 auto 20px;
      border-radius: 50%;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-m-8k8-com-login__feature-title {
      font-size: 1.5em;
      color: #1a2a3a;
      margin-bottom: 15px;
    }

    .page-m-8k8-com-login__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-m-8k8-com-login__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-m-8k8-com-login__product-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-m-8k8-com-login__product-card:hover {
      transform: translateY(-5px);
    }

    .page-m-8k8-com-login__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-m-8k8-com-login__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-m-8k8-com-login__product-info {
      padding: 20px;
    }

    .page-m-8k8-com-login__product-title {
      font-size: 1.3em;
      color: #1a2a3a;
      margin-bottom: 10px;
    }

    .page-m-8k8-com-login__product-description {
      color: #666;
      font-size: 0.9em;
    }

    .page-m-8k8-com-login__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-m-8k8-com-login__provider-item {
      background-color: #fff;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      font-weight: bold;
      color: #1a2a3a;
      font-size: 1.1em;
      box-sizing: border-box;
      max-width: 100%; /* Ensure it doesn't overflow on small screens */
      word-wrap: break-word; /* Allow text to wrap */
      overflow-wrap: break-word;
    }

    .page-m-8k8-com-login__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-m-8k8-com-login__payment-item {
      background-color: #fff;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      font-weight: bold;
      color: #1a2a3a;
      font-size: 1.1em;
      box-sizing: border-box;
      max-width: 100%; /* Ensure it doesn't overflow on small screens */
      word-wrap: break-word; /* Allow text to wrap */
      overflow-wrap: break-word;
    }

    /* FAQ Section Styles */
    .page-m-8k8-com-login__faq-section {
      background-color: #fff;
      padding: 50px 20px;
      max-width: 900px;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      text-align: left;
    }

    .page-m-8k8-com-login__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-m-8k8-com-login__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: 100%; /* Ensure full width */
    }

    .page-m-8k8-com-login__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-m-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a3a;
      transition: background-color 0.3s ease;
    }

    .page-m-8k8-com-login__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-m-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-m-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click events */
      transition: transform 0.3s ease;
    }

    .page-m-8k8-com-login__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.3s ease;
      color: #555;
      font-size: 0.95em;
    }

    .page-m-8k8-com-login__faq-item.active .page-m-8k8-com-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-m-8k8-com-login__faq-item.active .page-m-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
      color: #1a2a3a;
    }

    /* Floating Login/Register Buttons */
    .page-m-8k8-com-login__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-m-8k8-com-login__floating-button {
        background-color: #ffcc00;
        color: #1a2a3a;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        border: none;
        text-align: center;
        min-width: 120px;
    }

    .page-m-8k8-com-login__floating-button--register {
        background-color: #007bff; /* A different color for register */
        color: #fff;
    }

    .page-m-8k8-com-login__floating-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-m-8k8-com-login__floating-button--register:hover {
        background-color: #0056b3;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-m-8k8-com-login__hero-title {
        font-size: 2.2em;
      }

      .page-m-8k8-com-login__hero-subtitle {
        font-size: 1.1em;
      }

      .page-m-8k8-com-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-m-8k8-com-login__section {
        padding: 40px 15px;
      }

      .page-m-8k8-com-login__section-title {
        font-size: 1.8em;
      }

      .page-m-8k8-com-login__text-content {
        font-size: 1em;
      }

      .page-m-8k8-com-login__features-grid,
      .page-m-8k8-com-login__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-m-8k8-com-login__feature-item,
      .page-m-8k8-com-login__product-card {
        padding: 20px;
      }

      .page-m-8k8-com-login__feature-title {
        font-size: 1.3em;
      }

      .page-m-8k8-com-login__product-title {
        font-size: 1.1em;
      }

      .page-m-8k8-com-login__faq-section {
        padding: 30px 15px;
        margin: 20px auto;
      }

      .page-m-8k8-com-login__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }

      .page-m-8k8-com-login__faq-question h3 {
        font-size: 1em;
      }

      .page-m-8k8-com-login__faq-answer {
        font-size: 0.9em;
        padding: 15px 10px; /* Adjusted padding for mobile */
      }
      
      .page-m-8k8-com-login__faq-item.active .page-m-8k8-com-login__faq-answer {
        padding: 15px 10px !important;
      }

      .page-m-8k8-com-login__providers-list,
      .page-m-8k8-com-login__payments-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .page-m-8k8-com-login__provider-item,
      .page-m-8k8-com-login__payment-item {
        width: 100% !important;
        max-width: 90% !important; /* Adjust max-width to leave some margin */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-m-8k8-com-login__floating-buttons {
          bottom: 15px;
          right: 15px;
          gap: 10px;
      }

      .page-m-8k8-com-login__floating-button {
          padding: 10px 20px;
          font-size: 0.9em;
          min-width: 100px;
      }

      /* Image responsiveness */
      .page-m-8k8-com-login__hero-background,
      .page-m-8k8-com-login__feature-icon,
      .page-m-8k8-com-login__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-m-8k8-com-login__product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 375px) {
        .page-m-8k8-com-login__hero-title {
            font-size: 1.8em;
        }
        .page-m-8k8-com-login__hero-subtitle {
            font-size: 1em;
        }
        .page-m-8k8-com-login__section-title {
            font-size: 1.6em;
        }
        .page-m-8k8-com-login__floating-buttons {
            flex-direction: row;
            width: calc(100% - 30px);
            left: 15px;
            right: 15px;
            justify-content: space-around;
        }
        .page-m-8k8-com-login__floating-button {
            flex: 1;
            margin: 0 5px;
            min-width: unset;
        }
    }
  