.text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px 0;
}

.text-section h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
    /* STROGO: High contrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}


.text-section h2 {
    /* Subheadings in specific sections */
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    /* STROGO */
    margin-bottom: var(--space-md);
    font-size: 1.8rem;
}

.text-section p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    text-align: left;
}