/* ============================== */
/*       ABOUT PAGE STYLES        */
/* ============================== */

.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Reverse the order for every other section */
.about-content.reverse {
  flex-direction: row-reverse;
}

.text-side {
  flex: 1;
}

.text-side h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.text-side p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-side ul {
  margin-bottom: 20px;
  list-style: inside disc;
}

.image-side {
  flex: 1;
  text-align: center;
}

.image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
