.two-col-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.two-col-section .row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.two-col-section .row.reverse {
  flex-direction: row-reverse;
}

.two-col-section .col {
  flex: 1;
}

.two-col-section .col.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.two-col-section .col.text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000; /* dark text */
}

.two-col-section .col.text p {
  color: #000; /* dark text */
  line-height: 1.6;
}

@media (max-width: 768px) {
  .two-col-section .row,
  .two-col-section .row.reverse {
    flex-direction: column;
  }
}