
    /* CSS styles for page-bigbunny-login-password */
    .page-bigbunny-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if not provided by shared.css */
    }

    /* Hero Section */
    .page-bigbunny-login-password__hero-section {
      position: relative;
      background-color: #f0f8ff;
      color: #000;
      text-align: center;
      padding: 10px 20px 80px; /* Adjusted padding-top to 10px */
      overflow: hidden;
    }

    .page-bigbunny-login-password__hero-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
    }

    .page-bigbunny-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      background-color: rgba(255, 255, 255, 0.85);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-bigbunny-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #2c3e50;
      font-weight: bold;
    }

    .page-bigbunny-login-password__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #34495e;
    }

    .page-bigbunny-login-password__cta-button {
      display: inline-block;
      background-color: #ff6f00;
      color: #fff;
      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-bigbunny-login-password__cta-button:hover {
      background-color: #e65100;
    }

    /* Main Content Sections */
    .page-bigbunny-login-password__section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-bigbunny-login-password__section:last-of-type {
      border-bottom: none;
    }

    .page-bigbunny-login-password__section-title {
      font-size: 2.2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-bigbunny-login-password__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ff6f00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-bigbunny-login-password__content-block {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-bottom: 40px;
    }

    .page-bigbunny-login-password__content-block.reverse {
      flex-direction: row-reverse;
    }

    .page-bigbunny-login-password__text-content,
    .page-bigbunny-login-password__image-container {
      flex: 1;
      min-width: 300px;
    }

    .page-bigbunny-login-password__image-container {
      text-align: center;
    }

    .page-bigbunny-login-password__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: block; /* Ensure it doesn't leave extra space below */
      margin: 0 auto;
      box-sizing: border-box !important; /* Ensure padding and border are included in width */
    }

    .page-bigbunny-login-password__list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-bigbunny-login-password__list-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      padding: 20px;
      border-left: 5px solid #ff6f00;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-bigbunny-login-password__list-item strong {
      color: #2c3e50;
    }

    /* FAQ Section */
    .page-bigbunny-login-password__faq-section {
      background-color: #f5f5f5;
    }

    .page-bigbunny-login-password__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-bigbunny-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #fdfdfd;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-login-password__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-bigbunny-login-password__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-size: 1.1em; /* Adjusted for better readability and hierarchy */
    }

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

    .page-bigbunny-login-password__faq-item.active .page-bigbunny-login-password__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

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

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

    /* Sticky Register/Login Buttons */
    .page-bigbunny-login-password__sticky-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-bigbunny-login-password__sticky-button {
      background-color: #ff6f00;
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      min-width: 120px;
    }

    .page-bigbunny-login-password__sticky-button:hover {
      background-color: #e65100;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bigbunny-login-password {
        padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset */
      }

      .page-bigbunny-login-password__hero-section {
        padding: 10px 15px 60px;
      }

      .page-bigbunny-login-password__hero-content {
        padding: 30px 15px;
      }

      .page-bigbunny-login-password__hero-title {
        font-size: 2em;
      }

      .page-bigbunny-login-password__hero-subtitle {
        font-size: 1.1em;
      }

      .page-bigbunny-login-password__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bigbunny-login-password__section {
        padding: 40px 15px;
      }

      .page-bigbunny-login-password__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-bigbunny-login-password__content-block {
        flex-direction: column;
        gap: 30px;
      }

      .page-bigbunny-login-password__text-content,
      .page-bigbunny-login-password__image-container {
        min-width: unset;
        width: 100%;
      }

      /* List item mobile responsiveness */
      .page-bigbunny-login-password__list {
        padding: 0 10px !important; /* Adjust padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bigbunny-login-password__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Reduced padding */
        font-size: 1em;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-bigbunny-login-password__image {
        max-width: 100%;
        height: auto;
        box-sizing: border-box !important;
      }

      .page-bigbunny-login-password__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-bigbunny-login-password__faq-question h3 {
        font-size: 1em;
      }

      .page-bigbunny-login-password__faq-answer {
        padding: 0 20px;
      }

      .page-bigbunny-login-password__faq-item.active .page-bigbunny-login-password__faq-answer {
        padding: 15px 20px !important;
      }

      .page-bigbunny-login-password__sticky-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-bigbunny-login-password__sticky-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  