/* Общие стили */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: #ffffff;
}

/* Шапка */
.header {
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fbd300;
}

.header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header ul li {
    margin-left: 20px;
}

.header ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.header ul li a:hover {
    color: #fbd300;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #ff0076, #7039ff);
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Content */
.content {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    font-size: 1.8em;
    color: #fbd300;
    margin-bottom: 10px;
}

.content p, .content ul {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.content ul {
    list-style: disc;
    padding-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #666;
    font-size: 0.9em;
}

footer a {
    color: #fbd300;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

