.text-content {
    padding: 50px 0 60px;
    background-color: var(--color-white);
}

.text-content__inner {
    max-width: 1094px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
}

.text-content__inner h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    max-width: 792px;
    margin: 0 auto 30px;
}

.text-content__inner h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin: 30px 0 15px;
}

.text-content__inner h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    margin: 25px 0 10px;
}

.text-content__inner p {
    margin-bottom: 15px;
}

.text-content__inner hr {
    border: none;
    border-top: 1px solid var(--color-black);
    margin: 20px 0;
}

.text-content__inner ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 15px;
}

.text-content__inner ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 15px;
}

.text-content__inner ol li,
.text-content__inner ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.text-content__inner a {
    text-decoration: underline;
    color: var(--color-black);
}

.text-content__inner a:hover {
    opacity: 0.7;
}

.text-content__inner strong,
.text-content__inner b {
    font-weight: 700;
}

.text-content__inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.text-content__inner table th,
.text-content__inner table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}

.text-content__inner table th {
    font-weight: 700;
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .text-content {
        padding: 30px 0 40px;
    }

    .text-content__inner h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .text-content__inner {
        font-size: 14px;
    }
}
