 /* Основные стили */
 body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
    background-color: #f8f8f8;
}

h1 {
    text-align: center;
    color: #0047ab;
    font-size: 1.8em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

/* Стили для разделов */
.section-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    border-bottom: 2px solid #0047ab;
    padding-bottom: 5px;
}

/* Стили для таблиц */
.tables {
    line-height: 1.6;
    margin: 20px;
}
.tables table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    margin-top: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tables th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.tables th {
    background-color: #0047ab;
    color: #fff;
    font-weight: bold;
}

.tables tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tables td {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 12px 15px;
}

