/* ══════════════════════════════════════════════════
   Business Legacy Scorecard — Shared Styles
   ══════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Design Tokens ─── */
:root {
    --navy:      #1e3a5f;
    --navy-mid:  #2c5282;
    --amber:     #d97706;
    --amber-lt:  #f59e0b;
    --slate-900: #2c3e50;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-50:  #f8fafc;
    --green:     #10b981;
    --white:     #ffffff;
}

/* ─── Base ─── */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
}

/* ─── Header ─── */
.header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo { height: auto; width: 50%; display: block; }

/* ─── Page Footer ─── */
        .footer {
            background: white;
            color: #666;
            padding: 15px 0;
            text-align: center;
			box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }
		
		.footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
			font-size: 13px;
			margin-top: 10px;
        }
		
		 .footer-contact p {
			text-align: center;
			font-size: 13px;
			margin-bottom: 10px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
			margin-top: 20px;
		}

        .footer-links a {
			color: #666;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }


/* ─── Mobile ─── */
@media (max-width: 768px) {
    .header-logo { width: 75%; }
    .footer-content {
        flex-direction: column;
        text-align: center;
        }

}
