/* ====== Сброс базовых стилей ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f5f8fc;
    color: #1f2937;
}

/* ====== Общая структура ====== */
body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 40px 20px;
}

/* ====== Шапка сайта ====== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 32px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5eaf1;
}

/* Левая часть */
.left-nav {
    display: flex;
    align-items: center;
}

.nav-landing {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
}

/* Правая часть */
.left-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.left-right a {
    text-decoration: none;
    font-size: 15px;
    color: #1f2937;
    transition: color 0.2s ease;
}

.left-right a:hover {
    color: #2563eb;
}

/* Кнопка "Демо" */
.nav-demo {
    padding: 8px 16px;
    background-color: #2563eb;
    color: #ffffff !important;
    border-radius: 6px;
}

.nav-demo:hover {
    background-color: #1e40af;
}

/* ====== Подвал сайта ====== */
footer {
    background-color: #ffffff;
    border-top: 1px solid #e5eaf1;
    padding: 40px 32px 20px;
}

footer > div {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin-bottom: 24px;
}

.footer-col-header {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #1e40af;
}

/* Элементы внутри колонок (как список, но без точек) */
footer p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #374151;
}

/* Copyright */
footer > p {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 24px;
}

/* ====== Адаптивность ====== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 16px;
    }

    footer > div {
        width: 100%;
    }
}