<style>
/* Основные настройки */
body {
font-size: 18px;
line-height: 1.5;
color: rgba(0, 0, 0, 0.75);
background-color: #fff7f7;
font-family: Arial, Helvetica, sans-serif;
}

p {
margin-bottom: 16px;
font-size: 18px;
}

/* Заголовки */
body h1, body h2 {
font-weight: 700;
color: #000;
position: relative;
padding-bottom: 12px;
margin-bottom: 20px;
}

body h1 {
font-size: 40px;
}

body h2 {
font-size: 32px;
}

body h1::after,
body h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background-color: #e00000;
}

body h3:not(.faq h3) {
font-size: 26px;
margin: 15px 0 12px;
font-weight: 500;
color: #000;
}

body h4:not(.faq h4) {
font-size: 24px;
margin: 15px 0 10px;
font-weight: 500;
color: #000;
}

body h3:not(.faq h3)::before,
body h4:not(.faq h4)::before {
content: '';
display: none; /* отключаем маркер */
}

/* Списки */
body ul:not(footer ul),
body ol:not(footer ol) {
padding-left: 20px;
margin-bottom: 25px;
}

body ul:not(footer ul) {
list-style-type: square;
}

body ol:not(footer ol) {
list-style-type: decimal;
}

body ul:not(footer ul) li,
body ol:not(footer ol) li {
margin-bottom: 12px;
line-height: 1.4;
font-size: 18px;
color: rgba(0, 0, 0, 0.75);
}

/* Ссылки */
body a {
color: #e00000;
text-decoration: none;
transition: color 0.2s ease, text-decoration 0.2s ease;
}

body a:hover {
color: #f82b2b;
text-decoration: underline;
}

/* Вспомогательные классы */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Адаптив */
@media screen and (max-width: 768px) {
body { font-size: 16px; }
p { font-size: 16px; }
body h1 { font-size: 32px; }
body h2 { font-size: 26px; }
body h3:not(.faq h3) { font-size: 20px; }
body h4:not(.faq h4) { font-size: 18px; }
}

@media screen and (max-width: 480px) {
body { font-size: 14px; }
p { font-size: 16px; }
body h1 { font-size: 28px; }
body h2 { font-size: 22px; }
body h3:not(.faq h3),
body h4:not(.faq h4) { font-size: 18px; }
}
</style>