
    /* Page-specific styles for 8k8 777 com login register */
    .page-8k8-777-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-777-com-login-register__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Adjusted padding-top to 10px */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-8k8-777-com-login-register__hero-content {
      max-width: 900px;
      margin: 0 auto;
      z-index: 10;
      position: relative;
    }

    .page-8k8-777-com-login-register__hero-content h1 {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-8k8-777-com-login-register__hero-content p {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-777-com-login-register__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow for CTA */
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

    .page-8k8-777-com-login-register__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-8k8-777-com-login-register__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-8k8-777-com-login-register__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-777-com-login-register__section:first-of-type {
        margin-top: 30px; /* Space after hero section */
    }

    .page-8k8-777-com-login-register__section h2 {
      text-align: center;
      font-size: 2.5em;
      color: #1a2a6c;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-777-com-login-register__section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background-color: #fdbb2d;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .page-8k8-777-com-login-register__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }

    .page-8k8-777-com-login-register__text-block,
    .page-8k8-777-com-login-register__image-block {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    }

    .page-8k8-777-com-login-register__image-block img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box; /* Ensure padding/border are included */
    }

    .page-8k8-777-com-login-register__text-block h3 {
      font-size: 1.8em;
      color: #b21f1f;
      margin-bottom: 15px;
    }

    .page-8k8-777-com-login-register__text-block p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-777-com-login-register__features-grid,
    .page-8k8-777-com-login-register__providers-grid,
    .page-8k8-777-com-login-register__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__feature-item,
    .page-8k8-777-com-login-register__provider-item,
    .page-8k8-777-com-login-register__payment-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-777-com-login-register__feature-item:hover,
    .page-8k8-777-com-login-register__provider-item:hover,
    .page-8k8-777-com-login-register__payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-777-com-login-register__feature-item h3,
    .page-8k8-777-com-login-register__provider-item h3,
    .page-8k8-777-com-login-register__payment-item h3 {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login-register__feature-item p,
    .page-8k8-777-com-login-register__provider-item p,
    .page-8k8-777-com-login-register__payment-item p {
      color: #666;
      font-size: 0.95em;
    }

    .page-8k8-777-com-login-register__feature-icon,
    .page-8k8-777-com-login-register__provider-logo,
    .page-8k8-777-com-login-register__payment-logo {
      width: 120px; /* Minimum 200px required, adjusting */
      height: 120px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      border-radius: 8px; /* Added for consistency */
    }

    .page-8k8-777-com-login-register__provider-logo,
    .page-8k8-777-com-login-register__payment-logo {
        width: 180px; /* Larger images for providers/payments */
        height: 100px;
        object-fit: contain;
    }

    .page-8k8-777-com-login-register__final-cta {
      text-align: center;
      padding: 50px 20px;
      background-color: #1a2a6c;
      color: #fff;
      margin-bottom: 0; /* No bottom margin for the last section */
      border-radius: 0 0 8px 8px; /* Rounded bottom corners */
    }

    .page-8k8-777-com-login-register__final-cta h2 {
      color: #ffcc00;
      margin-bottom: 25px;
    }

    .page-8k8-777-com-login-register__final-cta p {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #eee;
    }

    /* FAQ Section Styles */
    .page-8k8-777-com-login-register__faq-container {
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-777-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-777-com-login-register__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-8k8-777-com-login-register__faq-question h3 {
      font-size: 1.25em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-777-com-login-register__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #b21f1f;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

    .page-8k8-777-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      color: #555;
      font-size: 1.05em;
    }

    .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-777-com-login-register__hero-content h1 {
        font-size: 2.8em;
      }
      .page-8k8-777-com-login-register__hero-content p {
        font-size: 1.1em;
      }
      .page-8k8-777-com-login-register__section h2 {
        font-size: 2em;
      }
      .page-8k8-777-com-login-register__text-block h3 {
        font-size: 1.6em;
      }
      .page-8k8-777-com-login-register__features-grid,
      .page-8k8-777-com-login-register__providers-grid,
      .page-8k8-777-com-login-register__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-777-com-login-register__hero-section {
        padding: 10px 15px 60px;
        min-height: 350px;
      }
      .page-8k8-777-com-login-register__hero-content h1 {
        font-size: 2.2em;
      }
      .page-8k8-777-com-login-register__hero-content p {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__section {
        padding: 40px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }
      .page-8k8-777-com-login-register__section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-777-com-login-register__text-block,
      .page-8k8-777-com-login-register__image-block {
        max-width: 100%;
        flex: 1 1 100%;
      }
      .page-8k8-777-com-login-register__content-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      .page-8k8-777-com-login-register__text-block h3 {
        font-size: 1.4em;
        text-align: center;
      }
      .page-8k8-777-com-login-register__text-block p {
        text-align: center;
      }
      .page-8k8-777-com-login-register__features-grid,
      .page-8k8-777-com-login-register__providers-grid,
      .page-8k8-777-com-login-register__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-8k8-777-com-login-register__feature-item,
      .page-8k8-777-com-login-register__provider-item,
      .page-8k8-777-com-login-register__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjusted padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-777-com-login-register__features-grid,
      .page-8k8-777-com-login-register__providers-grid,
      .page-8k8-777-com-login-register__payments-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image mobile responsiveness */
      .page-8k8-777-com-login-register__image-block img,
      .page-8k8-777-com-login-register__feature-icon,
      .page-8k8-777-com-login-register__provider-logo,
      .page-8k8-777-com-login-register__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-777-com-login-register__image-block {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-777-com-login-register__final-cta {
        padding: 40px 15px;
      }
      .page-8k8-777-com-login-register__final-cta h2 {
        font-size: 1.8em;
      }
      .page-8k8-777-com-login-register__final-cta p {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-777-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-777-com-login-register__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-777-com-login-register__hero-content h1 {
        font-size: 1.8em;
      }
      .page-8k8-777-com-login-register__hero-content p {
        font-size: 0.9em;
      }
      .page-8k8-777-com-login-register__section h2 {
        font-size: 1.5em;
      }
      .page-8k8-777-com-login-register__text-block h3 {
        font-size: 1.2em;
      }
    }
  