* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-indent: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgb(238, 86, 91) 0%, rgb(230, 12, 166) 98%, rgb(230, 12, 166) 100%);
    font-family: 'TT Norms', sans-serif;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.logo-container {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    text-align: center;
}

.logo-container a {
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    transition: all .25s ease-in-out;
    font-size: 14px;
    margin-top: 10px;
}

.logo-container a:hover {
    color: #fff;
}

.logo-container svg {
    width: 100%;
    height: 100%;
}

.content-container {
    background-color: white;
    border-radius: 8px;
    padding: 40px 64px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    line-height: 1.6;
}

/* Заголовки */
h1 {
    color: #333;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.2;
    font-size: 28px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    margin: 35px 0 20px 0;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
noindex {}

h3 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    color: #444;
    font-weight: 600;
}

/* Параграфы */
p {
    color: #555;
    line-height: 1.35;
    font-size: 16px;
    margin: 15px 0;
    text-align: left;
    word-wrap: break-word;
}

/* Ссылки */
a {
    color: rgb(230, 12, 166);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

p a {
    border-bottom: 1px dotted rgb(230, 12, 166);
}

p a:hover {
    color: rgb(238, 86, 91);
    border-bottom-color: rgb(238, 86, 91);
}

/* Специальная ссылка для скачивания */
.content-container > p:first-child a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #e60ca6;
    color: white;
    border-radius: 3px;
    margin-bottom: 25px;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    background:linear-gradient(to right, rgb(238, 86, 91) 0%, rgb(230, 12, 166) 98%, rgb(230, 12, 166) 100%)
}

.content-container > p:first-child a:hover {
    background-color: #ee565b;
    color: white;
}

/* Списки */
ul, ol {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

/* Элементы без переноса */
nobr {
    white-space: nowrap;
}

/* Жирный текст */
strong, b {
    font-weight: 600;
    color: #444;
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .content-container {
        padding: 25px;
        margin: 0 10px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }
    
    h3 {
        font-size: 18px;
        margin: 20px 0 12px 0;
    }
    
    p, li {
        font-size: 15px;
    }
    
    ul, ol {
        padding-left: 20px;
    }
    
    .content-container > p:first-child a {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }
    
    .content-container {
        padding: 20px;
        margin: 0 5px;
        border-radius: 6px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 19px;
    }
    
    p, li {
        font-size: 14px;
        text-align: left;
    }
    
    ul, ol {
        padding-left: 18px;
    }
    
    .logo-container {
        width: 100px;
        margin-bottom: 20px;
    }
}

/* Улучшение читаемости для длинного контента */
.content-container > *:not(:last-child) {
    margin-bottom: 15px;
}

.document-info {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}
noindex {
    white-space: nowrap
}