 /* Tạo background hình ảnh cho form-check */
        .form-check.image-bg {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 10px;
            padding: 15px;
            margin: 10px 0;
            transition: all 0.3s ease;
            
            min-height: 80px;
            display: flex;
            align-items: center;
        }

        /* Overlay tối để text dễ đọc */
        .form-check.image-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          
            border-radius: 8px;
            z-index: 1;
        }

        /* Đưa nội dung lên trên overlay */
        .form-check.image-bg > * {
            position: relative;
            z-index: 2;
        }

        /* Hiệu ứng hover */
        .form-check.image-bg:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Hiệu ứng khi checked */
        .form-check.image-bg:has(input:checked),
        .form-check.image-bg.checked {
            border-color: #4CAF50;
            box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
        }

        .form-check.image-bg:has(input:checked)::before,
        .form-check.image-bg.checked::before {
            background: rgba(76, 175, 80, 0.7);
        }

        /* Style cho checkbox và label */
        .form-check-input {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .form-check-label {
            font-size: 16px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .gif-checkbox{
            display: none;
        }