/* ===== PUBLIC LAYOUT (public-header.php shared styles) ===== */
:root {
    --primary: #0066cc; --primary-dark: #0052a3; --primary-light: #3385d6;
    --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb;
    --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151; --gray-900: #111827;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--gray-900); line-height: 1.6; }
.navbar { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); padding: 1rem 0; transition: all 0.3s ease; }
.navbar.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.navbar-brand { font-weight: 700; font-size: 1.5rem; color: #1a1a1a; letter-spacing: -0.5px; }
.nav-link { color: var(--gray-700); font-weight: 500; padding: 0.5rem 1rem !important; transition: color 0.2s; }
.nav-link:hover { color: var(--primary); }
.btn-primary { background: var(--primary); border: none; padding: 0.625rem 1.5rem; font-weight: 600; border-radius: 8px; transition: all 0.2s; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,102,204,0.3); }
.public-content { padding-top: 100px; padding-bottom: 3rem; min-height: 60vh; }
.public-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.public-content h2 { font-size: 1.4rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
.public-content h3 { font-size: 1.15rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.public-content p { color: var(--gray-700); line-height: 1.8; }
.public-content ul { color: var(--gray-700); }
.public-content li { margin-bottom: 0.5rem; }
.footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-text { font-weight: 700; font-size: 1.25rem; color: #fff; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-title { color: #fff; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.footer-link { display: block; color: rgba(255,255,255,0.6); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; font-size: 0.9rem; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.85rem; }
