
    :root {
      --page-shbest__primary-color: #007bff;
      --page-shbest__secondary-color: #6c757d;
      --page-shbest__accent-color: #28a745;
      --page-shbest__background-light: #f8f9fa;
      --page-shbest__background-dark: #343a40;
      --page-shbest__text-dark: #212529;
      --page-shbest__text-light: #ffffff;
      --page-shbest__border-color: #dee2e6;
      --page-shbest__hover-color: #0056b3;
    }

    .page-shbest {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-shbest__text-dark);
      background-color: var(--page-shbest__background-light);
      padding-bottom: 50px; /* Ensure space for footer */
      position: relative;
    }

    .page-shbest__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 120px; /* Desktop fixed header compensation */
      background-color: var(--page-shbest__background-dark);
      color: var(--page-shbest__text-light);
      text-align: center;
    }

    .page-shbest__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }

    .page-shbest__hero-content {
      position: relative;
      z-index: 10;
      padding: 30px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-shbest__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-shbest__text-light);
    }

    .page-shbest__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-shbest__button {
      display: inline-block;
      background-color: var(--page-shbest__accent-color);
      color: var(--page-shbest__text-light);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-shbest__button:hover {
      background-color: #218838;
      color: var(--page-shbest__text-light);
    }

    .page-shbest__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107; /* Eye-catching yellow */
      color: var(--page-shbest__text-dark);
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 100;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
      border: none;
      cursor: pointer;
    }

    .page-shbest__floating-login-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
      color: var(--page-shbest__text-dark);
    }

    .page-shbest__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: var(--page-shbest__background-light);
    }

    .page-shbest__section--dark {
      background-color: var(--page-shbest__background-dark);
      color: var(--page-shbest__text-light);
    }

    .page-shbest__section h2 {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-shbest__primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-shbest__section--dark h2 {
      color: var(--page-shbest__accent-color);
    }

    .page-shbest__section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-shbest__accent-color);
      border-radius: 2px;
    }

    .page-shbest__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

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

    .page-shbest__card {
      background-color: var(--page-shbest__text-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-shbest__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-shbest__card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
    }

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

    .page-shbest__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-shbest__card-content h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-shbest__primary-color);
    }

    .page-shbest__card-content p {
      font-size: 0.95em;
      color: var(--page-shbest__secondary-color);
      margin-bottom: 15px;
    }

    .page-shbest__card-link {
      display: inline-block;
      color: var(--page-shbest__primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      margin-top: auto; /* Push to bottom */
    }

    .page-shbest__card-link:hover {
      color: var(--page-shbest__hover-color);
    }

    .page-shbest__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-shbest__logo-item {
      padding: 15px;
      background-color: var(--page-shbest__text-light);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px; /* Ensure logos have enough space */
      transition: transform 0.2s ease;
    }

    .page-shbest__logo-item:hover {
      transform: scale(1.05);
    }

    .page-shbest__logo-image {
      max-width: 100%;
      max-height: 80px; /* Max height for logos */
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .page-shbest__list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-shbest__list-item {
      background-color: var(--page-shbest__text-light);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1em;
      color: var(--page-shbest__text-dark);
      border-left: 5px solid var(--page-shbest__primary-color);
    }

    .page-shbest__list-item::before {
      content: '✔';
      color: var(--page-shbest__accent-color);
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-shbest__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-shbest__faq-item {
      background-color: var(--page-shbest__text-light);
      border: 1px solid var(--page-shbest__border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-shbest__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #e9ecef;
      font-weight: bold;
      font-size: 1.1em;
      color: var(--page-shbest__primary-color);
      transition: background-color 0.3s ease;
    }

    .page-shbest__faq-question:hover {
      background-color: #dfe2e6;
    }

    .page-shbest__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-shbest__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-shbest__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-shbest__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;
      color: var(--page-shbest__text-dark);
    }

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

    .page-shbest__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-shbest__payment-item {
      background-color: var(--page-shbest__text-light);
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
      transition: transform 0.2s ease;
    }

    .page-shbest__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-shbest__payment-logo {
      max-width: 100%;
      max-height: 60px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-shbest__hero-section {
        padding-top: 100px; /* Mobile fixed header compensation */
      }

      .page-shbest__hero-content h1 {
        font-size: 2em;
      }

      .page-shbest__hero-content p {
        font-size: 1em;
      }

      .page-shbest__section {
        padding: 40px 15px;
      }

      .page-shbest__section h2 {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-shbest__text-content {
        font-size: 1em;
      }

      .page-shbest__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-shbest__logo-grid,
      .page-shbest__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }

      .page-shbest__card-image-wrapper {
        height: 180px;
      }

      .page-shbest__card-content h3 {
        font-size: 1.2em;
      }

      .page-shbest__list-item {
        font-size: 1em;
        padding: 12px 15px;
      }

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

      .page-shbest__faq-question h3 {
        font-size: 1em;
      }

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

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

      .page-shbest__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Enforce image responsive styles with !important for mobile */
    @media (max-width: 768px) {
        .page-shbest img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-shbest__card-image,
        .page-shbest__logo-image,
        .page-shbest__payment-logo,
        .page-shbest__hero-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-shbest__card-image-wrapper,
        .page-shbest__logo-item,
        .page-shbest__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    /* General image container and image styles */
    .page-shbest img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-shbest__card-image-wrapper,
    .page-shbest__logo-item,
    .page-shbest__payment-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

  