.static-page__body {
    padding: 80px 0 120px;
    background-color: #fff;
}

.static-page__content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.static-page__content h1,
.static-page__content h2,
.static-page__content h3,
.static-page__content h4,
.static-page__content h5,
.static-page__content h6 {
    font-family: var(--font-family-heading);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.static-page__content p {
    margin-bottom: 1.4rem;
}

.static-page__content ul,
.static-page__content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.static-page__content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.static-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.static-page__content table th,
.static-page__content table td {
    border: 1px solid #e5e1d8;
    padding: 12px;
    text-align: left;
}

@media (max-width: 768px) {
    .static-page__body {
        padding: 60px 0 90px;
    }

    .static-page__content {
        font-size: 1rem;
    }
}

