.text-content {
    padding: 40px 160px;
    background: var(--color-bg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.text-content-container {
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-poppins);
    font-size: 18px;
    line-height: 28.8px;
    color: var(--color-white);
}

.text-content-container p {
    margin-bottom: 32px;
}

.text-content-container h2,
.text-content-container h3 {
    font-family: var(--font-orbitron);
    font-weight: 700;
    margin-bottom: 16px;
}

.text-content-container h2 {
    font-size: 28px;
}

.text-content-container h3 {
    font-size: 22px;
}

.text-content-container ul,
.text-content-container ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.text-content-container li {
    margin-bottom: 8px;
    list-style: disc;
}

@media (max-width: 1200px) {
    .text-content {
        padding: 60px 40px;
    }
}

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

    .text-content-container {
        font-size: 16px;
        line-height: 26px;
    }
}
