
        .brand-logos-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
        }

        .brand-logos-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .brand-logo-item {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            backdrop-filter: blur(5px);
        }

        .brand-logo {
            max-height: 50px;
            max-width: 100px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .brand-logos-overlay {
                top: 15px;
                right: 15px;
            }

            .brand-logo {
                max-height: 40px !important;
                max-width: 80px !important;
            }

            .brand-logo-item {
                padding: 6px;
            }
        }

        @media (max-width: 576px) {
            .brand-logos-overlay {
                top: 10px;
                right: 10px;
            }

            .brand-logo {
                max-height: 30px !important;
                max-width: 60px !important;
            }

            .brand-logo-item {
                padding: 4px;
            }
        }

        @media (max-width: 768px) {
            .breadcrumbs {
                min-height: 150px !important;
                height: 20vh !important;
                max-height: 200px !important;
            }
        }
        @media (max-width: 576px) {
            .breadcrumbs {
                min-height: 120px !important;
                height: 15vh !important;
                max-height: 150px !important;
            }
        }
        @media (max-width: 400px) {
            .breadcrumbs {
                min-height: 100px !important;
                height: 12vh !important;
                max-height: 120px !important;
            }
        }
    

        @media (max-width: 768px) {
            .breadcrumb-item {
                font-size: 0.85rem !important;
            }
            .breadcrumb-item a, .breadcrumb-item.active {
                font-size: 0.85rem !important;
            }
        }
        @media (max-width: 576px) {
            .breadcrumb-item {
                font-size: 0.8rem !important;
            }
            .breadcrumb-item a, .breadcrumb-item.active {
                font-size: 0.8rem !important;
            }
            .container {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
        }
    

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        }

        .btn-primary {
            background: linear-gradient(45deg, #007bff, #0056b3) !important;
            border: none !important;
            color: white !important;
            font-weight: 500 !important;
            padding: 8px 20px !important;
            border-radius: 25px !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
            text-decoration: none !important;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #0056b3, #004085) !important;
            transform: translateY(-2px) scale(1.02) !important;
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
            color: white !important;
        }

        .btn-primary:active,
        .btn-primary:focus {
            background: linear-gradient(45deg, #004085, #002752) !important;
            box-shadow: 0 2px 10px rgba(0, 123, 255, 0.5) !important;
            color: white !important;
        }

        @media (max-width: 768px) {
            .card-body {
                padding: 1.5rem !important;
            }

            .fa-3x {
                font-size: 2rem !important;
            }

            h3 {
                font-size: 1.5rem !important;
            }

            .card-title {
                font-size: 1.1rem !important;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .card-body {
                padding: 1rem !important;
            }

            .fa-3x {
                font-size: 1.5rem !important;
            }

            h3 {
                font-size: 1.3rem !important;
            }
        }
    