/* Ensure the image scales responsively */
.logo-img {
  width: 100%; /* Makes the image scale to the parent container's width */
  height: auto; /* Maintains the aspect ratio of the image */
  max-width: 150px; /* You can adjust the max width according to your design */
}

/* Optionally, style the logo container */
.logo {
  display: flex;
  align-items: center;
}
