
    /* Base styles for the page */
    .page-www-8k8-com-login-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Fixed Navigation Bar Spacing - Assuming body padding-top is handled by shared.css */
    .page-www-8k8-com-login-2__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-www-8k8-com-login-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-bottom: 30px;
    }

    .page-www-8k8-com-login-2__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
      box-shadow: none;
    }

    .page-www-8k8-com-login-2__section-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      position: relative;
      padding-bottom: 15px;
    }

    .page-www-8k8-com-login-2__section-title--light {
      color: #ecf0f1;
    }

    .page-www-8k8-com-login-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c; /* A vibrant accent color */
      border-radius: 2px;
    }

    .page-www-8k8-com-login-2__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-www-8k8-com-login-2__hero-section {
      position: relative;
      height: 450px; /* Adjusted for content and mobile focus */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      margin-bottom: 30px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background */
      border-radius: 8px;
    }

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

    .page-www-8k8-com-login-2__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 800px;
    }

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

    .page-www-8k8-com-login-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-www-8k8-com-login-2__button {
      display: inline-block;
      background-color: #e74c3c; /* Primary button color */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-www-8k8-com-login-2__button:hover {
      background-color: #c0392b; /* Darker on hover */
      transform: translateY(-2px);
    }

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

    .page-www-8k8-com-login-2__feature-card {
      background-color: #fcfcfc;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-www-8k8-com-login-2__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

    .page-www-8k8-com-login-2__feature-icon {
      width: 200px; /* Minimum size for content images */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

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

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

    /* Promotions Section */
    .page-www-8k8-com-login-2__promo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-www-8k8-com-login-2__promo-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    .page-www-8k8-com-login-2__promo-text {
      max-width: 700px;
      text-align: center;
      font-size: 1.1em;
      color: #ecf0f1;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-2__faq-list {
      margin-top: 30px;
      border-top: 1px solid #eee;
    }

    .page-www-8k8-com-login-2__faq-item {
      border-bottom: 1px solid #eee;
    }

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

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

    .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 on parent */
    }

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

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

    .page-www-8k8-com-login-2__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;
      background-color: #fcfcfc;
      color: #555;
    }

    .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 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-www-8k8-com-login-2__hero-section {
        height: 350px;
      }

      .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 {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

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

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

      .page-www-8k8-com-login-2__features-grid {
        grid-template-columns: 1fr; /* Stack features on mobile */
        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;
      }

      .page-www-8k8-com-login-2__features-grid > * { /* Targets children of the grid, which are feature cards acting as list items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner space */
        padding-right: 15px !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-www-8k8-com-login-2__feature-card {
        padding: 25px;
      }

      .page-www-8k8-com-login-2__feature-icon {
        width: 150px;
        height: 150px;
        max-width: 100%;
        height: auto;
      }

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

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

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

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