@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 40px 20px;
    background: #000;
    color: #fff;
    font-family: 'Manrope', Arial, sans-serif;
    line-height: 1.6;
    font-size: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 22px;
    margin-top: 32px;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

ul {
    margin-left: 20px;
    margin-bottom: 16px;
    list-style-type: disc;
}

li {
    margin-bottom: 8px;
}

strong {
    font-weight: 600;
}

a {
    color: #fff;
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #333;
    margin: 40px 0;
}

.numeric-list {
    list-style-type: decimal;
}