/* Layout */

.sub-section-flex {
  display: flex;
  flex-direction: row;
  column-gap: 48px;
  margin: 48px auto;
}

.sub-section-col {
  flex: 1; /*equal flex items size*/
  margin: 0;
  /* padding: 10px; */
}

/* List Styling */
.highlight-item {
  color: rgb(85, 157, 196);
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 4px;
  list-style: none;
  font-size: 24px;
}

/* Media Query for screens up to 768px wide */
/* @media screen and (max-width: 768px) {
  
} */

/* Responsive styles */
@media (max-width: 1100px) {
  .container {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sub-section-flex {
    flex-direction: column;
    padding-left: 0px;
  }
}
