.course-header {
    margin-bottom: 0rem !important;
    text-align: left !important;
}

.course-title {
    font-size: 2.5rem;
    margin-bottom: .0rem !important;
    color: var(--primary);
}

.course-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 36rem;
    margin: 0 !important;
}

.top-picks {
    color: #00a67d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    color: #222;
    font-weight: 700;
}

.view-more {
    background-color: #00a67d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
}

.course-image {
    width: 230px;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    padding: 6px 14px;
    color: white;
    background-color: #fdfdfdf1;
    font-size: 18px;
    font-weight: 600;
    text-shadow:
    -1px -1px 0 #fff2f2,
     1px -1px 0 #fff2f2,
    -1px  1px 0 #fff2f2,
     1px  1px 0 #fff2f2;
}

.badge-1 {
   color: #00a67d;
   border-bottom: 2px solid #00a67d;
}

.badge-2 {
   color: #ff9800;
   border-bottom: 2px solid #ff9800;
  
}

.badge-3 {
   color: #00c1d4;
   border-bottom: 2px solid #00c1d4;
}

.badge-4 {
   color: #ff3860;
   border-bottom: 2px solid #ff3860;
}

.badge-5 {
   color: #1180ff;
   padding: 6px 14px;
   border-bottom: 2px solid #1180ff;
}

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

.price {
    margin-bottom: 10px;
}

.current-price {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 5px;
    font-size: 14px;
}

.course-title {
    font-size: 16px;
    font-weight: 700;
}

.course-title-level {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.course-description-1 {
    margin-bottom: 15px !important;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.course-meta {
    display: flex;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}

.meta-item i {
    margin-right: 5px;
    color: #00a67d;
}

.meta-students {
    color: #666;
}

.course-card-advantage {
    flex-direction: column;

}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .course-card {
        flex-direction: column;
    }

    .course-image {
        width: 100%;
        height: 200px;
    }
}