/* Shared base styles - replaces Tailwind CDN */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }
a { text-decoration: none; transition: color 0.2s; }

/* Disclaimer bar */
.disclaimer-bar { background: #EAB308; color: #1e3a5f; font-size: 12px; padding: 8px 24px; text-align: center; font-weight: 600; }

/* Top info bar */
.info-bar { background: #1e3a5f; color: #fff; font-size: 13px; padding: 8px 24px; display: flex; justify-content: space-between; align-items: center; }

/* Nav */
nav { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 16px 32px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
.nav-logo { font-size: 22px; font-weight: 800; color: #1e3a5f; letter-spacing: -0.5px; }
.nav-logo span { color: #2563eb; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: #475569; }
.nav-links a:hover, .nav-links a.active { color: #2563eb; }
.btn-call { background: #EAB308; color: #1e3a5f; font-weight: 700; padding: 10px 22px; border-radius: 50px; font-size: 14px; white-space: nowrap; }
.btn-call:hover { background: #ca9a06; }

/* Page header */
.page-header { background: #dbeafe; padding: 48px 24px; text-align: center; }
.page-header h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; color: #1e3a5f; }
.page-header p { color: #64748b; margin-top: 8px; }

/* Content card */
.content-wrap { max-width: 900px; margin: 40px auto; background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 4px 24px rgba(0,0,0,0.06); padding: 48px; }
.section-title { font-size: 20px; font-weight: 700; color: #1e3a5f; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; margin-bottom: 16px; margin-top: 32px; }
.section-title:first-child { margin-top: 0; }
.content-wrap p, .content-wrap li { color: #475569; line-height: 1.8; margin-bottom: 16px; }
.content-wrap ul { padding-left: 20px; }
.content-wrap ul li { margin-bottom: 8px; }

/* Alert boxes */
.alert-yellow { background: #fefce8; border-left: 4px solid #EAB308; padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 24px; }
.alert-yellow p { color: #854d0e; margin: 0; }
.alert-red { background: #fef2f2; border: 2px solid #ef4444; border-radius: 12px; padding: 24px; margin-bottom: 24px; text-align: center; }
.alert-red h2 { color: #b91c1c; font-size: 22px; margin-bottom: 8px; }
.alert-red p { color: #b91c1c; font-weight: 600; margin: 0; }
.info-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; }
.info-box p { margin: 0; color: #334155; }

/* FOOTER */
.footer { background: #0f172a; color: #94a3b8; padding: 60px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 48px; }
.footer-card { background: #1e293b; border-radius: 12px; padding: 24px; border: 1px solid #334155; }
.footer-card h4 { color: #f1f5f9; font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.footer-card p, .footer-card a { font-size: 13px; color: #94a3b8; line-height: 1.8; display: block; }
.footer-card a:hover { color: #f1f5f9; }
.footer-card strong { color: #e2e8f0; }
.footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; font-size: 12px; border-top: 1px solid #1e293b; padding-top: 24px; color: #64748b; }
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #f1f5f9; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1e3a5f; border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px 24px; flex-direction: column; gap: 16px; z-index: 99; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: #475569; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.mobile-menu a:hover { color: #2563eb; }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    nav { position: relative; }
    .info-bar { flex-direction: column; gap: 4px; text-align: center; }
    .content-wrap { margin: 20px 16px; padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}