 /* Secondary Page Hero Background */
        .page-hero-bg {
            background-image: linear-gradient(rgba(11, 25, 44, 0.90), rgba(11, 25, 44, 0.98)), url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

.sidebar-sticky {
    position: static;
}

@media (min-width: 1024px) {
    .sidebar-sticky {
        position: sticky;
        top: 2rem;
        align-self: flex-start;
    }
}