* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }
h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #002D62; }
.content-wrapper { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.content-section { padding: 60px 0; }
.grey-bg { background-color: #f4f7f9; }
.blue-bg { background-color: #001f3f; color: white; }
.white-text { color: white !important; }
.center { text-align: center; }

/* Navigation */
nav { background: #fff; padding: 15px 0; position: sticky; top: 0; border-bottom: 1px solid #ddd; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: bold; color: #002D62; font-size: 1rem; }
.nav-links a { text-decoration: none; color: #666; margin-left: 20px; font-size: 0.85rem; font-weight: 600; }

/* Hero */
.hero-section { padding: 100px 0; text-align: center; background: #fff; }
.badge { background: #eef2f7; color: #002D62; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.75rem; }
h1 { font-size: 2.3rem; margin: 20px 0; line-height: 1.3; }
.subtitle { font-size: 1.1rem; color: #555; max-width: 700px; margin: 0 auto 30px; }
.hero-cta { display: flex; justify-content: center; gap: 15px; }

/* Buttons */
.btn { padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; cursor: pointer; }
.btn-primary { background: #002D62; color: #fff; }
.btn-secondary { border: 2px solid #002D62; color: #002D62; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* Grids */
.consideration-grid, .final-download-grid, .faq-container, .outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.policy-card, .download-item, .faq-item, .outcome-item { background: #fff; padding: 25px; border-radius: 8px; border: 1px solid #eee; }
.outcomes-grid { grid-template-columns: repeat(3, 1fr); }
.outcome-item { color: #333; text-align: center; }
.text-link { color: #002D62; font-weight: bold; text-decoration: none; margin-top: 15px; display: inline-block; }
.center-text { max-width: 700px; margin: 0 auto; }

footer { padding: 30px; background: #1a1a1a; color: #777; text-align: center; font-size: 0.8rem; }

@media (max-width: 768px) {
    .consideration-grid, .final-download-grid, .faq-container, .outcomes-grid { grid-template-columns: 1fr; }
}
