.mean-container .mean-bar::before {
  content: ""; /* No text content needed */
  background-image: url('https://alphalibrallc.com/wp-content/uploads/2025/01/cropped-alpha-libra-high-resolution-logo-1.png'); /* Replace with the path to your logo */
  background-size: contain; /* Adjust the size of the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  width: 100px; /* Set the width of the logo */
  height: 40px; /* Set the height of the logo */
  position: absolute;
  left: 10px;
  top: 17px;
}

.logo img {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
    width: 80%; /* Adjust this percentage to make it smaller */
    display: block; /* Ensure images are block elements */
    margin: 0 auto; /* Center the logo */
}