
    /* General Styling */
    .page-8k8-com-login-download {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

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

    .page-8k8-com-login-download__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-download__title {
      color: #0056b3; /* Darker blue for titles */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-8k8-com-login-download__subtitle {
      color: #007bff; /* Primary blue */
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-8k8-com-login-download__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-com-login-download__button {
      display: inline-block;
      background-color: #007bff; /* Primary blue */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      text-align: center;
    }

    .page-8k8-com-login-download__button:hover {
      background-color: #0056b3; /* Darker blue on hover */
    }

    /* Hero Section */
    .page-8k8-com-login-download__hero-section {
      background: linear-gradient(135deg, #007bff, #00c6ff); /* Blue gradient */
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Adjusted for header offset + decorative padding */
    }

    .page-8k8-com-login-download__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
      transform: rotate(45deg);
      opacity: 0.3;
      animation: page-8k8-com-login-download__hero-animation 10s infinite linear;
    }

    @keyframes page-8k8-com-login-download__hero-animation {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

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

    .page-8k8-com-login-download__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 800;
      line-height: 1.2;
    }

    .page-8k8-com-login-download__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-8k8-com-login-download__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-com-login-download__floating-button {
      background-color: #ffc107; /* Yellow for attention */
      color: #333;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 120px;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-com-login-download__floating-button:hover {
      background-color: #e0a800; /* Darker yellow on hover */
      transform: translateY(-2px);
    }

    /* Image Styling */
    .page-8k8-com-login-download__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-download__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: block;
      margin: 0 auto;
    }

    /* Grid Layout for Features/Providers */
    .page-8k8-com-login-download__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-login-download__grid-item {
      background-color: #f0f8ff; /* Light blue background */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login-download__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-login-download__grid-item-title {
      color: #007bff;
      font-size: 1.3em;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-login-download__grid-item-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px; /* Ensure some height for image */
    }

    .page-8k8-com-login-download__grid-item-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      display: block;
      object-fit: contain; /* Ensures the whole image is visible */
    }

    /* Step-by-step list */
    .page-8k8-com-login-download__steps-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-8k8-com-login-download__steps-list-item {
      background-color: #e6f7ff; /* Lighter blue */
      padding: 20px 25px;
      margin-bottom: 15px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-8k8-com-login-download__steps-list-item-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-8k8-com-login-download__steps-list-item-content {
      flex-grow: 1;
    }

    .page-8k8-com-login-download__steps-list-item-title {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 5px;
      font-weight: 600;
    }

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

    .page-8k8-com-login-download__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

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

    .page-8k8-com-login-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-download__faq-question:hover {
      background-color: #f0f0f0;
    }

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

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

    .page-8k8-com-login-download__faq-item.active .page-8k8-com-login-download__faq-toggle {
      transform: rotate(45deg); /* Rotate for minus sign effect */
    }

    .page-8k8-com-login-download__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;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-download__hero-title {
        font-size: 2.5em;
      }

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

      .page-8k8-com-login-download__title {
        font-size: 2em;
      }

      .page-8k8-com-login-download__subtitle {
        font-size: 1.5em;
      }

      .page-8k8-com-login-download__section {
        padding: 20px;
      }

      .page-8k8-com-login-download__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        justify-content: space-around;
        gap: 5px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
      }

      .page-8k8-com-login-download__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }

      .page-8k8-com-login-download__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-download__steps-list-item {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        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;
      }

      .page-8k8-com-login-download__steps-list-item-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-8k8-com-login-download__steps-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-download__image-wrapper,
      .page-8k8-com-login-download__grid-item-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-com-login-download__image,
      .page-8k8-com-login-download__grid-item-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-8k8-com-login-download__faq-answer {
        padding: 0 10px;
      }

      .page-8k8-com-login-download__faq-item.active .page-8k8-com-login-download__faq-answer {
        padding: 15px 10px !important;
      }
    }
  