.hgc-course-key-features {
    padding: 32px 0;
    font-family: inherit;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Image Column */
.hgc-course-image-col {
    flex: 1;
    max-width: 50%;
}

.hgc-course-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Content Column */
.hgc-course-content-col {
    flex: 1;
    min-width: 0;
}

/* Header */
.hgc-course-header {
    margin-bottom: 24px;
}

.hgc-course-title {
    font-size: 40px;
    /* Larger Title */
    font-weight: 800;
    color: #1a3300;
    margin: 0;
    line-height: 1.1;
}

/* Stats */
.hgc-course-stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 0;
    color: #555;
    font-size: 18px;
    /* Larger Stats */
    font-weight: 500;
}

.hgc-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hgc-stat-icon {
    width: 24px;
    height: 24px;
    color: #8cc63f;
}

/* Features List */
.hgc-features-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    display: block;
}

.hgc-features__list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Vertical gap between items */
}

.hgc-features__item {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    /* Refined text size */
    line-height: 1.5;
    color: #444;
    width: 100%;
    /* Reset any potential theme card styles */
    background: transparent;
    border: none;
    padding: 4px 8px;
    /* Add subtle padding for hover */
    margin-left: -8px;
    /* Offset padding */
    border-radius: 6px;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.hgc-features__item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.hgc-features__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #8cc63f;
    border-radius: 50%;
    margin-top: 8px;
    /* Align with text (approx (line-height 24px - 8px)/2) */
    margin-right: 12px;
    flex-shrink: 0;
}

/* Actions */
.hgc-course-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hgc-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    /* Bigger buttons */
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
}

.hgc-btn-primary {
    background-color: #f79433;
    color: #fff;
    border: 1px solid #f79433;
    flex: 1;
}

.hgc-btn-primary:hover {
    background-color: #e68a2e;
    border-color: #e68a2e;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .hgc-course-key-features {
        flex-direction: column;
        gap: 32px;
    }

    .hgc-course-image-col {
        max-width: 100%;
        width: 100%;
    }

    .hgc-course-title {
        font-size: 32px;
    }

    .hgc-course-stats {
        flex-wrap: wrap;
        gap: 16px 24px;
        font-size: 16px;
    }
}