* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
}

.header {
    text-align: center;
    padding: 60px 20px;
    background: #020617;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    color: #94a3b8;
}

.section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.section h2 {
    margin-bottom: 15px;
    color: #38bdf8;
}

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

.section a {
    color: #38bdf8;
    text-decoration: none;
}

.section a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    margin-top: 60px;
    color: #94a3b8;
}
