
    /* Page-specific CSS for 8k8-log-in */
    .page-8k8-log-in {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
    }

    .page-8k8-log-in__hero-section {
      position: relative;
      background-color: #001f3f; /* Dark blue background */
      color: #fff;
      padding: 80px 20px 60px; /* Adjusted padding for header offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__hero-section {
            padding-top: 60px; /* Slightly less padding on mobile if header is smaller */
            min-height: 300px;
        }
    }

    .page-8k8-log-in__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__hero-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    .page-8k8-log-in__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-log-in__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold accent */
      line-height: 1.2;
    }
    @media (max-width: 768px) {
      .page-8k8-log-in__hero-title {
        font-size: 2.2em;
      }
    }

    .page-8k8-log-in__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }
    @media (max-width: 768px) {
      .page-8k8-log-in__hero-subtitle {
        font-size: 1em;
      }
    }

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

    .page-8k8-log-in__login-button:hover {
      background-color: #e6c200;
    }

    .page-8k8-log-in__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto 30px;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      border-radius: 8px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__section {
            padding: 40px 15px;
            margin-bottom: 20px;
        }
    }

    .page-8k8-log-in__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    .page-8k8-log-in__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }
    @media (max-width: 768px) {
      .page-8k8-log-in__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
    }

    .page-8k8-log-in__section-description {
        text-align: center;
        max-width: 800px;
        margin: -20px auto 40px;
        color: #555;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__section-description {
            margin-bottom: 30px;
            font-size: 0.9em;
        }
    }

    .page-8k8-log-in__login-form-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 400px;
      margin: 0 auto;
      padding: 30px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #f9f9f9;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__login-form-container {
            padding: 20px;
        }
    }

    .page-8k8-log-in__form-group {
      width: 100%;
      text-align: left;
    }

    .page-8k8-log-in__form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #555;
    }

    .page-8k8-log-in__form-input {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for width calculation */
    }

    .page-8k8-log-in__form-button {
      width: 100%;
      background-color: #001f3f;
      color: #fff;
      padding: 15px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-8k8-log-in__form-button:hover {
      background-color: #003366;
    }

    .page-8k8-log-in__form-link-text {
        text-align: center;
        width: 100%;
        margin-top: 10px;
        color: #555;
        font-size: 0.9em;
    }

    .page-8k8-log-in__form-link-text strong {
        color: #001f3f;
    }

    .page-8k8-log-in__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .page-8k8-log-in__benefit-card {
      background-color: #f0f8ff; /* Light blue */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-log-in__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .page-8k8-log-in__benefit-icon {
      width: 200px; /* Min size */
      height: 200px; /* Min size */
      margin: 0 auto 15px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__benefit-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    .page-8k8-log-in__benefit-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 10px;
    }

    .page-8k8-log-in__benefit-description {
      color: #555;
      font-size: 1em;
    }

    .page-8k8-log-in__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-8k8-log-in__step-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__step-item {
            flex-direction: column;
            text-align: center;
            padding: 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    .page-8k8-log-in__step-number {
      background-color: #001f3f;
      color: #ffd700;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }

    .page-8k8-log-in__step-content {
      flex-grow: 1;
    }

    .page-8k8-log-in__step-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 5px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__step-title {
            font-size: 1.3em;
        }
    }

    .page-8k8-log-in__step-description {
      color: #555;
    }

    .page-8k8-log-in__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__promotions-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .page-8k8-log-in__promotion-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-log-in__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .page-8k8-log-in__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__promotion-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    .page-8k8-log-in__promotion-content {
      padding: 20px;
    }

    .page-8k8-log-in__promotion-title {
      font-size: 1.4em;
      color: #001f3f;
      margin-bottom: 10px;
    }

    .page-8k8-log-in__promotion-description {
      color: #666;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-8k8-log-in__promotion-button {
      background-color: #ffd700;
      color: #001f3f;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.9em;
    }

    .page-8k8-log-in__promotion-button:hover {
      background-color: #e6c200;
    }

    .page-8k8-log-in__faq-section {
        padding: 60px 20px;
        max-width: 1000px;
        margin: 0 auto 30px;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border-radius: 8px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__faq-section {
            padding: 40px 15px;
            margin-bottom: 20px;
        }
    }

    .page-8k8-log-in__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-log-in__faq-question {
      background-color: #f0f8ff;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
      color: #001f3f;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-8k8-log-in__faq-question:hover {
      background-color: #e0f0ff;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
    }

    .page-8k8-log-in__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        font-size: 1em; /* Adjust h3 font size to match parent */
        color: inherit;
    }

    .page-8k8-log-in__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: #ffd700;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-toggle {
      transform: rotate(45deg); /* Changes + to x, visually like - */
    }

    .page-8k8-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      color: #555;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__faq-answer {
            padding: 0 15px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
    }

    .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-answer {
      max-height: 2000px !important; /* Use !important as per requirement */
      padding: 20px 20px !important; /* Use !important as per requirement */
      opacity: 1;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-answer {
            padding: 15px 15px !important; /* Adjusted for mobile */
        }
    }


    .page-8k8-log-in__cta-section {
        text-align: center;
        padding: 40px 20px;
        background-color: #001f3f;
        color: #fff;
        margin-bottom: 0; /* Last section before footer */
        border-radius: 0 0 8px 8px; /* Match main section border radius */
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__cta-section {
            padding: 30px 15px;
        }
    }

    .page-8k8-log-in__cta-title {
        font-size: 2.2em;
        margin-bottom: 20px;
        color: #ffd700;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__cta-title {
            font-size: 1.6em;
        }
    }

    .page-8k8-log-in__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in__cta-description {
            font-size: 1em;
        }
    }

    .page-8k8-log-in__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8k8-log-in__cta-button {
        background-color: #ffd700;
        color: #001f3f;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
    }

    .page-8k8-log-in__cta-button:hover {
        background-color: #e6c200;
    }

    .page-8k8-log-in__cta-button--secondary {
        background-color: #003366;
        color: #fff;
    }

    .page-8k8-log-in__cta-button--secondary:hover {
        background-color: #004488;
    }

    /* General responsive adjustments for sections */
    .page-8k8-log-in > section {
      margin-left: 20px;
      margin-right: 20px;
    }
    @media (max-width: 768px) {
        .page-8k8-log-in > section {
            margin-left: 10px;
            margin-right: 10px;
        }
    }
  