
    :root {
        --govt-blue: #1a365d;
        --govt-blue-light: #2c5282;
        --govt-gold: #c9a227;
        --govt-gold-light: #d4af37;
    }

    /* Page Header - Government Theme */
    .page-hero {
        background: linear-gradient(135deg, var(--govt-blue) 0%, var(--govt-blue-light) 100%);
        padding: 1.5rem 0;
        color: white;
        border-bottom: 4px solid var(--govt-gold);
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 1;
    }

    .page-hero-content {
        position: relative;
        z-index: 1;
    }

    .page-hero-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .page-hero-title {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .page-hero-title h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

    .page-hero-title i {
        font-size: 1.75rem;
        color: var(--govt-gold);
    }

    .page-hero p {
        margin: 0.375rem 0 0;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .page-hero .breadcrumb {
        background: none;
        padding: 0;
        margin: 0 0 0.5rem;
        font-size: 0.8125rem;
    }

    .page-hero .breadcrumb-item,
    .page-hero .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.7);
    }

    .page-hero .breadcrumb-item a:hover {
        color: var(--govt-gold);
    }

    .page-hero .breadcrumb-item.active {
        color: rgba(255, 255, 255, 0.9);
    }

    .page-hero .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Course count badge */
    .courses-count-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        padding: 0.625rem 1rem;
        border-radius: 8px;
        border: 1px solid rgba(201, 162, 39, 0.3);
    }

    .courses-count-badge i {
        color: var(--govt-gold);
    }

    .courses-count-badge .count {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--govt-gold);
    }

    .courses-count-badge .label {
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Search Box in Hero */
    .hero-search {
        margin-top: 1.25rem;
    }

    .hero-search .input-group {
        max-width: 500px;
    }

    .hero-search .form-control {
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid transparent;
        border-radius: 8px 0 0 8px;
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
        color: var(--govt-blue);
    }

    .hero-search .form-control:focus {
        background: white;
        border-color: var(--govt-gold);
        box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
        outline: none;
    }

    .hero-search .form-control::placeholder {
        color: #64748b;
    }

    .hero-search .btn-search {
        background: var(--govt-gold);
        border: 2px solid var(--govt-gold);
        border-radius: 0 8px 8px 0;
        padding: 0.75rem 1.25rem;
        color: var(--govt-blue);
        font-weight: 600;
        transition: all 0.2s;
    }

    .hero-search .btn-search:hover {
        background: var(--govt-gold-light);
        border-color: var(--govt-gold-light);
    }

    /* Main Content */
    .page-content {
        background: #f8fafc;
        padding: 2rem 0;
        min-height: calc(100vh - 250px);
    }

    /* Filter Section */
    .filter-section {
        background: white;
        border-radius: 12px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
        border: 1px solid #e2e8f0;
    }

    .filter-section-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--govt-gold);
    }

    .filter-section-header i {
        color: var(--govt-gold);
        font-size: 1.125rem;
    }

    .filter-section-header h6 {
        margin: 0;
        font-weight: 700;
        color: var(--govt-blue);
        font-size: 0.9375rem;
    }

    .filter-group {
        margin-bottom: 1rem;
    }

    .filter-group:last-child {
        margin-bottom: 0;
    }

    .filter-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
        display: block;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.8125rem;
        text-decoration: none;
        transition: all 0.2s;
        border: 2px solid #e2e8f0;
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        background: white;
        color: #64748b;
    }

    .filter-btn:hover {
        border-color: var(--govt-blue);
        color: var(--govt-blue);
        background: #f8fafc;
    }

    .filter-btn.active {
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        color: white;
        border-color: var(--govt-blue);
    }

    .filter-btn.active:hover {
        background: linear-gradient(135deg, var(--govt-blue-light), var(--govt-blue));
        color: white;
    }

    .filter-btn i {
        font-size: 0.875rem;
    }

    /* Exam Type Filter - Dropdown Style */
    .exam-filter-dropdown {
        position: relative;
    }

    .exam-filter-select {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 0.9375rem;
        color: var(--govt-blue);
        background: white;
        cursor: pointer;
        transition: all 0.2s;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a365d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    .exam-filter-select:focus {
        outline: none;
        border-color: var(--govt-blue);
        box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    }

    .exam-filter-select option {
        padding: 0.5rem;
    }

    /* Quick Exam Buttons */
    .exam-quick-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .exam-quick-btn {
        padding: 0.375rem 0.75rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        border: 1px solid #e2e8f0;
        background: white;
        color: #64748b;
    }

    .exam-quick-btn:hover {
        border-color: var(--govt-gold);
        color: var(--govt-blue);
        background: #fffbeb;
    }

    .exam-quick-btn.active {
        background: var(--govt-gold);
        color: var(--govt-blue);
        border-color: var(--govt-gold);
    }

    /* Clear Filters */
    .clear-filters {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #dc2626;
        background: #fef2f2;
        border: 1px solid #fecaca;
        text-decoration: none;
        transition: all 0.2s;
    }

    .clear-filters:hover {
        background: #fee2e2;
        color: #b91c1c;
    }

    /* Professional Course Cards */
    .course-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(26, 54, 93, 0.06);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .course-card:hover {
        box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
        transform: translateY(-4px);
        border-color: var(--govt-blue);
    }

    .course-image-wrapper {
        position: relative;
        height: 160px;
        overflow: hidden;
        background: linear-gradient(135deg, var(--govt-blue-light) 0%, var(--govt-blue) 100%);
    }

    .course-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .course-card:hover .course-image-wrapper img {
        transform: scale(1.05);
    }

    .course-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .course-image-placeholder i {
        font-size: 3rem;
        color: white;
        opacity: 0.5;
    }

    .course-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--govt-gold);
        color: var(--govt-blue);
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .course-category {
        position: absolute;
        top: 12px;
        left: 12px;
        background: white;
        color: var(--govt-blue);
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.6875rem;
        font-weight: 700;
        z-index: 2;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .course-body {
        padding: 1.25rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .rating-stars {
        color: var(--govt-gold);
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .rating-stars .text-muted {
        color: #94a3b8 !important;
        font-weight: 400;
        font-size: 0.75rem;
    }

    .course-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--govt-blue);
        margin-bottom: 0.5rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.8em;
    }

    .course-description {
        color: #64748b;
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 3em;
    }

    .course-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: auto;
        padding-top: 0.75rem;
        border-top: 1px solid #e2e8f0;
    }

    .course-stat {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
        color: #64748b;
    }

    .course-stat i {
        color: var(--govt-blue-light);
        font-size: 0.8125rem;
    }

    .course-footer {
        padding: 1rem 1.25rem;
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        min-height: 70px;
    }

    .course-price {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--govt-blue);
    }

    .course-price .free-badge {
        color: #059669;
        font-size: 0.9rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        border: 1px solid #a7f3d0;
        display: inline-flex;
        align-items: center;
        letter-spacing: 0.3px;
    }

    .course-price .free-badge i {
        color: #10b981;
        font-size: 0.85rem;
    }

    .course-price .original-price {
        font-size: 0.8125rem;
        color: #94a3b8;
        text-decoration: line-through;
        margin-left: 6px;
    }

    .course-enroll-btn {
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.75rem;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        letter-spacing: 0.3px;
    }

    .course-enroll-btn:hover {
        background: linear-gradient(135deg, var(--govt-blue-light), var(--govt-blue));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    .course-enroll-btn i {
        color: var(--govt-gold);
        font-size: 0.85rem;
    }

    .course-enroll-btn.btn-in-cart {
        background: linear-gradient(135deg, #059669, #047857);
    }

    .course-enroll-btn.btn-in-cart:hover {
        background: linear-gradient(135deg, #047857, #065f46);
    }

    .course-enroll-btn.btn-in-cart i {
        color: #a7f3d0;
    }

    .course-enroll-btn.btn-enrolled {
        background: linear-gradient(135deg, #059669, #047857);
        color: white;
        box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
        padding: 0.5rem 1.25rem;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .course-enroll-btn.btn-enrolled:hover {
        background: linear-gradient(135deg, #047857, #065f46);
        box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
    }

    .course-enroll-btn.btn-enrolled i {
        color: #d1fae5;
        font-size: 0.9rem;
    }

    .course-enroll-btn.btn-full-width {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    /* Empty State - Professional Design */
    .empty-state {
        text-align: center;
        padding: 3rem 2rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
        max-width: 600px;
        margin: 2rem auto;
    }

    .empty-state-illustration {
        position: relative;
        margin-bottom: 2rem;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(145deg, var(--govt-blue), var(--govt-blue-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(26, 54, 93, 0.25);
        position: relative;
        z-index: 2;
    }

    .empty-state-icon i {
        font-size: 2.5rem;
        color: var(--govt-gold);
    }

    .empty-state-decorations {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }

    .empty-state-decorations .decoration {
        position: absolute;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        animation: float 3s ease-in-out infinite;
    }

    .empty-state-decorations .decoration i {
        font-size: 1.1rem;
        color: #94a3b8;
    }

    .empty-state-decorations .decoration-1 {
        top: 10%;
        left: 0;
        animation-delay: 0s;
    }

    .empty-state-decorations .decoration-2 {
        top: 0;
        right: 10%;
        animation-delay: 0.5s;
    }

    .empty-state-decorations .decoration-3 {
        bottom: 10%;
        right: 0;
        animation-delay: 1s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    .empty-state-content {
        margin-bottom: 2rem;
    }

    .empty-state-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--govt-blue);
        margin-bottom: 1rem;
    }

    .empty-state-content p {
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .empty-state-content p .text-muted {
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .empty-state-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .btn-browse-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        color: white;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
    }

    .btn-browse-primary:hover {
        background: linear-gradient(135deg, var(--govt-blue-light), var(--govt-blue));
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(26, 54, 93, 0.35);
    }

    .btn-browse-primary i {
        color: var(--govt-gold);
    }

    .btn-browse-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        background: white;
        color: var(--govt-blue);
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-browse-secondary:hover {
        border-color: var(--govt-blue);
        background: #f8fafc;
        color: var(--govt-blue);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
    }

    .btn-browse-secondary i {
        color: var(--govt-gold);
    }

    .empty-state-suggestion {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        border-radius: 10px;
        border-left: 4px solid var(--govt-gold);
        text-align: left;
        font-size: 0.875rem;
        color: #92400e;
    }

    .empty-state-suggestion i {
        color: #d97706;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Legacy btn-browse support */
    .btn-browse {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        color: white;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-browse:hover {
        background: linear-gradient(135deg, var(--govt-blue-light), var(--govt-blue));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    }

    .btn-browse i {
        color: var(--govt-gold);
    }

    /* Responsive adjustments for empty state */
    @media (max-width: 576px) {
        .empty-state {
            padding: 2rem 1.5rem;
            margin: 1rem;
        }

        .empty-state-icon {
            width: 80px;
            height: 80px;
        }

        .empty-state-icon i {
            font-size: 2rem;
        }

        .empty-state-decorations {
            display: none;
        }

        .empty-state-content h3 {
            font-size: 1.25rem;
        }

        .empty-state-actions {
            flex-direction: column;
        }

        .btn-browse-primary,
        .btn-browse-secondary {
            width: 100%;
            justify-content: center;
        }
    }

    /* Pagination */
    .pagination-wrapper {
        margin-top: 2rem;
    }

    .pagination {
        gap: 0.375rem;
    }

    .pagination .page-link {
        border-radius: 6px;
        border: 1px solid #e2e8f0;
        color: var(--govt-blue);
        font-weight: 600;
        padding: 0.5rem 0.875rem;
        transition: all 0.2s;
    }

    .pagination .page-link:hover {
        background: #f1f5f9;
        border-color: var(--govt-blue);
        color: var(--govt-blue);
    }

    .pagination .page-item.active .page-link {
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        border-color: var(--govt-blue);
        color: white;
    }

    .pagination .page-item.disabled .page-link {
        background: #f8fafc;
        color: #94a3b8;
    }

    /* Active Filters Display */
    .active-filters {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.75rem 1rem;
        background: #fffbeb;
        border-radius: 8px;
        border: 1px solid #fcd34d;
    }

    .active-filters-label {
        font-size: 0.8125rem;
        font-weight: 600;
        color: #92400e;
    }

    .active-filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.375rem 0.75rem;
        background: white;
        border-radius: 50px;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--govt-blue);
        border: 1px solid #fcd34d;
    }

    .active-filter-tag i {
        color: var(--govt-gold);
    }

    @media (max-width: 768px) {
        .page-hero-main {
            flex-direction: column;
            align-items: flex-start;
        }

        .page-hero-title h1 {
            font-size: 1.25rem;
        }

        .filter-section {
            padding: 1rem;
        }

        .filter-buttons {
            gap: 0.375rem;
        }

        .filter-btn {
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
        }
    }

    /* Bundle Card Styles */
    .bundle-card {
        border: 2px solid var(--govt-blue) !important;
        position: relative;
    }

    .bundle-category-badge {
        background: linear-gradient(135deg, var(--govt-blue), var(--govt-blue-light));
        color: white;
    }

    .savings-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, var(--govt-gold), var(--govt-gold-light));
        color: var(--govt-blue);
        font-weight: 700;
    }

    .not-enabled-badge {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #dc3545;
        color: white;
        font-weight: 600;
        font-size: 0.7rem;
    }

    /* Bundle Courses Container */
    .bundle-courses-container {
        background: #f0f4f8;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 12px;
    }

    .bundle-courses-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--govt-blue);
        margin-bottom: 8px;
    }

    .bundle-courses-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .bundle-course-tag {
        background: white;
        color: var(--govt-blue);
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 0.75rem;
        border: 1px solid #e2e8f0;
    }

    .bundle-more-tag {
        background: var(--govt-blue);
        color: white;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 0.75rem;
    }

    /* Bundle View All Button */
    .bundle-view-all-btn {
        background: linear-gradient(135deg, var(--govt-blue), #2c5282);
        color: white;
        border: none;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.7rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 2px;
    }

    .bundle-view-all-btn:hover {
        background: linear-gradient(135deg, #c9a227, #d4af37);
        color: var(--govt-blue);
    }

    .bundle-view-all-btn i {
        font-size: 0.9rem;
    }

    /* Course FREE/PAID Badges */
    .badge-free {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #10b981;
        color: white;
        font-weight: 700;
    }

    .badge-paid {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #f59e0b;
        color: white;
        font-weight: 700;
    }

    /* Button Variants */
    .btn-disabled-grey {
        background: #6c757d !important;
        cursor: pointer;
    }

    .btn-start-free {
        background: linear-gradient(135deg, #10b981, #059669) !important;
        color: white !important;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
        font-size: 0.8rem;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    }

    .btn-start-free:hover {
        background: linear-gradient(135deg, #059669, #047857) !important;
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    }

    .btn-start-free i {
        color: #d1fae5 !important;
        font-size: 0.9rem;
    }
