.term-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgb(248, 248, 248);
}

.page-header {
    width: 100%;
    height: 50px;
    background-color: rgb(68, 68, 68);
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-align: center;
}

.header-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
}

.header-container img {
    position: absolute;
    top: 10px;
    left: 0px;
    width: 30px;
    height: auto;
    cursor: pointer;
}

.content-container {
    max-width: 800px;
    width: 100%;
    height: auto;
    min-height: calc(-50px + 100vh);
    margin: 0px auto;
    padding: 50px;
    background-color: rgb(255, 255, 255);
    line-height: 1.4;
}

.content-container h3 {
    font-weight: bold;
}

.content-container h3, .content-container p {
    margin-block-start: 30px;
}

@media (max-width: 770px) {
    .page-header {
        font-size: 20px;
        font-weight: 600;
        padding: 0px 20px;
    }

    .content-container {
        padding: 20px;
    }
}