/* Заголовки */
.article h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 25px;
}

.article h3 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}

.article h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.article h5 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Список — всегда под картинкой с float */
.article ul {
    clear: both;
    list-style: none;
    padding-left: 0;
    color: #fff;
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.article ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Маркер */
.article ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00c8ff;
}

/* Плавный скролл к якорю */
html {
    scroll-behavior: smooth;
}