
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Each row */
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

/* Reverse layout */
.row.reverse {
  flex-direction: row-reverse;
}

/* Columns */
.col {
  flex: 1;
}

/* Images */
.col.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Text styling */
.col.text h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.col.text p {
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

/* Spacer (your "linebreak") */
.spacer {
  height: 80px;
}

/* Final full-width image */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Responsive layout */
@media (max-width: 768px) {
  .row,
  .row.reverse {
    flex-direction: column;
  }

  .spacer {
    height: 40px;
  }
}
