/* Начало пользовательского CSS */

/* Заголовки */
h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    color: #777;
    margin-bottom: 15px;
}

/* Обычный текст */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 15px;
}

/* Ссылки */
a {
    color: #0066FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0044CC;
}

/* Списки */
ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

li {
    font-size: 16px;
    color: #777;
    margin-bottom: 5px;
}

/* Кнопки */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #FF6600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FF5500;
}

/* Другие пользовательские стили здесь */

/* === Конец пользовательского CSS === */

