@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,500&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
}

.title-policy {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 1.6rem;
}

.container {
    margin: 35px 0;
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        margin: 20px 0;
    }
}

.cnt-item {
    font-size: 1.2rem;
}

.cnt-item .cnt-title {
    display: flex;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cnt-item .cnt-title .number {
    margin-right: 8px;
}

.cnt-item .cnt-text {
    margin: 16px 0;
}

.indent-text {
    text-indent: 35px;
}