.about-section {
  background-color: #fefaf8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.about-section .container {
  background-color: #fefaf8;
}

.about-title {
  margin-bottom: 1rem;
}

.about-item {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-left,
.about-list {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: start;
  text-align: left;
  font-size: 1rem;
}
.about-left {
  gap: 3rem;
}
.about-list {
  gap: 1rem;
}
.about-image {
  overflow: hidden;
  height: 100%;
}

.list-item:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/arrow_right_ul.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .about-item {
    grid-template-columns: 1fr;
  }

  .about-left {
    order: 1;
  }

  .about-image {
    order: 2;
    width: 100%;
    height: auto;
  }
}
