.about-page {
  padding: 50px 0;
}

.about-page h2 {
  font-size: 1.75rem;
  margin: 0 230px 0;
}

.our-approach {
  background-color: #F7F3ED;
  padding: 100px 0;
  border-radius: 20px;
}

.approach-image figure {
  display: block;
  border-radius: 20px;
}

.approach-image img {
  width: 100%;
  aspect-ratio: 1 / 0.705;
  object-fit: cover;
  border-radius: 20px;
}

.approach-list-box {
  margin-left: 15px;
}

.approach-list-box .approach-image img {
  aspect-ratio: 1 / 0.563;
}

.approach-list {
  margin-top: 40px;
}

.approach-list-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.approach-list-item:last-child {
  margin-bottom: 0;
}

.approach-list-item .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #8E714F;
  border-radius: 50%;
  margin-right: 20px;
}

.approach-list-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #5A5044;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.approach-list-item:hover .icon-box::before {
  transform: scale(1);
}

.approach-list-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.approach-list-content {
  width: calc(100% - 70px);
}

.approach-list-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.approach-list-content p {
  margin-bottom: 0;
}

/* Máy tính bảng */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-page h2 {
    margin: 0 50px;
  }

  .our-approach {
    padding: 80px 0;
  }

  .approach-image figure {
    margin-bottom: 40px;
  }

  .approach-list-item {
    flex-direction: row;
    align-items: center;
  }

  .approach-list-item .icon-box {
    margin-right: 30px;
  }

  .approach-list-content {
    width: calc(100% - 80px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-page h2 {
    margin: 0 20px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .approach-image figure {
    margin-bottom: 30px;
  }

  .approach-list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .approach-list-item .icon-box {
    margin-bottom: 15px;
  }

  .approach-list-content {
    width: 100%;
  }
}