.text-page {
    background-color: #fff;
    flex-direction: column;
}

.text-page .main-text-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;
}

.text-page h2 {
    color: #09072C;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    margin-top: 0;
}

.text-page h3 {
    color: #09072C;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}

.text-page h3:not(:first-child) {
    margin-top: 56px;
}

.text-page h2+h3 {
    margin-top: 0;
}

.text-page h4 {
    color: #09072C;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.36px;
    margin-bottom: 20px;
}

.text-page h4:not(:first-child) {
    margin-top: 28px;
}

.text-page h2+h4 {
    margin-top: 0;
}

.text-page p {
    color: #222;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.32px;
}

.text-page b {
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.32px;
}

.text-page ul {
    margin-bottom: 24px;
}

.text-page ul li {
    list-style: none;
    position: relative;
}

.text-page ul li::before {
    content: '';
    display: block;
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C3A275;
}

.text-page span.yellow {
    color: #C3A275;
}

.text-page .last-change {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(142, 142, 147, 0.5);
    width: 100%;
}

@media (max-width: 1100px) {
    .text-page {
        padding-bottom: 60px;
    }
}