/* === ЯДЕРНЫЙ СБРОС — в самом начале === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: #ffffff !important;
    background-image: none !important;
    overflow-x: hidden;
}

/* Уничтожаем псевдоэлементы */
*::before,
*::after {
    content: none !important;
    display: none !important;
}

/* === ОБЕРТКА === */
#landing-isolated-wrapper {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* === КОНТЕНТ === */
#landing-isolated-wrapper article {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

#landing-isolated-wrapper h1 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: normal;
}

#landing-isolated-wrapper .entry-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
}

#landing-isolated-wrapper .entry-content p {
    margin: 0 0 15px 0;
}

#landing-isolated-wrapper .entry-content ul,
#landing-isolated-wrapper .entry-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

#landing-isolated-wrapper .entry-content li {
    margin-bottom: 8px;
}

/* === ССЫЛКИ === */
#landing-isolated-wrapper a {
    color: #0066cc;
    text-decoration: none;
}
#landing-isolated-wrapper a:hover {
    text-decoration: underline;
}

/* === ИЗОБРАЖЕНИЯ === */
#landing-isolated-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border: none !important;
    box-shadow: none !important;
}

/* === ФУТЕР (если нужен) === */
#landing-isolated-wrapper footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #666;
}