/* ============================================
   Layout Utilities
   ============================================ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

.section-header {
    margin-bottom: 3.5rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

/* Gold underline accent for section headings */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gov-gold);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.subtitle {
    font-size: 1.05rem;
    max-width: 640px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Gold divider between sections */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gov-gold), transparent);
    margin: 0;
}
