.brand-box {
  width: 90%;
  max-width: 900px;        /* controls the width */
  height: 280px;           /* you can change the height */
  margin: 40px auto;       /* center it */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-image: url("images/lipbanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); 
}

.brand-box-content {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
}

.brand-box-content h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.brand-box-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
  .brand-box {
    height: 220px;
  }
  .brand-box-content h1 {
    font-size: 1.7rem;
  }
  .brand-box-content p {
    font-size: 0.95rem;
  }
}
