  #red-border-section {
	border: 1px solid #b70000;
	padding: 1rem;
	margin-bottom: 2rem;
}

#red-border-section ul {
	margin-bottom: 0;
}

.flex-section {
  display: flex;
  margin-bottom: 1rem;
}

.column {
  padding: 1rem;
  box-sizing: border-box;
}

.small-column {
  flex: 1; /* Represents one part of the total space */
  display: flex;
  align-items: center;
}

.small-column img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 350px;
}

.large-column {
  flex: 4; /* Represents two parts of the total space */
}

@media (max-width: 768px) {
  .flex-section {
	flex-direction: column; /* Stack columns vertically */
  }

  .small-column,
  .large-column {
	flex: none; /* Reset flex for equal width */
  }
}