
        .courses-header {
            background: linear-gradient(to right, #FFF3E0, #FFCC80);
            padding: 40px 0 80px;
            position: relative;
        }
        .courses-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .courses-description {
            font-size: 16px;
            color: #555;
            max-width: 800px;
        }

        .view-options {
            background-color: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-radius: 50px;
            padding: 10px 15px;
            display: inline-flex;
            align-items: center;
            margin-top: -25px;
            position: relative;
            z-index: 2;
        }
        .view-btn {
            background-color: transparent;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #555;
        }
        .view-btn.active {
            background-color: #f0f0f0;
            color: #333;
        }
        .results-count {
            font-size: 14px;
            color: #666;
            margin-left: 10px;
        }
        .search-courses {
            background-color: white;
            border-radius: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 10px 20px;
            border: 1px solid #e0e0e0;
            width: 100%;
            max-width: 400px;
            display: flex;
            align-items: center;
            margin-top: -15px;
            position: relative;
            z-index: 2;
        }
        .search-courses input {
            border: none;
            outline: none;
            width: 90%;
            background: transparent;
        }
        .search-courses button {
            background-color: transparent;
            border: none;
            color: #555;
        }
        .course-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border: none;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 10px;
        }
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .course-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .course-content {
            padding: 0px;
        }
        .course-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }
        .course-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            height: 60px;
            overflow: hidden;
        }
        .course-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-right: 10px;
        }
        .discounted-price {
            font-weight: 700;
            font-size: 18px;
            /* color: var(--primary-color); */
        }
        .btn-enroll {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 0;
            width: 100%;
            font-weight: 500;
            transition: opacity 0.3s;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        .btn-enroll:hover {
            opacity: 0.9;
            color: white;
        }
        .btn-load-more {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 500;
            margin: 20px 0 50px;
        }

        .course-list-container {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 10px;
        }

        .course-item {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid #f0f0f0;
        }

        .course-item-inner {
            display: flex;
            padding: 10px;
        }

        .course-image {
            width: 180px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
        }
        .course-content1 {
            flex-grow: 1;
            padding: 0px;
        }
        .course-content {
            flex-grow: 1;
            padding: 0 20px;
        }
        .course-meta {
            display: flex;
            margin-bottom: 5px;
        }
        .course-meta-meta {
            display: flex;
            margin-bottom: 5px;
        }
        .course-meta-item {
            display: flex;
            align-items: center;
            font-size: 12px;
            /* color: #777; */
            margin-right: 15px;
        }
        .course-meta-item i {
            margin-right: 5px;
            /* color: #aaa; */
        }
        .course-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
            text-decoration: none;
        }

        .course-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 0;
            line-height: 1.5;
        }
        .course-price-section {
            min-width: 150px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: space-between;
        }
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
        }
        .discounted-price {
            font-weight: 700;
            font-size: 18px;
            /* color: var(--primary-color); */
            /* margin-bottom: 15px; */
        }
        .btn-enroll {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
            text-align: center;
            width: 100%;
        }
        .btn-enroll:hover {
            opacity: 0.9;
            color: white;
        }
        .btn-load-more {
            background: linear-gradient(to right, #9b59b6, #3498db);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 500;
            margin: 20px 0 50px;
        }

        @media (max-width: 768px)
        {
            .justify-content-end {
                justify-content: flex-end !important;
                margin: 40px 0;
            }
            .course-list-container {
                margin-top: 0;
            }
            .course-item-inner {
                display: block;
                padding: 10px;
            }
            .course-image {
                width: 100%;
                height: auto;
            }
            .price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            margin-right: 150px;
            margin-top: 10px;

        }
        .discounted-price {
            margin-bottom: 0;
        }

        .course-content {
            flex-grow: 1;
            padding: 5px;
        }

        .course-meta-meta {
            display: flex;
            margin-bottom: 5px;
            margin-top: 5px;
        }

        }
