body {
    background: #FAFBFD;
    color: #000; /* Чёрный текст */
    display: flex;
    flex-direction: column;
}
.header {
    background-color: #000;
    color: #fff;
}
.footer {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
}
html, body {
    height: 100%;
}

main {
    flex-grow: 1;
}
.logo a{
    color: unset;
    text-decoration: unset;
}
.btn{
    background-color: #000;
    border-color: #000;
}
a{
    text-decoration: unset;
}
.ad-sidebar {
    background-color: #f8f9fa; /* Светло-серый фон для боковых колонок */
    padding: 1rem;
}
.main-content {
    background-color: #fff; /* Белый фон для центральной колонки */
    padding: 1rem;
}
.text-banner {
    background-color: #ced4da; /* Серый фон для баннера */
    padding: 2rem;
    text-align: center;
    font-weight: bold;
}

/* Общий стиль */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #222;
    padding: 20px;
    min-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Сетка для колонок на десктопе */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-section h6 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.menu-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 4px 0;
}

.menu-section a:hover {
    color: #fff;
}

/* Кнопка закрытия для мобильной версии */
.close-btn {
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ====== Мобильная адаптация ====== */
@media (max-width: 1000px) {
    .dropdown-menu {
        display: none !important;
        position: fixed;
        top: 60px; /* высота шапки, можно подстроить */
        left: 0;
        width: 100%;
        height: calc(100% - 60px); /* чтобы шапка оставалась видимой */
        min-width: auto;
        background: #222;
        padding: 20px;
        overflow-y: auto;
        border-top: 1px solid #444;
        border-radius: unset;
    }

    .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .menu-grid {
        display: block;
    }

    .menu-section {
        margin-bottom: 20px;
    }

    .close-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }
}


/* Обёртка для контента с типографикой */
.typography {
    color: var(--bs-body-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* Заголовки */
.typography h1,
.typography h2,
.typography h3,
.typography h4 {
    font-weight: 700;
    line-height: 1.25;
    margin: 1.2em 0 0.6em;
    color: var(--bs-emphasis-color, var(--bs-body-color));
}

.typography h1 { font-size: clamp(1.875rem, 1.2rem + 2vw, 2.5rem); }
.typography h2 { font-size: clamp(1.5rem, 1.05rem + 1.5vw, 2rem); }
.typography h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); }
.typography h4 { font-size: 1.125rem; }

/* Параграфы */
.typography p {
    margin: 0 0 1rem;
}

/* Списки */
.typography ul,
.typography ol {
    margin: 0 0 1rem 0;
    padding-left: 1.25rem; /* чуть короче, чем стандартный 1.5rem */
}

.typography li {
    margin: 0.3rem 0;
}

.typography ul ul,
.typography ul ol,
.typography ol ul,
.typography ol ol {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.typography ul { list-style: disc; }
.typography ul ul { list-style: circle; }
.typography ul ul ul { list-style: square; }

.typography ol { list-style: decimal; }
.typography ol ol { list-style: lower-alpha; }
.typography ol ol ol { list-style: lower-roman; }

/* Ссылки внутри текста */
.typography a {
    color: var(--bs-link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.typography a:hover {
    color: var(--bs-link-hover-color);
}

/* Цитаты (опционально, на вкус) */
.typography blockquote {
    margin: 1rem 0;
    padding: .75rem 1rem;
    border-left: 4px solid var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), .05);
    border-radius: .25rem;
}

/* Инлайн-код */
.typography code:not(.cm-content *) {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .95em;
    background: var(--bs-tertiary-bg);
    color: var(--bs-emphasis-color);
    padding: .15rem .35rem;
    border-radius: .25rem;
    border: 1px solid var(--bs-border-color);
}

