.about {
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  color: #001c0e;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1f1f0;
}

.about h3 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 48px;
}

.about .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about .row {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.about .image {
  width: 45%;
  min-width: 45%;
}

.about .image img {
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.about .text {
  width: 55%;
  min-width: 55%;
  display: flex;
  align-items: center;
}

.about .text span {
  text-align: justify;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  width: 100%;
  padding: 0 1em;
}

.about .text span h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.about .text span ul {
  list-style: initial;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
    padding: 0 24px;
  }

  .about .row:nth-child(odd) {
    flex-direction: column-reverse;
  }

  .about .image {
    width: 100%;
  }

  .about .text {
    width: 100%;
    padding-left: 0;
    margin-top: 12px;
  }
}
