
    /* Page-specific CSS 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: #f8f9fa;
      padding-top: 10px; /* Base padding for aesthetic spacing, assuming body handles header offset */
    }

    .page-8k8-777-com-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-777-com-login-register__hero-section {
      background: linear-gradient(135deg, #001f3f, #004080);
      color: #ffffff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      margin-bottom: 40px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-777-com-login-register__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      transform: rotate(30deg);
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-777-com-login-register__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-777-com-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-777-com-login-register__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .page-8k8-777-com-login-register__action-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-777-com-login-register__section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-777-com-login-register__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-8k8-777-com-login-register__step-card {
      background-color: #e9ecef;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Required for responsive lists */
    }

    .page-8k8-777-com-login-register__step-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-777-com-login-register__step-number {
      font-size: 2.5em;
      color: #004080;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
      width: 60px;
      height: 60px;
      line-height: 60px;
      border-radius: 50%;
      background-color: #ffc107;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-777-com-login-register__step-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login-register__step-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

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

    .page-8k8-777-com-login-register__feature-card {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for responsive lists */
    }

    .page-8k8-777-com-login-register__feature-card:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-777-com-login-register__feature-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-777-com-login-register__feature-title {
      font-size: 1.8em;
      color: #001f3f;
      margin-bottom: 15px;
    }

    .page-8k8-777-com-login-register__feature-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-777-com-login-register__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #004080;
      color: #ffffff;
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-777-com-login-register__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-777-com-login-register__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    /* FAQ Section */
    .page-8k8-777-com-login-register__faq-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-777-com-login-register__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box; /* Required for responsive lists */
    }

    .page-8k8-777-com-login-register__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-777-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      font-size: 1.2em;
      color: #001f3f;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-777-com-login-register__faq-question:hover {
      background-color: #f0f0f0;
      border-radius: 5px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .page-8k8-777-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

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

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

    .page-8k8-777-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: 1em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-777-com-login-register__container {
        padding: 15px;
      }

      .page-8k8-777-com-login-register__hero-section {
        padding: 60px 15px;
        margin-bottom: 30px;
      }

      .page-8k8-777-com-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-777-com-login-register__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-777-com-login-register__action-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-777-com-login-register__section {
        padding: 30px 20px;
        margin-bottom: 25px;
      }

      .page-8k8-777-com-login-register__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      /* List item specific responsive requirements for containers */
      .page-8k8-777-com-login-register__steps-grid,
      .page-8k8-777-com-login-register__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* List item specific responsive requirements for items */
      .page-8k8-777-com-login-register__step-card,
      .page-8k8-777-com-login-register__feature-card,
      .page-8k8-777-com-login-register__faq-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 mobile to prevent content overflow */
      }
      
      /* Image responsive optimization */
      .page-8k8-777-com-login-register__feature-image {
        max-width: 100%;
        height: auto;
      }

      .page-8k8-777-com-login-register__cta-section {
        padding: 40px 15px;
        margin-top: 30px;
      }

      .page-8k8-777-com-login-register__cta-title {
        font-size: 2em;
      }

      .page-8k8-777-com-login-register__cta-description {
        font-size: 1.1em;
      }

      .page-8k8-777-com-login-register__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }

      .page-8k8-777-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-777-com-login-register__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 2em;
      }
      .page-8k8-777-com-login-register__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__section-title {
        font-size: 1.8em;
      }
      .page-8k8-777-com-login-register__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-777-com-login-register__cta-description {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__action-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  