/* основные стили страницы */
body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background: #f5f5f5;
    color: #333;
}

h1 {
    color: #2e7d32;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 8px;
}

h2 {
    color: #2e7d32;
    margin-top: 25px;
}

/* меню сверху */
.menu {
    background: #2e7d32;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover,
.menu a.active {
    text-decoration: underline;
    font-weight: bold;
}

/* картинки */
.photo {
    width: 100%;
    max-width: 700px;
    margin: 10px 0;
}

/* подпись под фото */
.caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: -5px;
    margin-bottom: 20px;
}

/* таблица */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

th, td {
    border: 1px solid #999;
    padding: 8px 12px;
    text-align: left;
}

th {
    background: #2e7d32;
    color: white;
}

tr:nth-child(even) {
    background: #e8e8e8;
}

ul {
    margin: 10px 0;
    padding-left: 25px;
}

li {
    margin-bottom: 5px;
}

/* футер внизу */
.footer {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #999;
    color: #666;
    font-size: 13px;
    text-align: center;
}
