.section2-content {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section2-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section2-row.reverse {
  flex-direction: row-reverse !important;
}

.section2-col {
  flex: 1 1 50%;
  min-width: 300px;
  width: 100%;
}

.image-col img.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 10px var(--background-dark);
}

.text-col {
  font-size: 1.1rem;
  line-height: 1.6;
}

.text-col h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-col ul {
  padding-left: 1.5rem;
  list-style: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section2-row {
    flex-direction: column !important;
  }
}