/* 1. Thiết lập đường kẻ dọc */
    .timeline-step {
        position: relative;
        padding-left: 60px; /* Tăng khoảng cách để thoáng hơn */
        padding-bottom: 50px;
        border-left: 2px solid #e9ecef;
    }
    .timeline-step:last-child {
        border-left: 0;
        padding-bottom: 0;
    }

    /* 2. Thiết kế Icon số tròn */
    .timeline-icon {
        position: absolute;
        left: -21px;
        top: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        text-align: center;
        line-height: 38px; /* Căn giữa số theo chiều dọc */
        font-weight: 800;
        background-color: #fff;
        border: 2px solid #007bff;
        color: #007bff;
        z-index: 2;
        transition: all 0.3s ease; /* Hiệu ứng mượt */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* 3. Hiệu ứng Card (Quan trọng) */
    .timeline-card {
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Hiệu ứng nảy nhẹ */
        border: 1px solid rgba(0,0,0,0.05); /* Viền mờ sang trọng */
    }

    /* Khi di chuột vào từng bước (Hover) */
    .timeline-step:hover .timeline-icon {
        background-color: #007bff;
        color: #fff;
        transform: scale(1.1); /* Icon phóng to nhẹ */
        box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.2); /* Hiệu ứng tỏa sóng */
    }
    .timeline-step:hover .timeline-card {
        transform: translateY(-5px); /* Card nổi lên */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; /* Bóng đổ sâu hơn */
        border-color: transparent;
    }

    /* 4. SỬA LỖI LIST (Dấu chấm & Checkmark) */
    .custom-check-list {
        list-style: none !important; /* Tắt dấu chấm mặc định */
        padding-left: 0 !important;
        margin-bottom: 0;
    }
    .custom-check-list li {
        position: relative;
        padding-left: 25px; /* Chừa chỗ cho dấu check */
        margin-bottom: 10px;
        color: #6c757d;
        line-height: 1.5;
    }
    /* Tạo dấu check bằng CSS (Chuẩn & Đẹp) */
    .custom-check-list li::before {
        content: '✓'; 
        position: absolute;
        left: 0;
        top: 0;
        color: #28a745; /* Màu xanh lá */
        font-weight: bold;
        font-size: 14px;
    }
    /* Dấu check đặc biệt cho phần Highlight (Bước 3) */
    .highlight-list li {
        color: #333; /* Chữ đậm hơn */
    }
    .highlight-list li::before {
        color: #dc3545; /* Check màu đỏ */
    }

    /* Style riêng cho Bước 3 (Highlight) */
    .timeline-step.highlight .timeline-icon {
        background-color: #dc3545;
        border-color: #dc3545;
        color: #fff;
        box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
    }
    .timeline-step.highlight:hover .timeline-icon {
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0.3);
    }