
    :root {
      --primary-color: #007bff; /* A vibrant blue for actions and highlights */
      --secondary-color: #6c757d; /* A muted gray for secondary elements */
      --accent-color: #ffc107; /* A bright yellow for emphasis */
      --text-color: #333; /* Dark gray for main text */
      --light-text-color: #f8f9fa; /* Off-white for text on dark backgrounds */
      --background-color: #f4f7f6; /* Light gray for general background */
      --card-background: #ffffff; /* White for cards and content blocks */
      --border-color: #e0e0e0; /* Light gray for borders */
      --dark-background: #212529; /* Dark charcoal for contrasting sections */
      --header-offset: 122px; /* Default value, typically overridden by shared.css */
    }

    /* Base styles for the page content */
    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      padding-bottom: 40px;
    }

    @media (max-width: 768px) {
      .page-8k8-login-account {
        padding-top: calc(var(--header-offset, 122px) + 10px); /* Slightly more padding for mobile */
      }
    }

    .page-8k8-login-account__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .page-8k8-login-account__hero-section {
      position: relative;
      background-color: var(--dark-background);
      color: var(--light-text-color);
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px; /* Ensure visibility */
    }

    .page-8k8-login-account__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-8k8-login-account__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-8k8-login-account__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--accent-color);
      line-height: 1.2;
    }

    .page-8k8-login-account__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--light-text-color);
    }

    .page-8k8-login-account__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login-account__cta-button:hover {
      background-color: #0056b3; /* Darker primary */
    }

    /* General Section Styles */
    .page-8k8-login-account__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-login-account__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--dark-background);
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-8k8-login-account__text-content {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      line-height: 1.7;
      text-align: left;
    }

    .page-8k8-login-account__text-content p {
      margin-bottom: 20px;
    }

    /* Benefits Section */
    .page-8k8-login-account__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-login-account__benefit-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-login-account__benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-login-account__benefit-icon {
      width: 250px; /* Minimum 200x200px requirement */
      height: 200px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover;
      border-radius: 8px;
      box-sizing: border-box !important;
    }

    .page-8k8-login-account__benefit-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-login-account__benefit-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Login Steps Section */
    .page-8k8-login-account__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1000px;
      width: 100%; /* Ensure container takes full width */
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-login-account__step-item {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box; /* Crucial for responsiveness */
      border: 1px solid var(--border-color);
    }

    .page-8k8-login-account__step-number {
      font-size: 2.5em;
      color: var(--accent-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8-login-account__step-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-login-account__step-description {
      font-size: 1em;
      color: var(--text-color);
    }

    .page-8k8-login-account__step-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 20px;
      max-width: 100% !important; /* Responsive image */
      height: auto !important; /* Responsive image */
      box-sizing: border-box !important;
    }

    /* Account Security Section */
    .page-8k8-login-account__security-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .page-8k8-login-account__security-text {
      flex: 1;
      min-width: 300px;
      font-size: 1.1em;
      line-height: 1.7;
    }

    .page-8k8-login-account__security-text h3 {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-8k8-login-account__security-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      max-width: 100% !important; /* Responsive image */
      height: auto !important; /* Responsive image */
      object-fit: cover;
      box-sizing: border-box !important;
    }

    /* FAQ Section */
    .page-8k8-login-account__faq-section {
      background-color: var(--card-background);
      padding: 60px 0;
      border-top: 1px solid var(--border-color);
    }

    .page-8k8-login-account__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      list-style: none;
      padding: 0;
      width: 100%; /* Ensure container takes full width */
      box-sizing: border-box;
    }

    .page-8k8-login-account__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-login-account__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--background-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--dark-background);
      transition: background-color 0.3s ease;
    }

    .page-8k8-login-account__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: var(--dark-background);
    }

    .page-8k8-login-account__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: var(--primary-color);
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or rotate to '-' */
    }

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--text-color);
      text-align: left;
    }

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

    .page-8k8-login-account__faq-answer p {
      margin-bottom: 15px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8-login-account__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-login-account__section-title {
        font-size: 2.2em;
      }
      .page-8k8-login-account__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .page-8k8-login-account__security-content {
        flex-direction: column;
        text-align: center;
      }
      .page-8k8-login-account__security-text {
        min-width: unset;
        width: 100%;
      }
      .page-8k8-login-account__security-image {
        min-width: unset;
        width: 100%;
        max-width: 600px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__hero-section {
        padding: 60px 15px;
        min-height: 350px;
      }
      .page-8k8-login-account__hero-title {
        font-size: 2em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 1em;
      }
      .page-8k8-login-account__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-login-account__section {
        padding: 40px 0;
      }
      .page-8k8-login-account__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-login-account__text-content {
        font-size: 1em;
        margin-bottom: 30px;
        padding: 0 15px;
      }
      .page-8k8-login-account__benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }
      .page-8k8-login-account__benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__steps-list {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }
      .page-8k8-login-account__security-content {
        padding: 0 15px;
      }
      .page-8k8-login-account__faq-list {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-login-account__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-login-account__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-login-account__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-login-account__section-title {
        font-size: 1.6em;
      }
      .page-8k8-login-account__faq-question {
        font-size: 1em;
      }
      .page-8k8-login-account__faq-question h3 {
        font-size: 1em;
      }
    }
  