@charset "utf-8";
/* CSS Document */

/* Khung nội dung khóa học */
.course-content {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Tiêu đề chính */
.course-content h2 {
    color: #F60;
    margin-bottom: 10px;
}

/* Đoạn mô tả */
.intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mỗi nhóm nội dung */
.section {
    margin-bottom: 15px;
}

/* Tiêu đề từng phần */
.section h3 {
    color: #198754;
    margin-bottom: 10px;
}

/* Danh sách */
.section ul {
    list-style: none;      /* bỏ dấu chấm mặc định */
    padding-left: 0;
}

/* Mỗi dòng */
.section ul li {
    position: relative;
    padding-left: 30px;    /* chừa chỗ cho icon */
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Biểu tượng cành cọ xanh */
.section ul li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 2px;              /* căn chỉnh theo chiều dọc */
    font-size: 16px;
}
