.main-section {
  background-color: var(--white);
  min-height: calc(100dvh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section > div {
  max-width: 1000px;
  display: flex;
  gap: 2rem;
  padding: 1rem;
}
.main-section > div > div:first-of-type {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section > div > div:first-of-type > img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.main-section > div > div:nth-of-type(2) > h1 {
  font-size: 2.4rem;
}
.main-section > div > div:nth-of-type(2) > p,
.main-section > div > div:nth-of-type(2) > h1 {
  margin: 0;
}
.main-section > div > div:nth-of-type(2) > p:first-of-type {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.main-section > div > div:nth-of-type(2) > p:nth-of-type(2) {
  font-size: 1rem;
  color: var(--gray-2);
}
.main-section > div > div:nth-of-type(2) > p:nth-of-type(3) {
  margin: 1rem 0;
  font-size: 1rem;
  color: var(--black);
  max-width: 450px;
}
.main-section > div > div:nth-of-type(2) > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.main-section > div > div:nth-of-type(2) > ul > li {
  font-size: 0.8rem;
  color: var(--gray-2);
}
.main-section > div > div:nth-of-type(2) > ul > li > a {
  font-size: 0.8rem;
  color: var(--gray-2);
}
@media screen and (width <= 767px) {
  .main-section > div {
    flex-direction: column;
  }
  .main-section > div > div {
    width: 100% !important;
  }
  .main-section > div > div:first-of-type > img {
    width: min(220px, 100%);
  }
  .main-section > div > div:nth-of-type(2) {
    text-align: center;
  }
  .main-section > div > div:nth-of-type(2) > h1 {
    font-size: 1.8rem;
  }
  .main-section > div > div:nth-of-type(2) > p:first-of-type {
    font-size: 1.2rem;
  }
  .main-section > div > div:nth-of-type(2) > p:nth-of-type(2) {
    font-size: 0.8rem;
    margin-top: 0.2rem;
  }
  .main-section > div > div:nth-of-type(2) > p:nth-of-type(3) {
    font-size: 0.8rem;
  }
}
