@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
body {
  font-family: sans-serif;
  color: #4e4e4e;
  line-height: 1.6;
  margin: 0;
  background-color: #dfdfdf;
}

img {
  vertical-align: top;
}

strong {
  font-weight: bold;
  color: #5081c4;
}

hr {
  border-top: 2px solid #5081c4;
}

ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
}

ol li {
  margin: 0 0 1.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

ol li::before {
  content: counter(my-awesome-counter);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: -0.3em;
  transform: rotate(-10deg);
  background-color: #d09448;
  border-radius: 50%;
  text-align: center;
}

.header {
  background-color: #1b1b1b;
  padding: 10px;
  text-align: center;
}
.header__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__title {
  font-size: 1.5rem;
  margin: 0;
}
.header__logo {
  margin-right: auto;
}
.header__logo img {
  width: 150px;
}

.main {
  max-width: 1000px;
  margin: 0 auto;
}

.section {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 6px;
}
.section__inner {
  padding: 0;
}
.section__title {
  border-radius: 6px 6px 0 0;
  font-size: 1.8rem;
  margin: 0;
  color: white;
  padding: 10px 20px 10px 20px;
  position: relative;
  background-color: #5081c4;
}
.section__title i {
  color: yellow;
  font-size: 50px;
  transform: rotate(-15deg);
}
.section__text {
  margin-bottom: 15px;
}
.section__visual {
  text-align: center;
  margin-bottom: 0px;
}
.section__visual img {
  max-width: 100%;
  height: auto;
}
.section__content {
  max-width: 800px;
  padding: 20px 40px;
  margin: 0 auto;
}
.section__content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #5081c4;
  border-bottom: 1px solid #5081c4;
}
.section__content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.section--top .section__inner {
  padding: 0;
  text-align: center;
}

.center {
  text-align: center;
}

.footer {
  background-color: #eee;
  padding: 10px;
  text-align: center;
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__copyright {
  font-size: 0.8rem;
}

@media (max-width: 599px) {
  .header {
    padding: 15px;
  }
  .header__title {
    font-size: 1.2rem;
  }
  .main {
    padding: 15px;
  }
  .section {
    margin-bottom: 20px;
  }
  .section__inner {
    padding: 15px;
  }
  .section__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .section__text {
    font-size: 0.9rem;
  }
  .section__content {
    padding: 10px;
  }
  .section__content h3 {
    font-size: 1.2rem;
  }
  .section__content h4 {
    font-size: 1rem;
  }
  .footer {
    padding: 8px;
  }
  .footer__copyright {
    font-size: 0.7rem;
  }
}
.button {
  display: block;
  font-weight: bold;
  max-width: 400px;
  min-width: 200px;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #d09448;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s;
  border-bottom: 3px solid #b67a2f;
  border-right: 3px solid #b67a2f;
}
.button:hover {
  background-color: #b67a2f;
}
