body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 20px;
}

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

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header .right {
    text-align: right;
    font-size: 14px;
}

section {
    margin-top: 20px;
}

h2 {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    font-size: 18px;
}

.item {
    margin-top: 10px;
}

.title {
    display: flex;
    justify-content: space-between;
}

.subtitle {
    display: flex;
    justify-content: space-between;
}

ul {
    margin: 5px 0 10px 20px;
}