.help-container {
    flex: 1;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.help-container > div {
    width: 100%;
    max-width: var(--width-lg);
    margin: 0 auto;
}

.help-header {
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.help-title {
  margin-bottom: 1rem;
  font-size: var(--font-5xl);
}

.help-date {
    color: var(--text-3);
    margin-bottom: 3rem;
}

.help-content > section {
    display: block;
    margin-bottom: 3rem;
}

.help-content > section::before {
    content: attr(data-number) ". ";
    font-size: var(--font-xl);
    font-weight: var(--font-weight-regular);
    display: inline;
}

.help-content h2 {
    display: inline;
    font-size: var(--font-xl);
    font-weight: var(--font-weight-regular);
    margin: 0;
}

.help-content p {
    margin: 1.25rem 0;
    color: var(--text-2);
}

@media (max-width: 767px) {
    .help-container {
        padding: 1rem 1.25rem 4rem 1.25rem;
    }

    .help-title {
       font-size: var(--font-xl);
       line-height: 1.2;
    }

    .help-content > section {
        margin-bottom: 3.5rem;
    }

    .help-content > section::before,
    .help-content h2 {
        font-size: var(--font-2xl);
    }

}
