.content-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.content-header {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.content-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.content-body {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.content-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-tertiary);
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.content-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 2.25rem;
    }

    .content-body {
        padding: 2rem 1.5rem;
    }

    .content-body h2 {
        font-size: 1.5rem;
    }
}