/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9fafb;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Хедер */
header {
    background-color: #1565c0;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
}

/* Заголовки */
h2 {
    color: #1565c0;
    border-bottom: 3px solid #1565c0;
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 2rem;
}

h3 {
    color: #1e88e5;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Списки с отступами */
ul {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 15px;
    color: #222;
    font-size: 1.05rem;
}

/* Вложенные списки — чуть меньший отступ */
ul ul {
    padding-left: 25px;
    font-size: 1rem;
}

/* Чтобы убрать лишние дефисы "-" из пунктов и сделать список чистым */
ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

/* Можно убрать "-" из текста в li, если они там вручную. Рекомендую их удалить в HTML, но если хочешь, можно оставить стили для визуального чистого вида */

ul li::before {
    content: "•"; /* красивый маркер */
    color: #1565c0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

/* Сильное выделение */
strong {
    color: #0d47a1;
    font-weight: 700;
}

/* Изображение с тенью и центрированием */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 35px auto 40px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Подвал */
footer#hajusrakenduseFooter {
    text-align: center;
    margin-top: 60px;
    padding: 15px 20px;
    background-color: #1565c0;
    color: white;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.1);
    font-size: 1rem;
}
