
    /* Base styles for the page */
    .page-8k8-com-login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

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

    .page-8k8-com-login__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-com-login__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 10px 0 80px 0; /* Adjusted padding-top to 10px as per requirement */
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
      background: linear-gradient(135deg, #001f3f 0%, #003366 100%); /* Dark gradient for overlay */
    }

    .page-8k8-com-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      /* filter: brightness(0.6); -- Removed as per strict image filter rule */
    }

    .page-8k8-com-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #ffd700; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login__button {
      display: inline-block;
      background-color: #ffd700; /* Gold */
      color: #001f3f; /* Dark blue */
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login__button:hover {
      background-color: #ffeb3b; /* Lighter gold */
      transform: translateY(-2px);
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: #001f3f; /* Dark blue */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

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

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

    .page-8k8-com-login__feature-card {
      background-color: #f0f8ff; /* Light blue */
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-com-login__feature-icon {
      width: 250px; /* Minimum size 200x200 */
      height: 180px; /* Minimum size 200x200 (adjust to 200 for square or 250x200 for rectangle) */
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 5px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-com-login__feature-title {
      font-size: 1.6em;
      color: #003366; /* Medium blue */
      margin-bottom: 15px;
    }

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

    .page-8k8-com-login__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(45deg, #003366, #0056b3); /* Darker blue gradient */
      color: #fff;
      border-radius: 10px;
    }

    .page-8k8-com-login__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold */
    }

    .page-8k8-com-login__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-8k8-com-login__faq-section {
      background-color: #f0f8ff; /* Light blue */
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-login__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e6f7ff; /* Lighter blue */
      font-size: 1.2em;
      color: #003366; /* Dark blue */
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #d9edf7; /* Even lighter blue */
    }

    .page-8k8-com-login__faq-question h3 {
        margin: 0;
        font-size: 1.2em; /* Ensure font size is consistent */
        color: #003366;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' effect */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
      background-color: #fbfdff; /* Off-white */
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login__container {
        padding: 15px;
      }

      .page-8k8-com-login__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-8k8-com-login__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-login__hero-description {
        font-size: 1em;
      }

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

      .page-8k8-com-login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

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

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

      .page-8k8-com-login__feature-card {
        padding: 20px;
      }

      .page-8k8-com-login__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-com-login__cta-title {
        font-size: 2em;
      }

      .page-8k8-com-login__cta-description {
        font-size: 1em;
      }

      /* FAQ Mobile Styles */
      .page-8k8-com-login__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }

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

      .page-8k8-com-login__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-com-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }
    @media (max-width: 480px) {
        .page-8k8-com-login__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-com-login__section-title {
            font-size: 1.5em;
        }
        .page-8k8-com-login__cta-title {
            font-size: 1.6em;
        }
    }
  