
    :root {
      --page-bit-primary-color: #0a2d52; /* Dark blue */
      --page-bit-secondary-color: #f7b32b; /* Gold/Yellow */
      --page-bit-accent-color: #e04e39; /* Reddish orange */
      --page-bit-text-color: #ffffff;
      --page-bit-dark-text-color: #333333;
      --page-bit-background-dark: #071e3d;
      --page-bit-background-light: #1a3a5e;
      --page-bit-border-color: #3a5f8a;
    }

    .page-bit {
      font-family: 'Arial', sans-serif;
      color: var(--page-bit-text-color);
      background-color: var(--page-bit-background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-bit__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
      background-color: var(--page-bit-background-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-bit__section--dark {
      background-color: var(--page-bit-background-dark);
    }

    .page-bit__header-title {
      font-size: 2.5em;
      color: var(--page-bit-secondary-color);
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bit__header-subtitle {
      font-size: 1.2em;
      color: var(--page-bit-text-color);
      margin-bottom: 30px;
    }

    .page-bit__promo-link {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-bit-accent-color);
      color: var(--page-bit-text-color);
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-bit__promo-link:hover {
      background-color: #c73e2c;
      transform: translateY(-2px);
    }

    /* Fixed Register/Login Buttons */
    .page-bit__fixed-buttons {
      position: fixed;
      top: 10px; /* Adjusted to be below header, assuming header is ~60-80px */
      right: 15px;
      display: flex;
      gap: 10px;
      z-index: 1000; /* Ensure it floats above other content */
    }

    .page-bit__fixed-button {
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-bit__fixed-button--register {
      background-color: var(--page-bit-secondary-color);
      color: var(--page-bit-dark-text-color);
    }

    .page-bit__fixed-button--login {
      background-color: #4a6fa5; /* A lighter blue */
      color: var(--page-bit-text-color);
    }

    .page-bit__fixed-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-bit__content-wrapper {
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-bit__heading {
      color: var(--page-bit-secondary-color);
      font-size: 2em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-bit__text {
      color: var(--page-bit-text-color);
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-bit__image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-bit__image-item {
      width: 100%; /* Default to full width on mobile */
      max-width: 400px; /* Max width for individual image items */
      box-sizing: border-box;
      background-color: var(--page-bit-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-bit-border-color);
    }

    .page-bit__image-item:hover {
      transform: translateY(-5px);
    }

    .page-bit__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-bit__image-caption {
      padding: 15px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-bit-secondary-color);
    }

    .page-bit__features-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-bit__feature-item {
      background-color: var(--page-bit-background-dark);
      border: 1px solid var(--page-bit-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box;
      transition: background-color 0.3s ease, transform 0.3s ease;
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word;
    }

    .page-bit__feature-item:hover {
      background-color: #1a426e;
      transform: translateY(-3px);
    }

    .page-bit__feature-title {
      color: var(--page-bit-secondary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-bit__feature-description {
      color: var(--page-bit-text-color);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-bit__faq-section {
      background-color: var(--page-bit-background-light);
      border-radius: 8px;
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-bit__faq-heading {
      color: var(--page-bit-secondary-color);
      font-size: 2em;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-bit__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-bit-border-color);
      border-radius: 8px;
      overflow: hidden;
    }

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

    .page-bit__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
      text-align: left;
    }

    .page-bit__faq-question:hover {
      background-color: #1a426e;
    }

    .page-bit__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-bit-secondary-color);
      pointer-events: none; /* Prevent toggle from intercepting click */
      transition: transform 0.3s ease;
    }

    .page-bit__faq-item.active .page-bit__faq-toggle {
      transform: rotate(45deg);
    }

    .page-bit__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      background-color: var(--page-bit-background-dark);
      color: var(--page-bit-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-bit__faq-item.active .page-bit__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bit__header-title {
        font-size: 1.8em;
      }

      .page-bit__header-subtitle {
        font-size: 1em;
      }

      .page-bit__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bit__fixed-buttons {
        top: 60px; /* Adjust for smaller header on mobile */
        right: 10px;
        gap: 5px;
      }

      .page-bit__fixed-button {
        padding: 6px 10px;
        font-size: 0.8em;
      }

      .page-bit__section {
        padding: 30px 15px;
      }

      .page-bit__heading {
        font-size: 1.6em;
      }

      .page-bit__text {
        font-size: 0.9em;
      }

      .page-bit__image-item {
        max-width: 100%;
      }

      .page-bit__features-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-bit__feature-item {
        flex: 1 1 100%;
        width: 100% !important; /* Force full width */
        max-width: 100% !important; /* Ensure it doesn't exceed */
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-bit__feature-title {
        font-size: 1.2em;
      }

      .page-bit__faq-section {
        padding: 30px 15px;
      }

      .page-bit__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-bit__faq-answer {
        padding: 0 15px;
      }

      .page-bit__faq-item.active .page-bit__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive rules */
      .page-bit__image-gallery img,
      .page-bit__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bit__image-gallery,
      .page-bit__image-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (min-width: 769px) {
      .page-bit__image-item {
        flex: 1 1 calc(33.333% - 20px); /* 3 items per row */
      }
      .page-bit__feature-item {
        flex: 1 1 calc(33.333% - 40px); /* 3 items per row on desktop */
      }
    }
  