
    /* Base styles for the page */
    .page-www-8k8-com-login-2 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
    }

    /* Section styles */
    .page-www-8k8-com-login-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__section--dark {
      background-color: #0f0f1a;
    }

    .page-www-8k8-com-login-2__section--accent {
      background-color: #2a0000;
      color: #ffffff;
    }

    /* Headings */
    .page-www-8k8-com-login-2__h1 {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-www-8k8-com-login-2__h2 {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 25px;
      text-transform: capitalize;
    }

    .page-www-8k8-com-login-2__h3 {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login-2__h4 {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    /* Paragraphs */
    .page-www-8k8-com-login-2__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #c0c0c0;
    }

    /* Buttons */
    .page-www-8k8-com-login-2__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00;
      color: #1a1a2e;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-www-8k8-com-login-2__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-www-8k8-com-login-2__button--secondary {
      background-color: #4CAF50;
      color: #ffffff;
    }

    .page-www-8k8-com-login-2__button--secondary:hover {
      background-color: #45a049;
    }

    /* Image styles */
    .page-www-8k8-com-login-2__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-www-8k8-com-login-2__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
      margin: 0 auto;
    }

    /* Login Form styles */
    .page-www-8k8-com-login-2__login-form-container {
      background-color: #0f0f1a;
      padding: 40px;
      border-radius: 15px;
      max-width: 500px;
      margin: 30px auto;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      text-align: left;
    }

    .page-www-8k8-com-login-2__form-group {
      margin-bottom: 25px;
    }

    .page-www-8k8-com-login-2__label {
      display: block;
      margin-bottom: 10px;
      color: #ffcc00;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-www-8k8-com-login-2__input {
      width: calc(100% - 20px);
      padding: 12px 10px;
      border: 1px solid #333;
      border-radius: 8px;
      background-color: #222;
      color: #e0e0e0;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__input:focus {
      outline: none;
      border-color: #ffcc00;
      box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
    }

    .page-www-8k8-com-login-2__forgot-password {
      display: block;
      text-align: right;
      font-size: 0.95em;
      color: #ffcc00;
      margin-top: -10px;
      margin-bottom: 20px;
      text-decoration: none;
    }

    .page-www-8k8-com-login-2__forgot-password:hover {
      text-decoration: underline;
    }

    .page-www-8k8-com-login-2__submit-button {
      width: 100%;
      padding: 15px;
      background-color: #ffcc00;
      color: #1a1a2e;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

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

    /* Benefits List */
    .page-www-8k8-com-login-2__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-www-8k8-com-login-2__benefit-card {
      background-color: #222;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__benefit-card:hover {
      transform: translateY(-5px);
    }

    .page-www-8k8-com-login-2__benefit-icon {
      margin-bottom: 15px;
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-www-8k8-com-login-2__benefit-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-www-8k8-com-login-2__benefit-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-2__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-www-8k8-com-login-2__faq-item {
      background-color: #0f0f1a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a0000;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-www-8k8-com-login-2__faq-question:hover {
      background-color: #3b0000;
    }

    .page-www-8k8-com-login-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-toggle {
      transform: rotate(45deg); /* Plus to X (rotate 45deg) or minus (rotate 90deg for a line) */
    }

    .page-www-8k8-com-login-2__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: #c0c0c0;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-www-8k8-com-login-2__h1 {
        font-size: 2.2em;
      }

      .page-www-8k8-com-login-2__h2 {
        font-size: 1.8em;
      }

      .page-www-8k8-com-login-2__h3 {
        font-size: 1.5em;
      }

      .page-www-8k8-com-login-2__section {
        padding: 30px 15px;
      }

      .page-www-8k8-com-login-2__login-form-container {
        padding: 30px 20px;
        margin: 20px auto;
      }

      .page-www-8k8-com-login-2__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-www-8k8-com-login-2__benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-www-8k8-com-login-2__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-www-8k8-com-login-2__faq-answer {
        padding: 15px 20px;
      }
      .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive optimization */
      .page-www-8k8-com-login-2__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-www-8k8-com-login-2__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8-com-login-2__h1 {
        font-size: 1.8em;
      }

      .page-www-8k8-com-login-2__h2 {
        font-size: 1.5em;
      }

      .page-www-8k8-com-login-2__button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-www-8k8-com-login-2__login-form-container {
        padding: 25px 15px;
      }
    }
  