
    .page-header {
        position: relative;
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        overflow: hidden;
    }

    .bg-gradient-primary {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    }

    .breadcrumb {
        background: transparent;
        padding: 0.5rem 0;
        margin-bottom: 0;
    }

    .breadcrumb-item a {
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .breadcrumb-item a:hover {
        color: #fff !important;
        text-decoration: underline;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Animation for the heading */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .display-4 {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .page-header {
            padding: 4rem 0;
        }

        .display-4 {
            font-size: 2.2rem;
        }

        .lead {
            font-size: 1.1rem;
        }
    }

    /* For the breadcrumb separator */
    .breadcrumb-item+.breadcrumb-item::before {
        content: "›";
        font-size: 1.2em;
        line-height: 1;
        vertical-align: middle;
        padding: 0 0.5rem;
    }