body {
    font-family: sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 30px;
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #eee;
}

h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ccc;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bbb;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bbb;
}

a {
    color: #88c0d0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

.back-link a {
    color: #777;
}

.back-link a:hover {
    color: #999;
}
