.about, .terms {
    padding: 40px 20px;
}

.about__container, .terms__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about__title, .terms__title {
    font-size: 2rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 1.5rem;
}

.about__text, .terms__text {
    text-align: justify;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .about, .terms {
        padding: 20px 10px;
    }

    .about__title, .terms__title {
        font-size: 1.5rem;
    }
}