.download-brochure {
  background-color: #e9f7f3;
  padding: 32px 45px;
}
.download-brochure__container {
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ centers content horizontally */
  gap: 40px;
}
.download-brochure__image img {
  max-width: 108px;
  max-height: 140px;
  height: auto;
  display: block;
}
.download-brochure__content {
  max-width: 431px;
  display: flex;
  flex-direction: column;
  align-items: left;     /* ✅ centers button under text */
  text-align: left;
}
.download-brochure__headline {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #58595B;
  margin-bottom: 20px;
}
.download-brochure__cta {
  align-items: center;
  background-color: #028447;
  border-radius: 50px;
  color: #fff;
  display: flex;
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  justify-content: center;
  line-height: 38px;
  max-width: 250px;
  min-width: 200px;
  padding: 6px 16px 6px 25px;
  text-align: center;
  text-decoration: none;
  text-wrap: wrap;
  width: auto;
  text-transform: uppercase;
}
.download-brochure__cta:visited {
  color: #fff;
}
.download-brochure__cta::after {
  content: '';
  background: url("../../assets/icons/white-arrow-right.png") no-repeat;
  display: inline-block;
  width: 31px;
  height: 23px;
  background-size: contain;
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .download-brochure__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .download-brochure__image img {
    margin: 0 auto;        /* ✅ centers image */
  }
  .download-brochure__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .download-brochure__headline .mob-width {
    max-width: 285px;
  }
  .download-brochure__button {
    margin-top: 16px;
  }
}