.main-content {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

.content-section {
    padding: 60px 0;
}

@media (max-width: 576px) {
    .content-section {
        padding: 20px 0;
    }
}

.container {
    max-width: var(--container-max, 1280px);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    text-align: left;
    margin-bottom: 50px;
    color: var(--color-text-heading);
}

.section-title:after {
    content: '';
    display: block;
    margin: 0 auto 0 0;
    width: 96px;
    height: 6px;
    margin-top: 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f97316 100%);
}

.section-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    text-align: left;
    color: var(--color-brand);
    max-width: 600px;
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: var(--text-3xl);
    }
}

.info-card {
    background: var(--color-bg-card, white);
    border-radius: var(--radius-md, 12px);
    padding: 1rem;
    border: 1px solid var(--color-border, #e2e8f0);
    margin: 1.5rem 0;
}

.info-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 0.75rem;
}

.info-card ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-secondary);
}

.info-card li {
    margin-bottom: 0.25rem;
    line-height: var(--leading-tight, 1.4);
}