/* Общие стили */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Контейнер */
.container {
    width: 80%;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Шапка */
header {
    background: #007bff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Основное содержимое */
main {
    padding: 20px;
}

h1 {
    color: #007bff;
    text-align: center;
}

ul {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

ul li {
    margin-bottom: 10px;
}

/* Ссылки */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Футер */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-radius: 0 0 8px 8px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}
