.pages-info_container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pages-info_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    width: 70%;
    gap: 0.6rem;
}

.pages-info_title {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
}

.pages-info_last-updated,
.pages-info_please-read,
.pages-info_text {
    color: #fff;
    font-size: 20px;
    font-family: 'Supreme', sans-serif;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .pages-info_title {
        font-size: 36px;
    }
    .pages-info_last-updated,
    .pages-info_please-read,
    .pages-info_text {
        font-size: 16px;
    }

    .pages-info_content {
        width: 80%;
    }
}

@media (max-width: 475px) {
    .pages-info_title {
        font-size: 24px;
    }
    .pages-info_last-updated,
    .pages-info_please-read,
    .pages-info_text {
        font-size: 14px;
    }

    .pages-info_content {
        width: 90%;
    }
}