
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red for branding */
      --secondary-color: #333;
      --text-color: #333;
      --light-text-color: #f8f8f8;
      --background-color: #f8f8f8;
      --card-background: #fff;
      --border-color: #ddd;
      --accent-color: #ffc107; /* Gold/yellow for highlights */
    }

    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: var(--background-color);
    }

    .page-8k8-com-login-password__hero-section {
      position: relative;
      background-color: #222;
      color: var(--light-text-color);
      padding: 10px 20px 80px 20px; /* Added 10px top padding for header offset consideration */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
    }

    .page-8k8-com-login-password__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-8k8-com-login-password__hero-image img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

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

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--light-text-color);
    }

    .page-8k8-com-login-password__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ccc;
    }

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

    .page-8k8-com-login-password__cta-button:hover {
      background-color: #d13a18;
    }

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

    .page-8k8-com-login-password__section:nth-of-type(even) {
      background-color: #eee;
    }

    .page-8k8-com-login-password__section-title {
      font-size: 2.2em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-password__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .page-8k8-com-login-password__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-com-login-password__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-password__feature-card {
      background-color: var(--card-background);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-8k8-com-login-password__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary-color);
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-8k8-com-login-password__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

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

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

    .page-8k8-com-login-password__image-full-width {
      width: 100%;
      height: auto;
      margin: 40px 0;
      border-radius: 8px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-8k8-com-login-password__image-full-width img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

    /* FAQ Section Styles */
    .page-8k8-com-login-password__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-password__faq-title {
      font-size: 2.2em;
      color: var(--secondary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-8k8-com-login-password__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }

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

    .page-8k8-com-login-password__faq-item:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      color: var(--secondary-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      text-align: left;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'X' or 'minus' */
    }

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

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

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

      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-com-login-password__section {
        padding: 40px 15px;
      }

      .page-8k8-com-login-password__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__text-content {
        font-size: 0.95em;
      }

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

      .page-8k8-com-login-password__feature-card {
        padding: 20px;
      }

      .page-8k8-com-login-password__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-8k8-com-login-password__faq-section {
        padding: 40px 15px;
      }

      .page-8k8-com-login-password__faq-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive styles for mobile */
      .page-8k8-com-login-password__hero-image img,
      .page-8k8-com-login-password__feature-icon img,
      .page-8k8-com-login-password__image-full-width img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__hero-image,
      .page-8k8-com-login-password__feature-icon,
      .page-8k8-com-login-password__image-full-width {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  