.aboutus {
  padding: 20px;
  background-color: #fff;
  max-width: 1300px;
  margin: 0 auto;
}

.aboutus-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.aboutus-media {
  display: flex;
  justify-content: center;
}

.aboutus-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.aboutus-img-content {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.aboutus-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 0 10px;
}

.aboutus-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.aboutus-description {
  margin-bottom: 15px;
  font-size: 15px;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .aboutus-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
  }

  .aboutus-text {
    width: 55%;
    padding: 0;
  }

  .aboutus-media {
    width: 45%;
    align-self: center;
  }

  .aboutus-title {
    text-align: right;
    font-size: 26px;
  }
}

@media screen and (min-width: 1400px) {
  .aboutus-img-container {
    width: 100%;
  }
}
