.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.brand-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}
.logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.bg-change:hover {
  font-weight: bold !important;

  text-decoration: underline;

  color: #b30000; /* deep red text */
}

a:hover {
  font-weight: bolder;
}
/* Parent container for positioning */
#box-suggestion {
  position: relative;
}
#suggestions {
  display: block; /* Force visible for testing */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}
#suggestions li {
  padding: 8px;
  cursor: pointer;
}
#suggestions li:hover {
  background: #f0f0f0;
}
