/* SEO Section Styles - автоматически применяются ко всем элементам внутри section.max-w-5xl */
section.max-w-5xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
    color: #d1d5db;
}

section.max-w-5xl > div {
    max-width: none;
}

/* Headings */
section.max-w-5xl h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

section.max-w-5xl h2:first-child {
    margin-top: 0;
}

@media (min-width: 768px) {
    section.max-w-5xl h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

section.max-w-5xl h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Paragraphs */
section.max-w-5xl p {
    line-height: 1.75rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

section.max-w-5xl p:last-child {
    margin-bottom: 0;
}

/* Lists */
section.max-w-5xl ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

section.max-w-5xl ul li {
    margin-bottom: 0.75rem;
}

section.max-w-5xl ul li:last-child {
    margin-bottom: 0;
}

section.max-w-5xl ol {
    list-style-type: decimal;
    list-style-position: inside;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

section.max-w-5xl ol li {
    margin-bottom: 0.75rem;
}

section.max-w-5xl ol li:last-child {
    margin-bottom: 0;
}

/* Strong tags */
section.max-w-5xl strong {
    color: #ffffff;
    font-weight: 700;
}

/* Spacing utilities - для специальных случаев */
section.max-w-5xl p.mb-4 {
    margin-bottom: 1rem;
}

section.max-w-5xl p.mb-12 {
    margin-bottom: 3rem;
}

section.max-w-5xl ul.mb-12 {
    margin-bottom: 3rem;
}

/* Italic text */
section.max-w-5xl p.italic {
    font-style: italic;
}

