body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    width: 760px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
}
.header {
    margin-bottom: 20px;
}
.header h1 {
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}
.header h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px; 
    border-top: 2px solid #000;
    margin-top: 10px;
}
.content {
    font-size: 14px;
    line-height: 1.5;
}
.content ul {
    list-style-type: none;
    padding-left: 0;
}
.content li {
    margin: 10px 0;
}
.content a {
    color: #0000FF;
    text-decoration: none;
    font-weight: bold;
}
.content a:hover{
    text-decoration: underline;
}
.footer {
    margin-top: 20px;
    font-size: 12px;
}
a {
    color: #0000FF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}