body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.gradient-bar {
    height: 3mm;
    background: linear-gradient(to right, green, yellow, red);
}

.logo {
    margin-right: 15px;
}

.logo img {
    width: 35px;
    height: auto;
}

nav {
    background-color: #ffffff;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

ul.menu li {
    border-radius: 15px;
    overflow: hidden;
}

.menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #94d77a;
}

main {
    padding: 20px;
    margin-top: 120px;
}

h1 {
    color: #333;
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    margin: 45px 0px;
}

h2 {
    color: #555;
    font-weight: normal;
    text-align: center;
    font-size: 1.5em;
    margin: 15px 0;
}

.content-section {
    background-color: #f0f0f0;
    color: #333;
    padding: 20px;
    text-align: justify;
    margin: 20px 260px;
}

.block {
    margin-bottom: 20px;
}

.text-and-image {
    display: block;
}

.text-content {
    margin-bottom: 15px;
}

.figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto; /* Центральное выравнивание */
}

.figure figcaption {
    text-align: center;
    margin-top: 8px; /* расстояние между изображением и подписью */
    font-size: 14px; /* размер текста подписи */
    font-style: italic; /* курсив */
}

footer {
    background-color: #333;
    color: #ecf0f1;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}