.my-section {
  width: 100%;
  height: 1220px;
  position: relative;
  overflow: hidden;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 섹션 크기에 맞게 채움 (비율 유지) */
}

.two-columns {
  display: flex;
  justify-content: center; /* 양쪽 정렬 */
  align-items: center;     /* 세로 중앙 정렬 (필요 시) */
  height: 600px;           /* 섹션 높이 */
  gap: 40px;               /* 좌우 간격 */
}

.left-column, .right-column {
  flex: 1;                 /* 각각 50% 너비 */
  text-align: center;      /* 텍스트 중앙 정렬 (좌우 정렬도 가능) */
}