/* === Base Layout === */
body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background-color: #ffffff;
  color: #222;
}

.site-container {
  width: 80%;
  max-width: 1200px;
  min-width: 800px;
  margin: 0 auto;
}

/* === Page Content === */
.page-content {
  padding: 30px 20px;
}

/* === Alternating Info Section === */
.info-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.info-image,
.info-text {
  flex: 1;
  min-width: 280px;
}

.info-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Control order of elements */
.info-row .info-image {
  order: 1;
}

.info-row .info-text {
  order: 2;
}

.info-row.alt .info-image {
  order: 2;
}

.info-row.alt .info-text {
  order: 1;
}

.info-text {
  text-align: center;
  padding: 0 20px;
}

.info-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.info-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}


