.content-wrap {
    margin-top: 64px;
}

.content-wrap h1 {
    font-weight: 600;
    font-size: 40px;
}

.content-page {
    margin-top: 40px;
    background-color: black;
    width: 1200px;
    min-height: 400px;
    border-radius: 24px;
}

.content-page {
    text-align: left;
    padding: 40px;
    line-height: 130%;
    font-weight: 300;
}

.content-page li {
    margin-bottom: 8px;
}

.content-page li::marker {
    color: #97041D;
    font-weight: 600;   
}

.content-page ul,
.content-page ol {
    list-style-position: inside;
}

@media only screen and (max-width: 1280px) {
    .content-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-page {
        width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .content-page {
        padding: 32px;
    }

    .content-wrap h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .content-page {
        padding: 32px;
    }
}