
    /* Base styles for the page-specific content */
    .page-www-8k8-com-login-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* General spacing before footer */
      max-width: 100%;
      overflow-x: hidden;
    }

    .page-www-8k8-com-login-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__section {
      padding: 40px 0;
      text-align: center;
    }

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

    .page-www-8k8-com-login-2__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #333;
      font-weight: bold;
    }

    .page-www-8k8-com-login-2__section--dark .page-www-8k8-com-login-2__section-title {
      color: #ffcc00; /* Gold accent for dark sections */
    }

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

    /* Hero Section */
    .page-www-8k8-com-login-2__hero-section {
      position: relative;
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 10px 0 80px 0; /* 10px top for fixed header offset, 80px bottom */
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Ensure hero has a decent height */
    }

    .page-www-8k8-com-login-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-www-8k8-com-login-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
      border-radius: 10px;
    }

    .page-www-8k8-com-login-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8-com-login-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: #ffffff;
    }

    .page-www-8k8-com-login-2__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button, not a link visually */
      cursor: pointer;
    }

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

    .page-www-8k8-com-login-2__button--secondary {
      background-color: #007bff;
      color: #ffffff;
      margin-left: 15px;
    }

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

    /* Features Grid */
    .page-www-8k8-com-login-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-www-8k8-com-login-2__feature-card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-www-8k8-com-login-2__section--dark .page-www-8k8-com-login-2__feature-card {
        background-color: #3a3a3a;
        color: #ffffff;
    }

    .page-www-8k8-com-login-2__feature-card:hover {
      transform: translateY(-5px);
    }
    
    .page-www-8k8-com-login-2__feature-image {
      width: 250px; /* Adjusted to meet minimum size */
      height: 200px; /* Adjusted to meet minimum size */
      margin-bottom: 15px;
      object-fit: cover;
      border-radius: 5px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-www-8k8-com-login-2__feature-description {
      font-size: 1em;
      color: #555;
    }
    .page-www-8k8-com-login-2__section--dark .page-www-8k8-com-login-2__feature-description {
        color: #ccc;
    }

    /* How to Login Section */
    .page-www-8k8-com-login-2__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-www-8k8-com-login-2__step-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

    .page-www-8k8-com-login-2__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ffcc00;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-www-8k8-com-login-2__step-content {
      flex-grow: 1;
    }

    .page-www-8k8-com-login-2__step-title {
      font-size: 1.3em;
      margin-bottom: 5px;
      color: #333;
    }

    .page-www-8k8-com-login-2__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Why Choose 8K8 Section */
    .page-www-8k8-com-login-2__why-choose-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-www-8k8-com-login-2__why-choose-item {
      background-color: #3a3a3a;
      color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-www-8k8-com-login-2__why-choose-item-description {
      font-size: 1em;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-2__faq-section {
      text-align: left;
    }

    .page-www-8k8-com-login-2__faq-list {
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

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

    .page-www-8k8-com-login-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

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

    .page-www-8k8-com-login-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-www-8k8-com-login-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
    }

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-www-8k8-com-login-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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;
      background-color: #ffffff;
    }

    .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; /* Active padding */
      opacity: 1;
    }

    .page-www-8k8-com-login-2__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Call to Action Section */
    .page-www-8k8-com-login-2__cta-section {
      padding: 60px 0;
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    .page-www-8k8-com-login-2__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

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

    .page-www-8k8-com-login-2__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

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

      .page-www-8k8-com-login-2__hero-subtitle {
        font-size: 1.2em;
      }

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

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

      .page-www-8k8-com-login-2__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px !important; /* Adjust padding for mobile */
        width: 100% !important; /* List item mobile width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important;
      }

      .page-www-8k8-com-login-2__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-www-8k8-com-login-2__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-www-8k8-com-login-2__why-choose-list {
        grid-template-columns: 1fr;
      }

      .page-www-8k8-com-login-2__why-choose-item {
        padding: 20px 15px !important; /* Adjust padding for mobile */
        width: 100% !important; /* List item mobile width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important;
      }

      .page-www-8k8-com-login-2__faq-question {
        padding: 15px 20px;
      }

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

      .page-www-8k8-com-login-2__faq-answer {
        padding: 0 20px; /* Adjust padding for mobile */
      }
      .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for mobile */
      }

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

      .page-www-8k8-com-login-2__cta-description {
        font-size: 1em;
      }

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

      .page-www-8k8-com-login-2__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-www-8k8-com-login-2__button--secondary {
        margin-left: 0; /* Remove margin for stacked buttons */
      }
    }

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