#seo-block {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.seo-block__text--wrapper {
    padding: 30px;
    background-color: var(--background-secondary);
    border-radius: 30px;
    border: 1px solid var(--background-thirdly);
}
.seo-block__text {
    padding-right: 95px;
    max-height: 388px;
    overflow-y: auto;
    height: 100%;
}
.seo-block__text * {
    margin-bottom: 15px;
}
.seo-block__text *:last-child {
    margin-bottom: 0;
}
.seo-block__text h2,
.seo-block__text h3,
.seo-block__text h4,
.seo-block__text h5,
.seo-block__text h6 {
    margin-bottom: 10px;
    color: var(--head-primary);
    font-weight: 500;
    line-height: 100%;
    font-size: var(--font-size-18-26);
}
.seo-block__text p {
    color: var(--main-text-primary);
    font-size: var(--font-size-18-24);
    font-weight: 400;
    line-height: 120%;
}
.seo-block__text li {
    margin-bottom: 10px;
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--main-text-primary);
}
.seo-block__text ol li {
    list-style: decimal;
    list-style-position: inside;
}
.seo-block__text ul li {
    position: relative;
    padding-left: 20px;
}
.seo-block__text ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.seo-block__text--wrapper {
    width: 100%;
    max-width: 880px;
}
.seo-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}
.seo-block__image--wrapper {
    width: 100%;
    max-width: 620px;
}
@media (max-width: 1024px) {
    .seo-block__text {
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    #seo-block {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .seo-block__image--wrapper {
        max-width: 100%;
    }
    .seo-block__text--wrapper {
        padding: 15px;
    }
    .seo-block__image {
        max-height: 300px;
    }
}