.seo-text {
  position: relative;
  border-radius: 18px;
  margin-top: 30px;
  padding: 60px 0;
}

.seo-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 0;
  background-color: transparent;
  background-image: linear-gradient(220deg, #000 0%, #10a9f8 100%);
  opacity: 0.9;
}

.seo-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.seo-content {
  position: relative;
  font-weight: 600;
  padding: 60px 0;
}

.seo-content ol {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 40px;
}

.seo-content ol li {
  position: relative;
  counter-increment: custom-counter;
  margin-bottom: 10px;
  padding-left: 36px;
}

.seo-content ol li::before {
  content: counter(custom-counter);
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 1.08333rem;
  font-weight: 500;
  background-color: var(--accent-blue);
  border-radius: 50%;
  color: #fff;
  box-sizing: border-box;
}

.seo-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-content ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.seo-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  background-color: #4caf50;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 2px;
}

p {
  font-size: 0.95rem;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
}
