/* Общие стили */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header img {
    width: 100px;
    height: auto;
}

header h1 {
    margin: 10px 0;
    font-size: 2.5em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.zag {
    text-align: center;
    margin-bottom: 30px;
}

.zag h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.zag h3 {
    font-size: 1.5em;
    color: #555;
}

.inf {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.news {
    flex: 2;
}

.news-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 30%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    
}

.news-item p {
    font-size: 1.1em;
    line-height: 1.6;
}

.tabl {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #2c3e50;
    color: white;
}

table tr:hover {
    background-color: #f5f5f5;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}