
    /* Page-specific styles for 8k8.com Login */
    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    .page-8k8-com-login__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Adjust for shared header offset */
    }

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

    .page-8k8-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      color: #fdbb2d;
    }

    .page-8k8-com-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__action-button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login__action-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-8k8-com-login__hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.2;
    }

    .page-8k8-com-login__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(50%);
    }

    .page-8k8-com-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: #1a2a6c;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-8k8-com-login__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-com-login__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-login__feature-icon {
      width: 100%;
      max-width: 300px; /* Ensure images are not too small */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__feature-title {
      font-size: 1.8em;
      color: #b21f1f;
      margin-bottom: 15px;
    }

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

    .page-8k8-com-login__cta-section {
      background-color: #1a2a6c;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      margin-top: 50px;
    }

    .page-8k8-com-login__cta-title {
      font-size: 2.8em;
      margin-bottom: 25px;
      color: #fdbb2d;
    }

    .page-8k8-com-login__cta-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .page-8k8-com-login__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login__faq-title {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-com-login__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.25em;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background-color: #fdbb2d;
      color: #1a2a6c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
      background-color: #b21f1f;
      color: #fff;
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      font-size: 1.1em;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__cta-title,
      .page-8k8-com-login__faq-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__hero-section {
        padding: 60px 15px 40px;
      }
      .page-8k8-com-login__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
      }
      .page-8k8-com-login__action-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-login__section {
        padding: 30px 15px;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__cta-title,
      .page-8k8-com-login__faq-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-8k8-com-login__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-login__feature-item {
        padding: 25px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login__feature-icon {
        max-width: 250px;
      }
      .page-8k8-com-login__feature-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login__feature-description {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-com-login__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
      }

      .page-8k8-com-login__faq-section {
        padding: 40px 15px;
      }
      .page-8k8-com-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-com-login__faq-toggle {
        font-size: 1.5em;
        width: 25px;
        height: 25px;
      }
      .page-8k8-com-login__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }
      .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-8k8-com-login__hero-image,
      .page-8k8-com-login__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__cta-title,
      .page-8k8-com-login__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__feature-title {
        font-size: 1.4em;
      }
      .page-8k8-com-login__faq-question h3 {
        font-size: 1em;
      }
    }
  