 /* For section of code where we have text on left side and image on right side */
.highlight-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 950px;
  margin: 40px auto;
  padding: 24px;
  background: #fffbe7;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(140,140,150,.09);
}
.text-side {
  flex: 1 1 340px;
  margin-right: 36px;
  min-width: 260px;
}
.text-side h2 {
  color: #3e298c;
  margin-bottom: 16px;
}
.image-side {
  flex: 0 0 300px;
  text-align: center;
}
.image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(110,110,110,0.08);
}
.image-side h3 {
  margin-top: 15px;
  color: #52369f;
  font-weight: bold;
  font-size: 1.1em;
}
@media (max-width: 780px) {
  .highlight-section .container {
    flex-direction: column;
    text-align: left;
    padding: 16px;
  }
  .text-side {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .image-side {
    width: 100%;
    text-align: center;
  }
}
