.brand-quote {
    background: #000;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
}

.brand-quote-inner {
  display: flex;
  align-items: stretch;
  position: relative;
}

/* LEFT IMAGE */
.brand-quote-image {
    background: #008080;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}
.brand-quote-image img {
  max-width: 220px;
  height: auto;
}

/* RIGHT TEXT */
.brand-quote-content {
  background: #0b1616;
  color: #fff;
  padding: 40px 60px;
  text-align: center;
  font-size: 45px;
  line-height: 1.4;

      width: 70%;
}

/* Decorative squares */
.quote-square {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #008080;
}

.quote-square.top-left {
    top: -6%;
    left: 1.5%;
}
.quote-square.bottom-right {
    bottom: 0px;
    right: 0;
    width: 60px;
    height: 50px;
    z-index: 0;
}


/* ICON CONTAINER */
.brand-strip-left {
  position: relative;
}

/* OUTER TEAL BLOCK (L-shape feel) */
.brand-quote-image::before {
    content: "";
    position: absolute;
    top: -33px;
    left: 0%;
    width: 70px;
    height: 65px;
    background: #007f7a;
}

/* INNER WHITE SQUARE */
.brand-quote-image::after {
    content: "";
    position: absolute;
    top: -23px;
    left: 0.9%;
    width: 46px;
    height: 48px;
    background: #ffffff;
}
.brand-quote-content::before {
     content: "";
    position: absolute;
    bottom: -33px;
    right: 1%;
    width: 70px;
    height: 65px;
    background: #fff;
    z-index: 1;
}
.brand-quote-content::after {
       content: "";
    position: absolute;
    bottom: -23px;
    right: 1.8%;
    width: 46px;
    height: 48px;
    background: #007f7a;
    z-index: 2;
}
/* Responsive */
@media (max-width: 768px) {
  .brand-quote-inner {
    flex-direction: column;
  }

  .brand-quote-content {
    padding: 30px;
    font-size: 20px;
  }

  .quote-square {
    display: none;
  }
}
