/* Базовые стили для статических страницы */
.dws_basic {
    font-family: 'Rubik', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.dws_basic .wrapper__container {
    max-width: 900px; /* Соответствует основной ширине контента на сайте */
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px; /* Скругление как у кнопок и блоков */
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Типографика */
.dws_basic h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #004495; /* Тёмно-синий, используется в акцентных заголовках */
    margin-bottom: 10px;
    line-height: 1.3;
}

.dws_basic h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0587D6; /* Акцентный синий */
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cee5ff; /* Цвет границ из стилей сайта */
}

.dws_basic h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #004495;
    margin-top: 30px;
    margin-bottom: 15px;
}

.dws_basic p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.dws_basic strong {
    font-weight: 600;
    color: #004495;
}

/* Ссылки */
.dws_basic a {
    color: #0587D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dws_basic a:hover {
    color: #004495;
    text-decoration: underline;
}

/* Списки */
.dws_basic ul,
.dws_basic ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.dws_basic ul li,
.dws_basic ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.dws_basic ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.dws_basic ul li::before {
    content: "•";
    color: #0587D6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.dws_basic ol {
    counter-reset: item;
}

.dws_basic ol li {
    list-style: none;
    counter-increment: item;
    position: relative;
    padding-left: 30px;
}

.dws_basic ol li::before {
    content: counter(item) ".";
    color: #0587D6;
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* Таблицы */
.dws_basic table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dws_basic table th,
.dws_basic table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #cee5ff;
    font-size: 0.95rem;
}

.dws_basic table th {
    background-color: #e7f2ff; /* Светло-голубой фон из стилей сайта */
    font-weight: 600;
    color: #004495;
    width: 35%;
}

.dws_basic table tr:last-child td {
    border-bottom: none;
}

.dws_basic table tr:hover {
    background-color: #f0f8ff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .dws_basic {
        padding: 20px 10px;
    }

    .dws_basic .wrapper__container {
        padding: 20px;
    }

    .dws_basic h1 {
        font-size: 1.5rem;
    }

    .dws_basic h2 {
        font-size: 1.25rem;
    }
}