body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(110deg, #ffffff 20%, #ce4c066a 100%);
}

a {
  color: inherit;
  transition-duration: 0.2s;
}

a:hover {
  opacity: 0.7;
}

br {
  display: block;
}

.container {
  padding-inline: 2rem;
  margin-inline: auto;
  max-width: 1200px;
}

.hero {
  display: flex;
  flex-direction: row;
}

.hero__content {
  font-size: 1.2rem;
}

.hero__title {
  font-size: 3rem;
  transform: scaleY(1.1);
}

.hero__image {
  align-self: flex-end;
}

.hero__image img {
  width: 25vw;
}

.line {
  border: none;
  height: 2px;
  background-color: rgb(0, 0, 0);
  width: 70%;
  margin: 5rem auto;
  border-radius: 1px;
  opacity: 0.5;
}

.ul-list li {
  margin-bottom: 1rem;
}

.page-section {
  background-color: #ffffffe0;
  border-radius: 25px;
  box-shadow: 0 2px 26px rgba(0, 0, 0, 0.25);
  padding-block: 1rem;

  font-size: 1.1rem;
}

.text-row {
  display: block;
  padding: 0.2rem 0.5rem;
}

.page-section__image {
  text-align: center;
  padding: 2rem;
}

.page-section__image img {
  width: 20rem;
  height: auto;
}

.final {
  font-size: 1.6rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  margin-bottom: 4rem;

  text-align: center;
}

.final__title {
  text-align: center;
}

.final__img img {
  width: 15rem;
  height: auto;
}

.final__text {
  text-align: center;
}

.final-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-list li {
  text-transform: uppercase;
  font-weight: 600;
}

.final-list li::after {
  content: " ○ ";
  color: #ff7e39fe;
}

.cta-btn {
  border-radius: 25px;
  padding: 1rem;
  border: 1px solid #ff7e39fe;
  background: #ff7e39fe;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;

  text-wrap: wrap;
}

.cta-btn:hover {
  background-color: #ff7e39fe;
  color: white;

  box-shadow: 0 2px 26px rgba(0, 0, 0, 0.25);
}

.section-intro__image {
  text-align: center;
  margin: 4rem;
}

.section-intro__image img {
  width: 25vw;
  height: auto;
}

.section-intro__title {
  font-size: 3rem;
  text-align: center;
}

.list-table {
  padding-inline: 2rem;
  margin: 1rem;
  border-radius: 15px;
  width: fit-content;
  box-shadow: 0 2px 26px rgba(0, 0, 0, 0.25);
}

table {
  border-collapse: collapse;
}

th {
  padding: 1rem;
}

td {
  padding: 1rem;
  border: none;
  background: none;
}

@media (max-width: 769px) {
  .hero {
    flex-direction: column;
  }

  .hero__content {
    font-size: 1rem;
  }

  .hero__image {
    align-self: center;
  }

  .hero__image img {
    width: 50vw;
  }

  .hero__title {
    font-size: 2rem;
    transform: scaleY(1.1);
  }

  .page-section {
    font-size: 1rem;
  }

  .page-section__image img {
    width: 10rem;
  }

  .final {
    font-size: 1.2rem;
  }
}

@media (max-width: 500px) {
  .container {
    padding-inline: 1rem;
  }
  .page-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-intro__image img {
    width: 50vw;
  }

  .section-intro__title {
    font-size: 2rem;
  }

  .list-table {
    padding-inline: 1rem;
  }

  th {
    padding: 0.5rem;
  }

  td {
    padding: 0.5rem;
    border: none;
    background: none;
  }
}
