
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #ff6600; /* Orange */
      --text-color-dark: #333333;
      --text-color-light: #ffffff;
      --background-dark: #1a1a1a;
      --background-light: #f5f5f5;
      --border-color: #555555;
      --button-bg: #ffcc00;
      --button-text: #1a1a1a;
    }

    .page-bigbunny-ph-login-registration {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-dark);
      line-height: 1.6;
      padding-bottom: 40px;
    }

    .page-bigbunny-ph-login-registration__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-bigbunny-ph-login-registration__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      margin: 0 15px;
    }

    .page-bigbunny-ph-login-registration__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bigbunny-ph-login-registration__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__action-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--button-bg);
      color: var(--button-text);
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-login-registration__action-button:hover {
      background-color: var(--accent-color);
      transform: translateY(-2px);
    }

    .page-bigbunny-ph-login-registration__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--background-light);
      border-radius: 8px;
      margin-top: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-bigbunny-ph-login-registration__section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-bigbunny-ph-login-registration__section-title--dark {
      color: var(--primary-color);
    }

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

    .page-bigbunny-ph-login-registration__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-bigbunny-ph-login-registration__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bigbunny-ph-login-registration__step-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 5px solid var(--primary-color);
      box-sizing: border-box;
    }

    .page-bigbunny-ph-login-registration__step-item--dark {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border-top-color: var(--accent-color);
    }

    .page-bigbunny-ph-login-registration__step-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      object-fit: cover;
      border-radius: 5px;
    }

    .page-bigbunny-ph-login-registration__step-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-bigbunny-ph-login-registration__step-description {
      font-size: 1em;
      color: var(--text-color-dark);
    }

    .page-bigbunny-ph-login-registration__step-item--dark .page-bigbunny-ph-login-registration__step-description {
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-bigbunny-ph-login-registration__feature-item {
      background-color: #ffffff;
      padding: 20px;
      border-left: 5px solid var(--accent-color);
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-bigbunny-ph-login-registration__feature-item--dark {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      border-left-color: var(--primary-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-login-registration__feature-icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      object-fit: cover;
      border-radius: 5px;
    }

    .page-bigbunny-ph-login-registration__feature-content h3 {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-bigbunny-ph-login-registration__feature-content p {
      font-size: 0.95em;
      margin-bottom: 0;
    }

    .page-bigbunny-ph-login-registration__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-bigbunny-ph-login-registration__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      background-color: #ffffff;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-bigbunny-ph-login-registration__payment-logo--dark {
      background-color: #3f3f3f;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-login-registration__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: var(--background-light);
      border-radius: 8px;
      margin-top: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-bigbunny-ph-login-registration__faq-section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-light);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-login-registration__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-bigbunny-ph-login-registration__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-bigbunny-ph-login-registration__faq-section--dark .page-bigbunny-ph-login-registration__faq-item {
      border-color: #444;
    }

    .page-bigbunny-ph-login-registration__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--text-color-dark);
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-ph-login-registration__faq-section--dark .page-bigbunny-ph-login-registration__faq-question {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__faq-question:hover {
      background-color: #eee;
    }

    .page-bigbunny-ph-login-registration__faq-section--dark .page-bigbunny-ph-login-registration__faq-question:hover {
      background-color: #444;
    }

    .page-bigbunny-ph-login-registration__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-color-dark);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bigbunny-ph-login-registration__faq-section--dark .page-bigbunny-ph-login-registration__faq-question h3 {
      color: var(--text-color-light);
    }

    .page-bigbunny-ph-login-registration__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--accent-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-bigbunny-ph-login-registration__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color-dark);
    }

    .page-bigbunny-ph-login-registration__faq-section--dark .page-bigbunny-ph-login-registration__faq-answer {
      background-color: #2a2a2a;
      color: var(--text-color-light);
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bigbunny-ph-login-registration__hero-title {
        font-size: 2em;
      }

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

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

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

      .page-bigbunny-ph-login-registration__section,
      .page-bigbunny-ph-login-registration__faq-section {
        padding: 20px 15px;
        margin: 15px auto;
      }

      .page-bigbunny-ph-login-registration__steps-grid {
        grid-template-columns: 1fr;
      }

      .page-bigbunny-ph-login-registration__features-list {
        grid-template-columns: 1fr;
      }

      .page-bigbunny-ph-login-registration__feature-item {
        padding: 15px;
      }

      .page-bigbunny-ph-login-registration__feature-content h3 {
        font-size: 1.1em;
      }

      .page-bigbunny-ph-login-registration__feature-content p {
        font-size: 0.9em;
      }

      /* Image responsive styles */
      .page-bigbunny-ph-login-registration img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-bigbunny-ph-login-registration__hero-background,
      .page-bigbunny-ph-login-registration__step-icon,
      .page-bigbunny-ph-login-registration__feature-icon,
      .page-bigbunny-ph-login-registration__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bigbunny-ph-login-registration__hero-section {
        min-height: 350px;
      }

      /* List item responsive styles */
      .page-bigbunny-ph-login-registration__steps-grid,
      .page-bigbunny-ph-login-registration__features-list,
      .page-bigbunny-ph-login-registration__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-bigbunny-ph-login-registration__step-item,
      .page-bigbunny-ph-login-registration__feature-item,
      .page-bigbunny-ph-login-registration__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-bigbunny-ph-login-registration__text-content,
      .page-bigbunny-ph-login-registration__step-description,
      .page-bigbunny-ph-login-registration__feature-content p,
      .page-bigbunny-ph-login-registration__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-bigbunny-ph-login-registration__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

      .page-bigbunny-ph-login-registration__faq-answer {
        padding: 15px 15px !important;
      }
    }
  